Tagged Questions
The cart tag has no wiki summary.
3
votes
1answer
494 views
How to load a magento view (.phtml) file from a controller
Im trying to load a rendered version of the cart sidebar, which i intend to load via ajax... I've been searching around alot and it seems like the best approach is to create a custom module which will ...
3
votes
3answers
269 views
How can I customize my Paypal check out page further?
I am building a website for a client that wants to sell photos on his website. It's set with Paypal, and I made the buttons link to Paypal. This all works fine except, the client wants his photos to ...
3
votes
3answers
439 views
Best php shopping cart [closed]
Been out of the game (not built a shop in years) and looked at the two old front runners (oscommerce and zcart) and neither seem to have have improved much over the years. What I am looking for is a ...
3
votes
1answer
2k views
Accessing shipping cost in Magento's cart and/or checkout
Please note, this question is regarding the shipping cost, not price. There is an important difference, i.e. what $$ charge the shipping method incurs for the store owner, as opposed to what is $$ ...
3
votes
1answer
707 views
Magento Cart: Check for items empties cart
I am new to Magento, but I thought I had a grasp on it until today. Here is my problem.
I am writing a new Observer to add a coupon to the cart on page load. The coupon code is passed in the URL and ...
2
votes
1answer
101 views
Magento, getSubtotal and getGrandTotal always return zero
I have a weird problem. I have developed a module which adds a line to totals according to some value in database. But in my module model (which is inherited from ...
2
votes
4answers
52 views
jquery confusing code
I am learning Jquery and Javascript from web examples. I have a good working knowledge but some code still trips me up. The following code is used for a shopping cart to hide the check out button and ...
2
votes
1answer
554 views
magento - custom option price in cart
I have products that have custom options and the custom options have different pricing. Currently magento combines the product price with the custom option price and shows it already calculated as ...
2
votes
1answer
56 views
stock and cart mixed query
i have stock and cart, i want to make a query that shows each user a list of stock-cart
for example if i have 5 apples in stock and he have 3 apples in his cart, then when he search for more apples ...
2
votes
1answer
76 views
Two way session for shipping cart
This is what I'm trying to accomplish, I'm just wondering what is the best method to achieve it.
I have a standard e-commerce site. When the customer browse the site his cart content are stored in a ...
2
votes
1answer
102 views
How to enable/create shared shopping cart between two e-commerce sites?
I have two e-commerce sites. One was built using ASP .net technology and the other one was built using open source codes.
Now I would like to allow shared shopping cart between the two sites. The ...
2
votes
2answers
611 views
Add a cart link (with number of items) in the sidebar in Magento
I'm faced with a unique problem from a unique customer. In Magento's account screen, there are typically two places where "My Cart" makes an appearance; the top bar, and in the sidebar as a block. ...
2
votes
3answers
432 views
how can i delete test order from magento
hi i have made a website in magento. now it is live . now i want to delete the all test order .i know there are some table in all these order are stored. but i dont know the name of those table. if ...
2
votes
2answers
2k views
Magento: add product twice to cart, with different attributes!
I have been working with this for a whole day but i cannot find any solution:
I have a product (lenses), which has identical attributes, but user can choose one attribute set for one eye and another ...
2
votes
1answer
1k views
Building a simple cart using object oriented PHP
I've built basic shopping carts with PHP before but in an attempt to get my feet wet with OOP, I'd like to try using that method.
I come from a design background but do understand some basics of OOP ...
2
votes
1answer
325 views
Drupal: module to implement credit system
I wonder, which Drupal modules I can use to implement the following system:
User has X amount of credits on his account (I think CCK can store this value). He can create specific Nodes (requests for ...
2
votes
5answers
5k views
Cakephp Shopping Cart
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 ...
1
vote
4answers
64 views
How to automatically know the name of a field of an array in php?
I just have a little question, I can't find any answer since I don't know exactly how to formulate it on Google.
So I have this array comming from a querry:
Array
(
[0] => Array
(
...
1
vote
1answer
66 views
Magento - How to get cart items total in header.phtml
I am using Magento eCommerce and I have modified my header.phtml via the Blank template. Code, this is my code but it shows blank.
<?php $cartQty = $this->getSummaryCount() ?>
<?php ...
1
vote
1answer
64 views
Open cart … Different css per category
I am trying to load completely different css file per category in opencart shopping cart. I have tried to use switch statement in header.tpl but it did not help me.
Basically I have only four ...
1
vote
1answer
37 views
Exchange information between my app and a website. SHOPPING CART APP with limited stock products
I am working on an app for a clothing shop, as you may guess it displays pictures of products, their price, adds them to check out (pay through PayPal ) and more ... but I run into a problem when it ...
1
vote
2answers
54 views
Unable to fix totals function in shopping cart
I'm new to coding and working my way through this tutorial on jquery, using a shopping cart example:
http://jumpstartlab.com/resources/jquery-jumpstart/jscart---a-jquery-shopping-cart/
I'm running ...
1
vote
1answer
36 views
Magento - How to check when a item has been added to cart
I would like to know if anyone can answer the following question.
How can you check when an item has been added to the cart?
I need to do some highlighting when a item has been added, but i can't ...
1
vote
2answers
158 views
Magento - Internet Explorer Cart Issues
I'm on Magento 1.4.1 and get regular calls (2-3 per week) from customers that they are unable to add products to their cart. The symptoms are the same for customers: All use IE (7 or 8, most ...
1
vote
2answers
65 views
Pass tick boxes through basket process
I'm working on a custom basket - http://www.dtrmedical.com/test-site/index.php?id=3&productid=130. I want to pass the checkbox options chosen from one form to the other.
I have two forms that ...
1
vote
3answers
378 views
Magento recalculate cart total in observer
I have an observer that removes items from the cart if they are out of stock (i.e. customer returns to their cart ofter x time, and an item in the cart has gone out of stock), and shows a message to ...
1
vote
1answer
75 views
Shopping cart problems
I have this shopping cart
function modifyCart($action, $id){
$kori = cart();
$exp = explode("|", $kori);
for($i=0;$i<count($exp);$i++){
$pilk = explode("-", $exp[$i]);
if($id == $pilk[0]){
...
1
vote
1answer
84 views
PAYPAL currency is not working
I'm using PHP to payment using Paypal
It's a shoping cart system.
Everything went fine for 6 months. Now we want to implement multiple currency facility in it. So I implemented one paypal variable ...
1
vote
1answer
86 views
Displaying category list on sidebar of web page
PHP newbie here. I'm currently developing a shopping cart web site using PHP and my question is how do I make a dynamic category tree listing on my side bar? Because I have no idea on how to implement ...
1
vote
1answer
282 views
How do I add checkboxes to Magento's “Estimate Shipping and Tax” in the cart?
So, on the cart page, my customers can view the "Estimate Shipping and Tax" area. I don't want to remove it, but I need to know a little additional information from them to properly process the ...
1
vote
2answers
68 views
How do i add information to a session of shopping cart data into a database?
i have a shopping cart and i wanted to store the shopping cart information to my database but i have no idea how to do it since i have no way to detect how many items my customer would add to their ...
1
vote
3answers
101 views
counting help, to count the number of array in an array
I have a shopping cart which I got from Matthew Pennell(shopping cart tutorial), in his shopping cart script I would like to implement paypal. However I encounter a problem which I cant really solve. ...
1
vote
4answers
240 views
Playing MP3 songs without disclosing the path of the file
I am developing a shopping cart in PHP where i will sell the Songs in MP3 format. With product display i would like to provide the visitors/users to listen the Song 1 time only. So if i use players ...
1
vote
2answers
560 views
Problem adding free product to cart in Magento
I have written a buy one get one free module for Magento which works perfectly in Magento 1.3.x.
It extends "Mage_Checkout_CartController" to add the free (simple) product to the cart when the ...
1
vote
0answers
156 views
jQuery Simple Cart is hidden
My SimpleCart works but when a user refreshes the page, the cart disappears until a user adds another item to it.
Here is my HTML:
<div class="simpleCart_items"></div>
Here is my css: ...
1
vote
1answer
304 views
make a link to outside URL amd remove quick access in magento cart
just got handed a magento site to update. No experience with the cart, so I hope these questions aren't too simplistic. Did search around a bit and haven't been able to find straightforward answers ...
1
vote
6answers
647 views
Instant UPS tracking Number
I have a client that has a shopping cart. She wants to implement a module that allows the end user to receive a tracking number immediately after purchase.
I am not too sure if this is possible. My ...
1
vote
1answer
659 views
Add multiple products to cart - Magento
I try to use that http://sourceforge.net/projects/massaddtocart/
It is exactly what I want, but it shows this error:
Fatal error: Call to a member function setProduct() on a non-object in ...
1
vote
0answers
91 views
Install niceforms on Magento. Send options to cart
I want to install niceforms on Magento.
How does it works. I wrap product option "select" info form tag so i looks like
<form class ="niceform">
<divs for niceform>
...
1
vote
5answers
133 views
PHP help, session error possibily?
I am working on an e-commerce site and when the user adds a product to the basket for the first time, I get the following error,
A PHP Error was encountered
Severity: Notice
...
1
vote
3answers
102 views
How do I get cart checkout price exact to the penny using Javascript?
How do I get cart checkout price exact to the penny using Javascript?
Right now after taking out all of the trial .rounds etc I was trying.. I am coming up 1.5 cents too high using a high 15 ...
1
vote
1answer
135 views
Drupal ubercart limited time offer
I am developing a web site with Drupal + Ubercart. I am using limited time offer module it works perfectly but when I add some product to cart before expiration time that product remains in the cart ...
1
vote
3answers
781 views
Get the number of cart items in logout page
How can I get the number of cart items in logout page, I try to use the following code, it works in cart.phtml but not in logout.phtml
$cart = Mage::getSingleton('checkout/cart')->getItemsCount();
...
1
vote
2answers
246 views
Search for corresponding node in a regression tree using rpart
I'm pretty new to R and I'm stuck with a pretty dumb problem.
I'm calibrating a regression tree using the rpart package in order to do some classification and some forecasting.
Thanks to R the ...
1
vote
1answer
164 views
Best .php CMS for handling ad-hoc product quotes
I am developing a new e-commerce enabled site for a company that sells two types of products which I will call: (1) widget items, which are minimally customizable, and (2) cars, which are highly ...
1
vote
2answers
417 views
CodeIgniter based e-shop, shipping and gift address design problem
While building an ecommerce platform I have run into design problems. I'm working with the built-in CodeIgniter's cart class. It stores all the cart information in session. Let say that cart has ...
1
vote
4answers
118 views
I simply want to view the contents of shopping cart in Magento
I have an observer that is ran when you view the contents of the shopping cart in Magento. I simply want to var_dump the list of product ID's.
I know it probably seems like a dumb question but I ...
1
vote
1answer
1k views
Redirect Magento to checkout onepage after adding item to cart
How can I redirect the user after it adds one item to the cart?
lets say I want him to choose one item and go to the checkout/onepage, how can I do that?
1
vote
3answers
84 views
coding first php cart - advice needed
I'm a php noob attempting my first shopping cart. I intend to use paypal checkout when the cart is ready. I'm having fun playing with this but need assistance.
Here is what I got so far: ...
1
vote
1answer
300 views
CodeIgniter Cart ID + Options
I have a situation:
I have products that are in a CodeIgniter Cart custom store.
Each product has an ID associated with it, but also has options for it (sizes).
These sizes all have different prices. ...