J!Extensions Store™
Forum
Welcome, Guest
Please Login to access forum.
Re:Changing Paypal default image (1 viewing) 
Go to bottom
TOPIC: Re:Changing Paypal default image
#1786
René Morissette
Fresh Boarder
Posts: 2
User Offline
Changing Paypal default image Karma: 0  
Hi,

I would like to change the Paypal image for a simple CSS button. In the file instantpaypal.php, I changed this line code:

Code:

<input type="image" name="submit" style="border: 0;" src="' . $btnimgview . '" alt="PayPal - The safer, easier way to pay online" />
for
Code:

<input type="button" name="submit" value="Buy now" />
But the link to Payl seems broken, no redirection to paypal cart when clicking on it. Everything works fine with the default instantpaypal.php file (free version). What could be the issue?
 
Logged Logged  
  The administrator has disabled public write access.
#1787
John Dagelmore
Admin
Posts: 3716
User Online Now
Re:Changing Paypal default image Karma: 79  
Hello René,

you need to try this:

<input type="submit" name="submit" value="Buy now" />

John
 
Logged Logged  
  The administrator has disabled public write access.
#1788
René Morissette
Fresh Boarder
Posts: 2
User Offline
Re:Changing Paypal default image Karma: 0  
Hi,

In the mean time, I tried this successfully:

Code:

$btnimg = '<button type="submit" name="submit" value="Buy now">Buy now</button>';
And I just left the variable $btnimg at the good place in the form. Thank you!
 
Logged Logged  
  The administrator has disabled public write access.
Go to top