I'm looking for a magento 1.9 solution to give the customer the posibility to have more than one cart.
I've seen this in some other b2b shops.
If a customer adds a product to cart, he/she will be able to select the cart to add to. Later in checkout the customer can select which cart to checkout.
Has anyone ever seen something like this in magento?
Thank you
Related
I want to change configurable product to 'out of stock'(this is for a client requirement) when all its associated product stock become 'out of stock'. I think magento automatically doesn't do this. How Can i do this? Do i need to write any custom code?
I dont think you need to write any custom code for this.
This feature is already provided in magento, if an associated product is out of stock then it would disappear from product options and if all of the associated products are out of stock then the parent configurable product will also be displayed as out of stock. Tested in magento version 1.9 :)
Hi i need to migrate one of my site into magento but i am confused with how the detail page should match exactly same like my old site in magento.
Here is my orginal site detail page here
Here i have quality and i would like to manage this as configurable products in magento. But under each quality products the prices are different and there is an option in magento to add this as tier price. But in magento when i configurable product and add associated products for configurable products i cannot able to see an option to apply the tier prices for the simple products. In magento if a add configurable products and associated products only configurable tier ptice is taking. Do i have an solution for this in magento? If there is any extension please advice.
Yes, got the solution. I have implemented this as set os simple products under grouped products and each simple products i have added the tier pricing. Check the link here
I am new to Magento .So please forgive me if I am asking something silly.
I am working on a Magento shop where I have a requirement that when I select some product in certain category say X, then I am redirected to one page checkout where I have default shipping method and do not want any payment method. i.e. Skip shipping and payment method step in chekout.
Whereas if I click some other categories then I get redirected to onepage checkout with shipping and payment option.
So basically what I need in form of code is -
if(category==X)
then Checkout without Shipping and payment method
else
Checkout with Shipping and Payment options.
As far as I have explored the magento structure , it is far too complex then other CMS. I am not able to even find files where i have to make changes in code. Anybody out there who can guide me for right approach toward the solution? Or is there any extension which fulfills such requirement?
Thanks in advance.
First, create the new payment method for the category (and shipping method if you need that too).
http://www.magentocommerce.com/wiki/5_-_modules_and_development/payment/create-payment-method-module
http://www.magentocommerce.com/wiki/5_-_modules_and_development/shipping/create-shipping-method-module
Then I would probably extend the controller, though you probably could also use an observer.
Extend magento core controller (Checkout/OnepageController)
Keep in mind that the customer may have products from another category in their cart, and what to do in that case.
I am having a requirement that I have to change the order of totals in a transactional emails and user account in Magento.
My requirement is shipping charge should display after Tax.
Currently it is displaying as Subtotal-Shipping charge-Tax-Grand Total and I need as Subtotal-Tax-Shipping charge-Grand total. Can anyone help me from where I can edit this.
I Am using Magento ver. 1.7.0.2
And the same thing in admin panel order details.
Please answer me ASAP... It will be very helpfull for me . I have stuck in this from 2 days
Did you take a look at
Admin -> System -> Config -> Sales -> Checkout Totals Sort Order
I'm trying to set up a magento shop, and basically I want certain products (add on items) only if they have the main product already in their cart. I don't want the customer to be able to purchase the add on products on their own.
How would I set that up?
To accomplish this you could Create a Bundle Product in Magento