Jump to content

[SOLVED] Disable link in large paypal-visa-mastercard logo - v.1541


Recommended Posts

Hi,

The link in large paypal-visa-mastercard logo takes you to "domain/modules/paypal/about.php"

and the image is in modules/paypal/img/logos/vertical_solution_PP.gif but I cant seem to find either the image or the page. Also I read that i need to edit "payment.tpl" and I dont find this file either

The code from firebug is:

<div id="paypal-column-block">
<p>
<a rel="nofollow" href="http://domain.com/modules/paypal/about.php">
<img style="max-width: 100%" title="Pagar con PayPal" alt="PayPal" src="/modules/paypal/img/logos/vertical_solution_PP.gif"></img>
</a>
</p>
</div>

and I just want to comment out the link and change the image title.....

Thanx

Edited by pienzu (see edit history)
Link to comment
Share on other sites

For what its worth... The original objective was to remove the link and I finally found the solution:

 

Need to edit .../ modules/paypal/views/templates/hook/ column.tpl

I commented out the link and removed the image title.

<div id="paypal-column-block">

                <p><!--<a href="{$base_dir_ssl}modules/paypal/about.php" rel="nofollow">--><img src="{$logo}" alt="PayPal" title="{l s='' mod='paypal'}" style="max-width: 100%" /><!--</a>--></p>

</div>

httpdocs/ modules / paypal / views / templates / hook / column.tpl

<div id="paypal-column-block">

                <p><!--<a href="{$base_dir_ssl}modules/paypal/about.php" rel="nofollow">--><img src="{$logo}" alt="PayPal" title="{l s='' mod='paypal'}" style="max-width: 100%" /><!--</a>--></p>

</div>

:)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...