VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: TiagoCorreia on April 23, 2014, 13:00:28 PM

Title: Remove paypal image
Post by: TiagoCorreia on April 23, 2014, 13:00:28 PM
Joomla! 2.5.19
VM 2.5.0

Hi
Can someone tell me where is the file (and name) which have the paypal image? (image attached)
I want to remove it.

thanks

[attachment cleanup by admin]
Title: Re: Remove paypal image
Post by: jenkinhill on April 23, 2014, 20:55:00 PM
VM2.5.0 was just a test version. You should use VM2.6

That image is not within VM - suggest you use Firebug to identify what it is & where from. http://forum.virtuemart.net/index.php?topic=116620.0
Title: Re: Remove paypal image
Post by: Armanshah on May 27, 2014, 12:25:49 PM
The same problem -

Joomla 2.5.20

Virtuemart 2.0.26d

Firebug shows this result -
<a href="#">
<img id="paypalLogo" border="0" style="cursor:pointer;" alt="PayPal Checkout Available" src="https://www.paypal.com/en_GB/i/bnr/horizontal_solution_PP.gif">
</a>

Don't know what to do.
Title: Re: Remove paypal image
Post by: Armanshah on May 27, 2014, 12:30:11 PM
(http://s18.postimg.org/kehaekiwp/Untitled_1.jpg)
Title: Re: Remove paypal image
Post by: jenkinhill on May 27, 2014, 12:34:40 PM
Please do not double post!  See http://forum.virtuemart.net/index.php?topic=124072.msg423958#msg423958
Title: Re: Remove paypal image
Post by: GJC Web Design on May 27, 2014, 12:48:15 PM
new to me but if you enable payapl express this shows up in the product details template by  this code block

if (is_array($this->productDisplayPayments)) {
    foreach ($this->productDisplayPayments as $productDisplayPayment) {
echo $productDisplayPayment . '<br />';
    }
}


the actual img link is in   plugins/vmpayment/paypal/paypal/helpers/paypalexp.php  ~ line 905

$paypal_buttonurls = array('en_US' => 'https://www.paypal.com/en_US/i/logo/PayPal_mark_60x38.gif',
         'en_GB' => 'https://www.paypal.com/en_GB/i/bnr/horizontal_solution_PP.gif',

etc

as this just seems to provide an info link guess you can dump it

Title: Re: Remove paypal image
Post by: Armanshah on May 27, 2014, 13:31:00 PM
Thanks a lot!
Problem solved!!!

Though didn't know how to dump it without getting errors (will appreciate a hint), changed that image with another one.
Title: Re: Remove paypal image
Post by: GJC Web Design on May 27, 2014, 18:33:50 PM
just comment out that whole section

/*if (is_array($this->productDisplayPayments)) {
    foreach ($this->productDisplayPayments as $productDisplayPayment) {
echo $productDisplayPayment . '<br />';
    }*/
}


but have no idea if this is needed for functionality? (think not) Have never used Paypal Express - seems twice as complicated as normal PP for no gain