|
#1
|
|||
|
|||
|
Howto: Paypal shopping cart with Pixelpost
http://phototechnic.blogspot.com/200...pixelpost.html
Here's a pretty simple example of how to use Paypal with Pixelpost. You can see an example implementation at: http://www.jasondunsmore.com/blog/ (I would've posted this in the "Pixelpost 101" forum, but I don't have permissions.) |
|
#2
|
||||
|
||||
|
you don't have the permission to post to pixelpost 101 forum? ummm strange.... contact blinking8s
btw, you may add the instructions to Pixelpost wiki . www.raminia.com/ppwiki
__________________
Photoblog: http://pblog.raminia.com Powered by Pixelpost 1.7 |
|
#3
|
||||
|
||||
|
good guide. something we've been asked about a few times before.
__________________
Affordable Website Design in North Wales |
|
#4
|
||||
|
||||
|
moved to 101, its locked because people werre posting too many new quetions way back when, so moderators can move posts there when howto's are posted ect...
very cool writeup, thanks a lot
__________________
i should say more clever stuff |
|
#5
|
||||
|
||||
|
please add your instruactions here
http://wiki.pixelpost.org/index.php?...st&action=edit
__________________
Photoblog: http://pblog.raminia.com Powered by Pixelpost 1.7 |
|
#6
|
|||
|
|||
|
Are these instructions posted anywhere else? Or does anyone else have their own instructions? This is something I'm looking at doing, and having a nice tutorial would be great. The original link won't let me read, and even the implementation link is dead.
|
|
#7
|
||||
|
||||
|
If I remember correctly there were two addons:
http://www.pixelpost.org/forum/showt...ghlight=paypal http://www.pixelpost.org/forum/showt...ghlight=paypal
__________________
My photoblog, powered by PixelPost 1.9 dev SVN | My Pixelpost Addons | My Cool Photoblog profile
|
|
#8
|
|||
|
|||
|
I can see the pixelpost links, but I cannot view this one:
http://phototechnic.blogspot.com/200...pixelpost.html It says I do not have the right permissions...I was not invited to view it? |
|
#9
|
||||
|
||||
|
Quote:
shopping cart + paypal PP ------------------------------ head section image_template HTML Code:
<script language="javascript" type="text/javascript"> <!-- BEGIN function flip(rid) { current=(document.getElementById(rid).style.display == 'none') ? 'block' : 'none'; document.getElementById(rid).style.display = current; } function ReadSize (form1) { if (form1.selectSize.value == 1) { form1.item_name.value = "<IMAGE_TITLE>, 5x8"; form1.amount.value = 20.00; } else if (form1.selectSize.value == 2) { form1.item_name.value = "<IMAGE_TITLE>, 8.5x11"; form1.amount.value = 35.00; } else if (form1.selectSize.value == 3) { form1.item_name.value = "<IMAGE_TITLE>, 11x14"; form1.amount.value = 50.00; } else { form1.item_name.value = "<IMAGE_TITLE>, 13x19"; form1.amount.value = 70.00; } } // End --> </script> HTML Code:
<div id="cart"> <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="add" value="1"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="business" value="YOUR EMAIL HERE"> <input type="hidden" name="currency_code" value="CURRENCY"> <input type="hidden" name="item_name" value=""> <input type="hidden" name="amount" value=""> <select name="selectSize" onchange="ReadSize (this.form);"> <option value="Select a Size">Select a Size:</option> <option value="1">5x8” ($20)</option> <option value="2">8.5x11” ($35)</option> <option value="3">11x14” ($50)</option> <option value="4">13x19” ($70)</option> </select> <input type="submit" value="Add to Cart"> </form> <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="business" value="jasondunsmore@gmail.com"> <input type="hidden" name="display" value="1"> <input type="submit" value="View Cart"> </form> </div> |
|
#10
|
|||
|
|||
|
I tried exactly what you typed in here, but it doesn't work. I get everything working fine, but when it redirects me to Paypal, I get the same error (some required information... etc). I have the paypal addon installed... am I missing something?
Thanks, Titus |
| Post Reply |
| Thread Tools | |
|
|