Pixelpost

Authentic Photoblog Flavour


Go Back   Pixelpost Forum > SUPPORT / INFORMATION > Pixelpost Help

Post Reply
 
Thread Tools
  #1  
Old 04-05-2006, 05:21 PM
jasondunsmore Offline
forum loafer
 
Join Date: Dec 2005
Posts: 8
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.)
Reply With Quote
  #2  
Old 04-05-2006, 05:26 PM
raminia's Avatar
raminia+ Offline
Team Pixelpost
 
Join Date: Jan 2005
Location: FL, US
Posts: 3,706
Send a message via Yahoo to raminia
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
Reply With Quote
  #3  
Old 04-05-2006, 06:03 PM
Joe[y]'s Avatar
Joe[y]+ Offline
Team Pixelpost
 
Join Date: Mar 2005
Location: UK
Posts: 3,101
Send a message via MSN to Joe[y]
good guide. something we've been asked about a few times before.
Reply With Quote
  #4  
Old 04-06-2006, 12:10 AM
blinking8s's Avatar
blinking8s+ Offline
über loafer
 
Join Date: Oct 2004
Location: Bowling Green, Ky
Posts: 3,428
Send a message via ICQ to blinking8s Send a message via AIM to blinking8s Send a message via MSN to blinking8s Send a message via Skype™ to blinking8s
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
Reply With Quote
  #5  
Old 04-06-2006, 08:01 AM
raminia's Avatar
raminia+ Offline
Team Pixelpost
 
Join Date: Jan 2005
Location: FL, US
Posts: 3,706
Send a message via Yahoo to raminia
please add your instruactions here
http://wiki.pixelpost.org/index.php?...st&action=edit
__________________
Photoblog: http://pblog.raminia.com Powered by Pixelpost 1.7
Reply With Quote
  #6  
Old 07-23-2007, 11:21 PM
JonD25 Offline
forum loafer
 
Join Date: Jul 2007
Posts: 2
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.
Reply With Quote
  #7  
Old 07-24-2007, 06:47 AM
Dennis's Avatar
Dennis+ Offline
Team Pixelpost
 
Join Date: Jul 2006
Posts: 2,394
Send a message via MSN to Dennis
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
Reply With Quote
  #8  
Old 03-22-2008, 11:31 PM
Fellow Eskimo Offline
pp veteran
 
Join Date: Feb 2005
Location: SC, USA for the next 6 months.
Posts: 78
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?
Reply With Quote
  #9  
Old 03-23-2008, 10:32 AM
Vernon.Trent's Avatar
Vernon.Trent Offline
pixelpost guru
 
Join Date: Apr 2006
Location: Germany
Posts: 341
Send a message via ICQ to Vernon.Trent
Quote:
Originally Posted by Fellow Eskimo View Post
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?

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>
body section image_template
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>
__________________
best regards
~~~~~~~~
photoblog: XoverIP
Reply With Quote
  #10  
Old 04-03-2008, 03:32 PM
bitus82 Offline
forum loafer
 
Join Date: Sep 2007
Posts: 11
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
Reply With Quote
Post Reply


Thread Tools




All times are GMT. The time now is 08:38 AM.

Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd. | Style Design: d3 designs