Help Please - Need someone familiar with PHP, PayPal and ShopperPress

by jwardz
2 replies
I am using the ShopperPress theme for my private label rights site. The ShopperPress customer service could not help. I need the link on the PayPal payment complete page to say "Click Here to Download" not the default which is my PayPal company name. I know the PayPal code that needs to go in there, it is just that I don't know where it goes. This theme comes with it's own button and link that can be used with many gateways. I have spent hours combing through code and can't seem to find where it goes. I am thinking maybe on the callback page but the surrounding code doesn't seem to match the surrounding code of paypal buttons I have on other sites. I will be eternally grateful if someone can answer this or fix this for me. I have put so much time into this site I really don't want to start it all over again.
Joan
#familiar #paypal #php #shopperpress
  • Profile picture of the author Bruce Hearder
    Not having used ShopperPress before, I'm only answering this because I've done a lot of work with the PayPal side of things..

    Find out where it makes its call to PayPal.

    It made be doing 1 of 2 things.
    1. It could be creating an form which calls PP, usually starting with a line that says something like :
    PHP Code:
    <form action="http://www.paypal.com/cgi-bin/webscr" method="post"
    , or
    2. It could be constructing a link to PP with all the variables after the paypal.com url

    PHP Code:
    http://www.paypal.com/cgi-bin/webscr?cmd=_xclick........ 
    Which ever one it is, you need to add a variable called

    cbt

    This set the text that usually says "Return to Merchant"

    So if using the form option, add the following line
    PHP Code:
    <input type="hidden" name="cbt" value="Click here to download" 
    or if using the url options, add this to the end of the url that is constructed

    PHP Code:
    &cbt=Click%20here%20to%20download 
    NOTE: %20 is the space symbol when url-encoded..

    I hope this helps you out..

    Bruce
    {{ DiscussionBoard.errors[3546415].message }}
  • Profile picture of the author MattStrange
    Hey,

    Are you using ShopperPress to handle digital downloads? A plugin i have been dying to try out is s2member, looks pretty neat for small amounts of products.
    {{ DiscussionBoard.errors[4157787].message }}

Trending Topics