How do I get my PayPal “buy now” button to go to the correct page?
You are currently browsing comments. If you would like to return to the full story, you can read the full entry here: “How do I get my PayPal “buy now” button to go to the correct page?”.
5 Responses to “How do I get my PayPal “buy now” button to go to the correct page?”





The PayPal "Buy Now" button is always suppose to be coded for the PayPal site so it will allow your customers to buy the product the button is for. If you need to send them to another page for some reason to buy from THAT page, then you need just the basic image button link code:
Making an image a link:
<p><a href="URL path to external link" title="Mouseover Description"><img style="width: XXpx; height: YYpx; border: 0;" src="Path to image" alt="Text Description"></a></p>
You can change the "p" tags to div tags and style as needed to make a nice div container for image links.
Ron
Report this comment
Very easy <a href="put your link to buy the product here"><img src="the buy now img src goes here"></a>
MAKE SURE YOU KEEP THE QUOTES
Report this comment
If you could give us some screen shots of what you are getting and if you could help me with more details I can help you easily.
Report this comment
You can set it like this. So you wanna open up the link in a different page. That’s something with HTML. Try this code.
<a href="PayPal link" target="_parent"><img src="paypal logo"/></a>
You please note that you change the target according to your wish. You can use any of these. _blank or _parent or _self.
Don’t use _self because that will give you the same result. Try using _parent. I think this is gonna fix your problem. Hope this helped.
If you are using a button it is better to use Java Script for this purpose. When the user clicks over the button execute this Java Script code.
<script type="text/javascript">
document.getElementByTagName("input")
.onclick=window.open
("http://www.paypal.com/");
</script>
Contact me for details:
praveen.supergenius@gmail.com
Praveen Varghese
Report this comment
computer programming service,web site design,homework help
custome website design etc, at
http://tntcarernet.com/
Report this comment