T O P I C R E V I E W |
rmmarsh |
Posted - 09 Feb 2008 : 15:21:16 Hi Davide... when you have more than one shopping cart button on a page, you have to have some way of notifying PayPal that you want to continue shopping. So, in the button generated code, make the following changes. This will cause a 'continue shopping' button to be displayed on the PayPal site... ------------------------------------------- change this line <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"> to this <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_self">
add this line <input type="hidden" name="shopping_url" value="urlofpage"> --------------------------------------------- |
12 L A T E S T R E P L I E S (Newest First) |
richinri |
Posted - 17 Feb 2008 : 09:50:06 Nice, thanks! |
s.dav |
Posted - 16 Feb 2008 : 15:34:45 Just release the version which includes the changes you requested |
s.dav |
Posted - 13 Feb 2008 : 09:14:35 I'll make some tests ;-) |
rmmarsh |
Posted - 12 Feb 2008 : 14:40:19 Haven't tried it without 'target="_self"... I got this information from Frank at PayPal... he said that was what I needed to have it return to me correctly. |
jtarin |
Posted - 12 Feb 2008 : 13:12:55 Without it PayPal opens in a secure new window. I don't use target="_self" on my site. it's a personal preference, but not necessary for correct operation. |
s.dav |
Posted - 12 Feb 2008 : 11:56:51 Is the target="_self" important in this line
<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_self">
?
|
s.dav |
Posted - 12 Feb 2008 : 09:12:20 Sure yes ;-) |
rmmarsh |
Posted - 11 Feb 2008 : 20:49:07 Can you please post here when you have those changes I mentioned earlier included in a build? Also, it's probably obvious, but on the last line, you need to change 'urlofpage' to the name of the chosen page.
R |
s.dav |
Posted - 11 Feb 2008 : 08:55:24 @rmmarsh
Simply click on the "Check for updates" on the program and search for a revision major than 4.0.194 ;-)
|
jtarin |
Posted - 11 Feb 2008 : 01:40:24 Most likely in an updated version soon to be available.Keep your eye on the download page for a version increment change. |
rmmarsh |
Posted - 10 Feb 2008 : 15:10:41 Great! Now, how do I get the updated code from you? (I have already gone into the HTML and made the changes, but it would be nice to have it done automatically when I have to change the page).
R |
s.dav |
Posted - 10 Feb 2008 : 14:11:55 Fantastic! Many many thanks! I'll apply the change tomorrow! |