Forum Moderators: buckworks
I am setting up a Paypal Shopping Cart on my website to sell products.
I find the Paypal user interface incredibly hard to use.
I have set up some add to cart buttons and a view cart button and got them up and running on my website.
But when I want to go back in and make some changes I find it virtually impossible to find the buttons to be able to edit them.
The whole site seems geared to setting up a new site but nowhere (on their main pages) is there any mention of making changes or editing your buttons.
Why can't they make it plain and easy to use ?
Regards
Digby
Why can't they make it plain and easy to use ?
I don't use these often, but from what I recall, if you can generate one button, you can use it as a "prototype" for all your buttons. The below is an "example" as I don't have the button code handy.
Let's say you generate a button for "Product A" price "20.00",
<input type="hidden" name="amount" value="$20.00">
<input type="hidden" name="product-name" value="Product A">
You'd just change the values for those products for a new button,
<input type="hidden" name="amount" value="$25.00">
<input type="hidden" name="product-name" value="Product B">
Any of the other information - the seller ID/email/account name/return URL etc., remains the same. You just look for and change the product-specific information.
Hope that's helpful, don't dabble in off-site payPal as much as I used to.