shopping-cart

Ubercart add to cart trigger?

I want to keep track of all items added to uber cart. I.e. Whenever someone clicks ADD TO CART, I want to: create a database entry of the time and item added. This way I can see which items are most clicked on. The logic to add it to a db etc is easy to do. What I need to know is, how do I plug into the "add to cart" part. I.e. How do ...

Using Magento with a simple one-product site

What's the best way to integrate Magento with a simple HTML-based single product site? I envision installing Magento, and then the existing site just "hooks" into Magento versus using the entire Magento framwork, etc. I don't want to use Magento as a "CMS" I just want to use it to handle the order processing. Any tips or suggestions o...

How to integrate shopping cart system for flash application

Hello. I've built a simple flash application that takes a user's photo/image, offers various effects and filters to play with. In the end, the application can write-out the resulting image to a PDF print file (to be purchased and sent to a printer). Currently I'm using PHP to template the web pages, with the Flash app embedded in the ...

Usung button_to to send product_id back to the controller along with additonal info entered through a form on the same page as the button

I am extending the shopping cart model (from Agile Web Development with Rails) that lets a user 'add to cart' a product_id through the session. The id is only stored in the database (as a line_item) after a user clicks 'checkout'. Id like to attach other unique data related to that line_item, like color and special_instructions, through...

Can anyone recommend a payment processing script or service that is as (nearly?) as convenient and comprehensive as eJunkie but more flexible?

I have been going through all of the different PayPal integration options and trying to decide which will be the best one for this particular application. I realized that I really want to give users a few options for payment. For example, it might be more convenient to enter their credit card information rather than being sent over to ...

Whats a good E-Commerce Cart

Whats a good Shopping Cart possibly free i know there oscommerce, xcart etc but whats a good one? and fairly easily to implement maintain and edit possibly merge with in my sites current theme. If you mean technology as in web language which I hope you do than it's php. other then that i have no clue what you mean apache/mysql? amd? lol...

Best CMS for shop cart .

Firstly I try to create a shopcart with CodIgniter but I need to build a lot of moodle. Because the time has come, I think I'll find another CMS to implement this shop cart and I'll take time build with CodeIgniter later ( I love it ). Someone suggest me one ? Thanks a lot :) ...

How to automate disbursement of electronic payments from one bank account to 20,000 other bank accounts?

I am helping a startup business to launch and I will be building or finding a shopping cart software for its website. There will only be one product for sale, but anytime someone buys a product, I have to use customer information like their zipcode and which distributor they bought from to calculate commissions that will go to the differ...

.Contains on a list of custom class objects

Hello, I'm trying to use the .Contains function on a list of custom objects This is the list: List<CartProduct> CartProducts = new List<CartProduct>(); And the CartProduct: public class CartProduct { public Int32 ID; public String Name; public Int32 Number; public Decimal CurrentPrice; /// <summary> /// ...

can you simplify and generalize this useful jQuery function, please?

Hi, I'm doing an eshop with goods displayed as "tiles" in grid as usual. I just want to use various sizes of tiles and make sure (via jQuery) there are no free spaces. In basic situation, I have a 960px wrapper and want to use 240x180px (class .grid_4) tiles and 480x360px (class .grid_8) tiles. See image (imagine no margins/paddings th...

How to find the type of shopping cart used to implement in website

Is there way to identify which shopping cart open source technology has been used to implemente for any given website? For example: if you are looking at shopping.yahoo.com,shopping.rediff.com can we tell which Shopping cart tool they have used for Example : zen cart, os commerce , magento etc.... I am trying to idenify the website wh...

OpenCart vs. PrestaShop vs. OXID eShop

Hi all, I'm currently looking for a new e-commerce solution for a small to medium-sized webshops. By now I've narrowed it down to 3 competitors: OpenCart (http://www.opencart.com/), PrestaShop (http://www.prestashop.com/) and OXID eShop Community edition (http://www.oxid-esales.com/). I'm interested in pros and cons of the different sol...

Passing variables to shopping cart with Javascript

This question is an extension of this one: http://stackoverflow.com/questions/2359238/calculate-order-price-by-date-selection-value I'm trying to make a conference registration page based off the previous page, which passes the variables(name, email, price) to my organization's outdated shopping cart using javascript. I'm also using Se...

send session_id from http to https domain

I'm developing a shopping cart and when the user goes ahead for purchasing the items the script redirects him from Http to Https. The problem is that i need to retrieve the session variables set out on Http domain. So here's the thing: Is it reliable to send from one domain to another the session_id to get the session variables consideri...

Django shopping app?

We are developing a django app for several restaurants, it's like a shopping chart. We need the restaurant admins to be able to create their own restaurants, menus and products, and clients must be able to browse the menus and choose the products and confirm their delivery, like a shopping app, which is the best approach? Are there djan...

How to retrieve data from access database for each item in a shopping cart and display in gridview in asp.net

Hi, I need to set up a CD shopping cart from scratch and it needs to use an access database. So far, I'm storing the AlbumID in the session, then use it to create a DataTable which is then bound to the GridView. But I want to retrieve album info from an access database and display that in the GridView rather than the values I've create...

ASP.NET small online store, shopping cart

Currently I have a site that is using Google Checkout's mini cart system and I like it a lot, however, I'm wondering if there is a more professional way of doing it, while still keeping it simple. I've looked into an authorize.net account, but I need to find a way to handle the mini shopping cart before heading off to process the order....

Specific Shopping Cart Recommendations

I'm trying to suggest a solution for a friend who owns an existing web shop. The current solution isn't cutting it. The new solution needs to have a few things that look like they're enterprise-only if I go with Magento, and $12k a year for a store with maybe $20k in stock just doesn't work. The site should have items, which have on...

Why represent shopping carts and order invoices differently in a domain model?

I've built some shopping cart systems in the past, but I always designed them such that the final order invoice is just a shopping cart that has been marked as "purchased". All the logic for adding/removing/changing items in a cart is also the logic for the order. All data is stored in the same tables in the database. But it seems this i...

Google Checkout View Cart Button

I'm trying to add a view cart button to my website that is using google checkout, does anyone know a trick to do this? I think I may need to use a special div with a class to create a button that will display the cart when clicked, I'm lost. Thank you ...