shopping-cart

How to correct a jQuery syntax error?

I'm trying to update a Total: (span.wrap p span) field at the bottom of a form using jQuery. I have a few checkboxes, each of which has an associated price contained within the title attribute like so: title="$2". I'd the Total: field to update dynamically when the user clicks a checkbox. Here is the script I have, but it's throwing a ...

What has this e-commerce store been made with?

Hi, I really like this e-commerce store - http://www.gonedigging.co.uk I have had a dig with firebug but cannot tell how it has been made, is it a bespoke job or an open source package? Who can help me? ...

Ubercart 2.0 - list of code changes to allow for Fractional Quantities?

I am working on an Ubercart 2.0 project for a client. It is for a fabric store. They want the ability for customers to add fractional quantities (or decimal quantity) like 1.75 m. Does anyone have a comprehensive list of code changes that will allow for this functionality? ...

Whats the best breakdown of order status types for shopping cart 'Order' TABLE ?

I've seen several different shopping cart schemas with different tables for order status type / shipping status type / payment status type. I want to get this right first time for my project and wondered what the best approach is, and hopefully someone with sample tables for me to use. The key thing, of course is that however many colu...

Best Open-Sourced .Net based E-Commerce store solution for selling Jewelry?

I'm currently designing a shopping cart based jewelry site. I've tried the latest version of dashcommerce but it's very buggy and I keep not being able to get it to work quite right. I've also seen Nopcommerce but haven't tried it out yet and I'd like a few other options before I decide on my next solution. I'd love a .net based e-com...

storing temp data for shoping cart

I am doing shopping cart for my website Storing purchase information in session Storing purchase information in table. Which is better solution? If I store it in table how and when will i delete the records in the table (i.e when not purchased by user but in table) ...

What is the best framework/cms and shopping cart plugin/module/etc. combination?

What is the best framework/cms shopping cart for a beginner php/python developer to implement? I'm potentially going to be developing a site with an online catalog of about one hundred items. Info about the items will change every year. They might add new items. They want to admin their own items and such. I'm afraid that if I use a ...

Good & Simple PHP Cart Recommendation?

Hey All. Can anybody share a open source Good & Simple PHP Cart? ...

SQL Compute the price of cart in one request

Hello, Typically, I have a really simple cart with some items in it, with a quantity. I wish to do something like this : SELECT SUM(price * quantity) as total FROM products WHERE product_id IN (1,2,3,4); But how can I bind the quantity with the product_id since quantity is not in the database ? Is there any other way to do this wit...

Magento Fatal Error: Call to member function getSku() on a non-object

I have come across a bizarre error in the Magento shop I'm developing and despite my inquiries online, it appears no one else has ever seen this exact error under the same circumstances. Lemme 'splain. The full text of the error message is this: Fatal error: Call to a member function getSku() on a non-object in /path/on/server/app/code...

Automatic Sales Tax Tables

A client needs the ability for their shopping cart to automatically retrieve and keep up to date sales tax tables for at least the US, and preferably all countries with which the US has tax treaties. Is this a reasonable requirement? Hosted solutions are fine. ...

disable repeated call using getmethod() in php when page is refreshed

Hi, I'm new to PHP and in order to learn the language and the concepts I'm working on a e-commerce website with a shopping cart, etc. In this site I have items, when an item is clicked, the id of the item is sent via the GET method to the shopping cart page. Using this id, I add the item to the shopping cart(table in db) and it works fin...

Cakephp Shopping Cart

Hi all, I was wondering which php based carts will be the easiest to integrate with cakephp. I've heard about bakesale but I have no info on it whether is up to par with magento, cubecart or other carts out there. It's been a while since they have updated info on bakesale (August 2008). So if anyone has any info how reliable and secur...

Which shopping cart module can you recommend?

I am looking for a customizable web shop / shopping cart platform (Could be open source or not). Does anyone have specific recommendations? ...

Modify (jQuery) JS to include code to track changes done on Checkbox and Dropdown list and update price

Hi all, I have a code in javascript and I am using jQuery Calculation plugin (can be downloaded from link text). The form that I have is kind of like shopping cart form i.e. the prices update according to the quantity entered. The form has text boxes which accepts numbers and this denotes the quantity. Once this quantity is entered/modif...

Magento - Buy X Get Y Free - Realistically, Buy one get one free BOGOF

I have successfully setup a shopping cart rule to allow a user to purchase 2 products and get the third free. I used the "Buy X Get Y Free" option and have inserted '1' into the Discount Amount field and inserted '2' into the Discount Qty Step. I have decided to even further entice my offer and allow the user to purchase only 1 product...

shopping cart ruby on rails

hi im using def add_to_cart @cart = find_cart product = Product.find(params[:id]) @cart.add_product(product) end from a book. this is to create a shopping cart. what I don't understand is, do I need a controller for my cart? because without it,its giving me an error ...

PHP - count my quantity item in session array

How to count the item-qty and current code :- $q = $_POST['item-qty']; $i = count($q); $k = 0; while ($k < $i) { $select = 'SELECT * FROM location'; $query = $db->rq($select); $price = $db->fetch($query); if ($_POST['item-qty'][$k] < 3) { $get = $price['normal_price']; $price = $get * $_POST['item-qty'][$k]; ...

How to calculate sales tax with this script?

I'm using a shopping cart script from a tutorial I came across a while ago, and I need to modify it to calculate sales tax for my state (Pennsylvania). I want it to extract the state, compare it to either Pennsylvania or PA incase someone writes the state shorthand and then multiply the subtotal (for the items.. before shipping is added...

Shopping Cart with multiple orders in ASP

I'm building an e-commerce website in ASP.Net/C# and I'm having some difficulties with my shopping cart... I want my costumers to be able to say "I want X boxes, and each box carries Y items". Let's say, for instance, my website sells flowers. A client logs in and then chooses X bouquets and then for each bouquet he adds flowers from t...