Magento simple product custom options price as product price - magento

I have product with price 0 and custom options (100g,200g,300g etc.) with prices 10$,20$...
In the product catalog and product page displays zero price, how to display cheapest option price? Thanks.

I'd suggest you take the cheapest option (probably the 100g option) and enter its price as price for the product.
Then you define the option price as t the difference between the option price and the 100g price.
Example:
Apples, Price = 0.99$
Define the individual options as follows (pricetype: fixed)
100g: +0 $ [optional]
200g: +0.85$
300g: +1.60$
That way the cheapest price is shown in the product listing and the real price gets updated on product detail view page when the user selects the amount he wants to buy.

Related

Configurable products for different product sizes and price

I am trying to make a store for car care chemicals in Magento for online buyers and company distributors.
Each chemical has a size option - 0.5 liters, 5 liters, 207 liters
And the above options have price difference depending upon the customer is a normal buyer or a distributor.
I have made a configurable product, but the price in the
"Super product attributes configuration" overrides the Group pricing in the simple products.
Can somebody please suggest the right way?
You have to create a attribute "size" as dropdown with all possible sizes.
When you add the product you have to choose one of them.
Magento will not take into the account the simple products' price of a configurable one. Simple products' prices are ignored. if you want to sell a simple product X having price $120 and a simple product B ($130) then set configurable product's price to $120 and add products you want to associate with this configurable product. After adding them click on 'Associated Products' tab which opens a block named Super product attributes configuration, which contains options and price differences and set the prices accordingly as described in attached image.
Moreover There's an extension that allows you to use simple product prices instead of price differences Since it's free extension. The extension is "Simple Configurable Products(SCP)".

Magento bundle product price when out of stock

We have a bunch of bundle packages and if one of the items is not available, the bundled product will show "out of stock" which is good. However, the price will show the amount of the available products.
Is there a way to show the full price to include both the available AND unavailable items? Or to just hide the price completely if an item in the bundle is out of stock as this can upset customers when they see a lower price compared to the full price when bundled product is available with all simple items in stock.
Example: http://screencast.com/t/vIKSfcXUQA , that out of stock bundled product is actually over $600 when all items are in stock.
EDIT: Bundle Product price options are set to Dynamic and price view is set to "As low as"
Login in to your Magento Admin go to System > Configuration.
On the left column, under Catalog, go to Inventory.
Under the tab Stock Options, you have a Display Out of Stock Products which you can set to "No".
If that did not work, then Magento is not allowing such a thing, I'm afraid.

Show Product Price including tax at product view page

I have made the settings to display product price, at product view page ,inclusive of tax.
I made the changes in admin like:
Display Product Prices In Catalog : including Tax
But the prices are still showing exclusive of tax at product view page.
Go to System->Configuration->Sales(left side)->Tax. Then in Calculation settings-> Catalog Prices Make it to INCLUDING TAX. Now save the configuration and go to the Catalog->Manage Products. Edit the required product. In the PRICES tab, it has to show the tax value below to the field where we enter price for the product. For eg: See image below.
Here my product price is $550. Down to it is shows the value that included of TAX also(If you enable option as explained above, then the tax value shows as in the image). So TAX value is also included in $550 only.

Want to add discounted price field to Cross sell tab in magento

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.

Custom price for product, displayed in cart; not showing custom price in Review order page- in Multiple Shipping Checkout

I am in a deep trouble, I want to add different categories of product in cart, For each product I have to bring additional 5$ for additional quantity. It may differ in different category.
For the above case I have successfully implemented. But issue is that the price is not showing as that in cart in review order while opting multiple address checkout option.
for E.g: there is two product 1 and 2. for product 1 , for
additional quantity i have to add $5/qty excluding its original price
, i.e; if cost of product 1 is $10 and i selected 2 quantity then
price will be $10*2+($5*1)=25 . for product 2 , for additional
quantity i have to add $10/qty excluding its original price , i.e; if
cost of product 1 is 15 and i selected 2 quantity then price will be
$15*2+($10*1)=40 .
I have implemented it.
while proceeding with checkout option this price is showing fine. *But when I opt multiple shipping its showing products original price,*
Is there anyway , to show the custom price in the review order also.
Please provide me help.
thanks in advance.
Atlast I figure out the solution for this. All price for product displaying in cart is being set in Subtotal.php in
[magento root]/app/code/core/Mage/Sales/Model/Quote/Address/Total/Subtotal.php
in function _initItem($address, $item), there I edit the set price for product with the custom price.
Now its working fine.
Hope it helps if someone needed it...

Resources