D
ddcnga
Guest
My webhosting company offers SiteBuilder (Premium) for their business customers. Do you offer support or answer questions for those of us in this situation? My webhost's techinical people are trying to help but I don't think they totally understand my problem nor how to answer questions regarding SiteBuilder in this instance. I've read your documentation on SiteBuilder but it does answer these types of qestions either. Hope I am posting in the correct area--also, I am not a programmer so keep that in mind with regard to my question (don't laugh too hard at me) and your answers.
I have 2 issues/questions, following:
Question 1:
My first question is in relationship to the eShop module. I will be selling one of a kind items, using PayPal as a payment method.
In order to avoid "duplicate sales of the same item" I have to implement some items within my PayPal account which I will do, but I also must add code to the "Buy it Now" or "Pay with PayPal" buttons to eliminate the possibility of two different buyers paying for the same item (as your eShop inventory control does not prevent this either). I am assuming these buttons are built into the functionality of SiteBuilder. Since I am not ready to publish my site and before I do, I don't really know how SiteBuilder works with regard to PayPal buttons.
PayPal supplied the code I must implement within those buttons. I will paste it in as follows:
To only offer one of an item, you will need to add the 'invoice' variable to your button code. You will also need to block duplicate invoice numbers in the profile of your PayPal account. Steps for blocking are below:
Block accidental payments: You may prevent accidental payments by blocking duplicate invoice IDs
1. Login at https://www.paypal.com
2. Click the 'Profile' subtab
3. Under 'Selling Preferences' click 'Payment Receiving Preferences'
4. Choose 'Yes, block multiple payments per invoice ID' if you wish to utilize this feature while passing the "invoice" variable
5. Scroll to the bottom and click the 'Save' button
In the PayPal button HTML code for that item, you will need to insert the following line of code:
<input type="hidden" value="123abc" name="invoice">
The value should be a unique number. Basically, when the specific number that you input in the value has gone through the system, it prevents anyone else from purchasing the same item. The system will give them an error message that they need to contact the seller.
Example:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal">
<input type="hidden" value="_cart" name="cmd">
<input type="hidden" value="you@domain.com" name="business">
<input type="hidden" value="Your Item" name="item_name">
<input type="hidden" value="001" name="item_number">
<input type="hidden" value="$" name="amount">
<input type="hidden" value="123abc" name="invoice">
<input type="image" src="https://www.paypal.com/images/sc-but-03.gif" border="0" name="submit">
<input type="hidden" value="1" name="add">
</form>
Question #2
Will you be integrating Google Check Out with your shopping cart within Sitebuilder's eShop as you have several others?
I have 2 issues/questions, following:
Question 1:
My first question is in relationship to the eShop module. I will be selling one of a kind items, using PayPal as a payment method.
In order to avoid "duplicate sales of the same item" I have to implement some items within my PayPal account which I will do, but I also must add code to the "Buy it Now" or "Pay with PayPal" buttons to eliminate the possibility of two different buyers paying for the same item (as your eShop inventory control does not prevent this either). I am assuming these buttons are built into the functionality of SiteBuilder. Since I am not ready to publish my site and before I do, I don't really know how SiteBuilder works with regard to PayPal buttons.
PayPal supplied the code I must implement within those buttons. I will paste it in as follows:
To only offer one of an item, you will need to add the 'invoice' variable to your button code. You will also need to block duplicate invoice numbers in the profile of your PayPal account. Steps for blocking are below:
Block accidental payments: You may prevent accidental payments by blocking duplicate invoice IDs
1. Login at https://www.paypal.com
2. Click the 'Profile' subtab
3. Under 'Selling Preferences' click 'Payment Receiving Preferences'
4. Choose 'Yes, block multiple payments per invoice ID' if you wish to utilize this feature while passing the "invoice" variable
5. Scroll to the bottom and click the 'Save' button
In the PayPal button HTML code for that item, you will need to insert the following line of code:
<input type="hidden" value="123abc" name="invoice">
The value should be a unique number. Basically, when the specific number that you input in the value has gone through the system, it prevents anyone else from purchasing the same item. The system will give them an error message that they need to contact the seller.
Example:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal">
<input type="hidden" value="_cart" name="cmd">
<input type="hidden" value="you@domain.com" name="business">
<input type="hidden" value="Your Item" name="item_name">
<input type="hidden" value="001" name="item_number">
<input type="hidden" value="$" name="amount">
<input type="hidden" value="123abc" name="invoice">
<input type="image" src="https://www.paypal.com/images/sc-but-03.gif" border="0" name="submit">
<input type="hidden" value="1" name="add">
</form>
Question #2
Will you be integrating Google Check Out with your shopping cart within Sitebuilder's eShop as you have several others?