| 1. | Cart empries itself when submitting form Posted by steve on 8/31/2005 6:19:19 AM I have a strange problem here. I have set up an online shop and all works well with the cart until I try to submit a page and redirect to my payment transfer page, when submitting I store the address details in a cookie and notice my cart clears itself.
I have set up a test site if you wish to look at it www.magellanplc.com/newmerch. Add itmes to the cart, continue to order screen, select United Kingdo as delivery country, no need to enter delivery details, ... |
| 2. | Re: Cart empries itself when submitting form Posted by steve on 9/1/2005 4:42:29 AM After further investigaton I found that setting too many cookies wipes out the cart.
Is this something you've come across before? |
| 3. | Defining New Fields Posted by steve on 3/2/2005 4:33:45 AM I am using Cart V3 and trying to Define new fields in the cart but they are not saving (I have checked the XML file). I have done this before without problems but have had to rebuild me PC since. I'm now on XP SP2, does this have any issues with Charon Cart or am I missing something obvious? |
| 4. | Re: Defining New Fields Posted by steve on 3/2/2005 5:58:52 PM Thanks for the reply Julian but I solved the problem by deinstalling and reinstalling the extension.
Cheers |
| 5. | PayPal Posted by steve on 9/24/2004 6:53:32 AM Jules,
This question is slightly off from Charon Cart but I'm after a bit of advice. I'm looking at setting up a PayPal account to both buy & sell over the internet though I am seeing a lot of unhappy people who have used Paypal and got a raw deal from the company.
Obviously you use PayPal, what are your experiences of this and what are you tips on protecting yourself.
Again alopgies for the 'off the wall' question but you've been ... |
| 6. | Re: PayPal Posted by steve on 9/24/2004 7:10:43 PM Thanks for your reply Jules, you can never be too careful..... |
| 7. | Re: Limiting Cart Entries to one entry Posted by steve on 9/10/2004 11:57:55 AM I added this to the addcarttolink page as I am using this option to add items to the cart. |
| 8. | Re: Limiting Cart Entries to one entry Posted by steve on 9/11/2004 3:51:22 AM When adding the 'Add To Cart From Link' option in your page there is a checkbox near the bottom of the dialog box that is titled "Auto-Increment Duplicate Items". Make sure this is checked. If you have done this, please post you code from the 'addto cartfrom link' page and I'll try to track down what the problem is. |
| 9. | Limiting Cart Entries to one entry Posted by steve on 8/19/2004 10:10:00 AM Is it possible to only allow one entry of each product into the Cart. That is to say, if someone tries to add a product that is already there the quantity is not incremented. (I am using the add to cart via link option)
|
| 10. | Re: Limiting Cart Entries to one entry Posted by steve on 8/19/2004 11:40:35 AM Thanks once again Julian......... |
| 11. | Update Cart Prices Posted by steve on 8/24/2004 5:33:02 AM How do I update the Cart Line Prices once they have been added to the cart.
The reason for this is to apply a discount to certain products (therefore cart lines) once an offer code has been filled in by the user.
This needs to happen while I'm building the cart on my order confirmation page. To clarify the steps are:
User adds product to cart
User goes to cart display page & enters offer code
User goes to checkout which ... |
| 12. | Re: Update Cart Prices Posted by steve on 8/24/2004 5:37:01 AM To add a little more information I wanted to add some code within the cart display along the lines of below, but this doesn't work.
<%
'
'Begin cart repeat region
'
For i=0 to objCart.NumberItems - 1
%>
<tr class="copy">
<td><%=objCart.GetCartValue("Name",i)%></td>
<td><%=objCart.GetCartValue("optionname",i)%></td>
... |
| 13. | Re: Update Cart Prices Posted by steve on 8/26/2004 2:48:16 AM Thanks Julian |
| 14. | Re: Update Cart Prices Posted by steve on 8/26/2004 2:53:44 AM Julian,
I've had look at the suggested page and cannot see the code that helps. Within this page you update the subtotal of the cart but I need to update the individual product price for each line of the cart....or am I missing something? |
| 15. | LoginKey Posted by steve on 8/9/2004 8:22:37 AM Just a quicj question. In your demo of the Cart, you use LoginKey within the ADMIN_TABLE. What's is this used for? |
| 16. | Multiple Carts Posted by steve on 8/7/2004 12:11:59 PM Is it possible to run two carts simultaneously on one site. The application I am designing will not work with only one cart and additional columns as the carts will need to be completed independant of the other. Any suggestions on how I would go about it would be very helpful |
| 17. | Re: Multiple Carts Posted by steve on 8/7/2004 3:27:57 PM Thanks Jules, I'll give it a go |
| 18. | Re: Additional Cart total entry - Surcharge Posted by steve on 8/5/2004 11:33:53 AM Thanks fo rthe reply Jules, that's how I'm doing it now. I just wondered whether you would add this variable to the code in a future release? |
| 19. | Additional Cart total entry - Surcharge Posted by steve on 8/5/2004 6:10:30 AM I need to have an additional entry within the totals area of the cart called surcharge. This is the surcharge placed on the subtotal of the order at a fixed percentage rate.
Currently I'm holding within a session variable but would like to make it part of the cart set.
Is it possible to be put on the wish list for inclusion? |
| 20. | Save values back to obj.xxxx in cart Posted by steve on 8/5/2004 8:45:23 AM I am trying to replace values in the obj.xxx cart variables for discount, shipping, tax etc but they are not saving. The next page I display does not show the new values. I have also noticed that the objCart.GrandTotal variable is showing the subtotal value.
The code I am using is:
'Set discount from voucher table logic
if Session("SpecialOfferDiscount") <> "" then
discountvalue = ... |
| 21. | Update Cart Objects Posted by Steve on 6/17/2004 10:57:15 AM I am trying to update the shipping object & SalesTax object in the cart (V3). I have the following code which is run when the a country is selected from a dropdown menu and the form is submitted to itself
--code start--
objCart.Shipping = FormatNumber((rsShipCosts.Fields.Item("ShipPrice").Value), 2, -2, -2, -2)
prevat = objCart.SubTotal + objCart.Shipping
IF (rsShipCosts.Fields.Item("VATCharge").Value) = True Then
|
| 22. | Re: Update Cart Objects Posted by Steve on 6/18/2004 3:15:11 AM Julian, Thanks for the suggestion and I'll probably do that, but can you please confirm that performing the code in my previous post should work. |
| 23. | Update Cart Clearing Basket Posted by Steve on 6/10/2004 10:06:40 AM I am using Charon Cart 3 and can add items to the cart and kill the cart without any problems. When I come to use the update cart function it clears out the entire contects of the cart......help!!
I have used this function before without this problem occuring......any thoughts? |
| 24. | Re: Update Cart Clearing Basket Posted by Steve on 6/11/2004 4:44:40 AM Found the problem....it is required that you change the submit form method to POST manually |
| 25. | Add to Cart using javascript Posted by steve on 4/21/2004 6:35:24 AM Is it possible to add items to the cart using javascript? I would like to avoid submitting the page each time a user adds an item as this would speed up the site tremendously
|