Currntly, product price adding to custom product, but I need to change some functionality
I dont want to add product price in to custom option. I want to show same price which I have
added fixed price. How can I do that?
Related
In Magento,I have created an attribute for product price as my_price_attribute.
If cusomer who logged in belongs to perticular group,then I want to show my_price_attribute value at place of original price and use my_price_attribute value to cart else i will have to dislay both prices but use original price to cart.
How can i do this?
Happy, Magento have Provide own feature for your type requirement.
Use Price Group Price ,Here you can set according to customer group
Hi i want to sell products by gram.
For example i'll define 1g=0.015€.
On the product page the customers should input for example 250g.
Which product-type/configuration matches this requirement at best?
You can just use simple product with as custom option for weight of type text field.
Add some javascript to change the price on product detail page.
For adding to cart, you need an observer.
You have to build an observer that catches the add-to-cart event sales_quote_add_item and then you can do the php-stuff in the observer to get the weight and calculate the price.
You can then change the price of the product with:
$observer->getEvent()->getQuoteItem()->setOriginalCustomPrice([your price])
Is it possible to add the same product to the basket twice or more times with different prices?
I know how to change the price of product when I add it to the basket using an observer and the event checkout_cart_product_add_after. But right now, when I change the price via the quote item in the observer, all products of this type that are already in the basket get the price of the last item of this type that I added…
When you add the product with the changed price add also this to the item and the product:
$data['c_price'] = 'YOUR CUSTOM PRICE HERE';
$product->addCustomOption('c_price', serialize($data));
$item->addOption($product->getCustomOption('c_price'));
This way the new product shouldn't be merged with the previous one, but if you add the product again with the custom price then it will be merged with the one you previously added with a custom price.
I am beginner in magento.I need to remove required field for select option in configurable products and add into shopping cart pages in magento.In product details page,customers can purchased set of product and individual product.For example, Product A can buy shirt model and product B can buy pant model but product A and product B can show shirt and pant.so i am using product
How to remove required field and add into shopping cart page in magento? Please advice me
You are using the wrong kind of products. Configurable product options are always required.
I think you need to look at using grouped or bundled products to do what you want.
http://www.magentocommerce.com/knowledge-base/entry/tutorial-creating-a-grouped-product
http://www.magentocommerce.com/wiki/modules_reference/english/mage_adminhtml/catalog_product/producttype
I want to implement following requirement in magento admin panel-
When I add 'A' product to shopping cart then system suggest me 'B','C'.. products with discount price which I already configured through admin panel.i.e want to make a provision to select products and add discounted price..like cross sell tab.
Thanks in Advance...
i think i want the same... use the magento crosssell function to display a particular product(s) at the checkout of another unique product in the normal way. the extra feature required is to hard code a promotional price or % discount into the crosssell item. if a sku 123456 is in the product view or category it has a retail price but if show in crosssell it is shown with a promotional discounted price that is controlled at product level. so maybe this feature is part of the product setup. maybe a new field called crosssell price ?
i have asked aheadworks for clarification on the function of their 'checkout promo' extension.
the ahead works extension seems to be a banner but i'll see what they say.
Is this to use the magento crosssell function to display a particular product(s) at the checkout of another unique product in the normal way? The extra feature required is to hard code a promotional price or % discount into the crosssell item. If a sku 123456 is in the product view or category it has a retail price but if show in crosssell it is shown with a promotional discounted price that is controlled at product level. So maybe this feature is part of the product setup, maybe it's a new field called crosssell price ?
I have asked aheadworks for clarification on the function of their 'checkout promo' extension.
The ahead works, extension seems to be a banner but I'll see what they say.