I am trying to figure out how I display the special price of a grouped product on the catalog page.
For example if i have 5 simple products attatched to my grouped product, how do I display the RRP for those products as well as the special price, on the catalog page?
At the moment it will display on the product page only and magento will fetch the lowest price it can find to display on the catalog page.
Any help is greatly appreciate!
If you're using the default theme, you'll have to modify:
app/design/frontend/base/default/template/catalog/product/list.phtml
You can add the prices you'll need like this by passing through the product:
<?php echo $this->getPriceHtml($_product, true) ?>
Related
Need to set up different shipping prices according to categories.
Like if I have 2 categories say a and b in admin.
I need to set up a $10 shipping for the product from category A and $15 for the product from category b
I was checking in the cart rules but can't find anything there.
Please see this link.Hope its help you
http://www.blog.magepsycho.com/change-shipping-price-handling-fee-fly-magento/
http://www.magentocommerce.com/boards/viewthread/310755/
please use this, create one custom modules then you will be see in admin categories one text field in "General Tab", Add your shipping price and get on checkout page using that code.
<?php echo Mage::getStoreConfig('sectionName/groupName/fieldName'); ?>
And create your condition.
In my site i am using configurable product and Price is showing at two different place in Product page. One is near product and one is at bottom of all details and i am giving label as "new subtotal". And the both price is changing based on what attribute i am selecting but what i want is to change price at one place only at bottom "New subtotal" label and i want to keep top price is fix even changing the attribute. I tried by doing some changes in view.phtml file to get price using getPrice() but it giving me the fix price at both places. Can anyone please help me.
If you are using magento default code in view.phtml then there will be code <?php echo $this->getTierPriceHtml() ?> which display price with html.
In stead of above, just use $_product->getPrice() to display price without default magento html.
Hop this will help.
Is there any way to do this :
I have two kinds of products, Handmade and ready women accessories. for handmade products I want a block under the price that tell the customer "This Product is 100% Handmade" and for the ready product nothing. So it will be only for the Handmade.
I already have a block but it is visible to all products, so I want it to be visible only for Handmade products.
Any Ideas ?
Can you not create an attribute specifically for the Handmade products? e.g the attribute could be called 'IsHandmade'.
Then on your product page (view.phtml) under the price have something like this?:
<?php if ($product->getIsHandMade == 'Yes'):
echo 'This Product is 100% Handmade';
endif; ?>
I searched high and low on google for this answer. I need to display the tier prices for the products that show on the upsell block in the product page.
I tried this:
<?php echo $this->getTierPriceHtml() ?>
However, it echos the tier price for the main product on the page instead of the tier prices for the products in the upsell block.
Does anyone know a work around here?
You're almost done
$this->getTierPriceHtml($_link);
Indeed, this method accept a parameter for the $product to show, if you don't set it it will show the price for Mage::registry('current_product') aka the main product, just pass the upsold product as argument and you're ok.
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