Results 1 to 6 of 6

Thread: Can I link my combo box to Paypal?
      
   

  1. #1
    Jessica320 is offline Private
    Join Date
    May 2010
    Posts
    3

    Default Can I link my combo box to Paypal?

    I have put combo boxes with scents available for my products and have set up the paypal cart. The scent chosen in the combo dropdown is not going into the paypal cart. Is there anyway to get them to work together? I know paypal has something similar to use on their site but it will only handle 10 choices and I have many more.
    Thank you for your help in advance.

  2. #2
    Marincky's Avatar
    Marincky is offline General
    Join Date
    Apr 2006
    Location
    Warwickshire, UK
    Posts
    4,564

    Default Re: Can I link my combo box to Paypal?

    There is a way yes.. however, it's far beyond my skills (especially when it's 01.22am where I am) to try and explain this to you. But I'll mention your thread to someone I know who will be able to answer this for you tomorrow if they or anyone else doesn't get here first. I have done this myself but years ago so would have to remind myself first before going through it with you and I'm not 100% sure I would advise you correctly. But hang fire..
    Don't aim for success if you want it; just do what you love and believe in, and it will come naturally.

  3. #3
    Jessica320 is offline Private
    Join Date
    May 2010
    Posts
    3

    Default Re: Can I link my combo box to Paypal?

    Thank you! I will check back tomorrow~
    Jess

  4. #4
    Marincky's Avatar
    Marincky is offline General
    Join Date
    Apr 2006
    Location
    Warwickshire, UK
    Posts
    4,564

    Default Re: Can I link my combo box to Paypal?

    I have emailed the guy in question giving him your post thread so I'm sure he'll be in to answer you soon.
    Don't aim for success if you want it; just do what you love and believe in, and it will come naturally.

  5. #5
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,115

    Default Re: Can I link my combo box to Paypal?

    I'm afraid that due to a bug in BV (the dropdown ID is assumed as option name, instead of the dropdown name itself) you can't do it in BV.

    Create the button in PayPal, with the max of 10 choices alloed. The code that PayPal will generate will be something like this:


    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="L37HGD3BHM8">
    <table>
    <tr><td><input type="hidden" name="on0" value="Scent">Scent</td></tr><tr><td><select name="os0">
    <option value="Option 1">Option 1 </option>
    <option value="Option 2">Option 2 </option>
    <option value="Option 3">Option 3 </option>
    <option value="Option 4">Option 4 </option>
    <option value="Option 5">Option 5 </option>
    <option value="Option 6">Option 6 </option>
    <option value="Option 7">Option 7 </option>
    <option value="Option 8">Option 8 </option>
    <option value="Option 9">Optione 9 </option>
    <option value="Option 10">Option 10 </option>
    </select> </td></tr>
    </table>
    <input type="image" src="https://www.paypal.com/it_IT/IT/i/bt...uynowCC_**.gif" border="0" name="submit" alt="PayPal - Fast - Simple - Secure">
    <img alt="" border="0" src="https://www.paypal.com/it_IT/i/scr/pixel.gif" width="1" height="1">
    </form>


    Paste the code in a HTML box in BV and edit the code as follows:

    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="L37HGD3BHM8">
    <table>
    <tr><td><input type="hidden" name="on0" value="Scent">Scent</td></tr><tr><td><select name="os0">
    <option value="Option 1">Option 1 </option>
    <option value="Option 2">Option 2 </option>
    <option value="Option 3">Option 3 </option>
    <option value="Option 4">Option 4 </option>
    <option value="Option 5">Option 5 </option>
    <option value="Option 6">Option 6 </option>
    <option value="Option 7">Option 7 </option>
    <option value="Option 8">Option 8 </option>
    <option value="Option 9">Optione 9 </option>
    <option value="Option 10">Option 10 </option>
    <option value="Option 11">Option 11 </option>
    <option value="Option 12">Option 12 </option>
    <option value="Option 13">Option 13 </option>
    <option value="Option 14">Option 14 </option>
    </select> </td></tr>
    </table>
    <input type="image" src="https://www.paypal.com/it_IT/IT/i/btn/btn_buynowCC_**.gif" border="0" name="submit" alt="PayPal - Fast - Simple - Secure">
    <img alt="" border="0" src="https://www.paypal.com/it_IT/i/scr/pixel.gif" width="1" height="1">
    </form>

    As you see, you can add as many options as you like editing the code manually.

    Of course, Option1 ..... Option11 are the scents that you want to offer.
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  6. #6
    Jessica320 is offline Private
    Join Date
    May 2010
    Posts
    3

    Default Re: Can I link my combo box to Paypal?

    Wow, thanks so much for the help! I am going to give this a try today. I might be back with more questions, but sounds pretty easy.

    Thanks again,
    Jess

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49