How to edit Magento product page template? - magento

I have just installed custom options for grouped products plugin. It currently generates the template in the product page below the add-to-cart button. Now if I need to position it above the add-to-cart button, what procedure should I need to follow?
Thanks :)

Get familiar with how "getChildHtml" works. The block is added in layout yet (because you see it), so you just need to edit your catalog/product/view.phtml and change the positioning of the actual getChildHtml('block_name_in_layout_xml_you_want_to_move').

Related

magento; diasble blocks on product page

I have a slider on my home page. Thats correct but when I go to product page you see also the slider. Where can I turns this off?
I want it only on the home page.
Thanks!!
Use latest version of magento and the Magikshop theme from Themeforest.
First of all, have you installed the seperate extension for slider or it comes with your theme? If it was default provided by your theme.Then you can find the setting to configure the slider in
"System->configuration" in your admin panel.
Search for the banner or slider you may get the setting there to select which page you want to show the slider.
The setting may be different according to the slider.
If you have installed the extension yourself then you may find the banner/slider menu in the admin panel.
Hope this will help.
If the slider is a widget, you should be able to specify the pages that show a widget instance. The widgets that are in use can be found in the CMS section of the Magento Admin panel.
If the slider is a block you probably need to disable/remove/unset that block from your product detail page. To disable block on a particular page, you need to edit your layout Xml file. These files are most probably found in the following folder:
app/design/frontend/THEME/default/layout/
How to unset a block is described, e.g. here: Magento - remove block using update XML

Layered navigation is showing in magento categories and subcategories

First of all searched a lot but cant find any solution.
My layered navigation block is not showing in any pages like categories,sub categories.
Using template path hints i saw the block is not getting rendered.
I set is_anchor to YES and also added filterable attributes in admin panel.
But no luck. Its not showing in frontend.
Can you guys please suggest.
I found the solution by myself..my list.phtml had 2columns-right layout.
Most of the ajax layered navigation extension are based on 2columns-left.They only support 2columns-left layout.
So i made it 2columns-left.And now its coming.And the extension i used is MD-AJAX FILTER
Another Option is
GO to the extension layout file and change the reference from left to right. For their layerd navigation block.

How to remove link from magento site top navigation subcategories?

How to remove link from magento site top navigation subcategories. I want subcategories should be there but it should not be click able.
Help will be appreciated.
There is no "fast way" to do it.You need to create a new module, to override the existing one and change the way that categories are printed through magento.

magento product option boxes style

Hi I am novice at magento I just can do simple task and edit some css but now I need to redesign product page layout. What I cant do is change product options (like shoes size, or clothes S,M,XL etc..).
Now it has classic dropdown manu layout what i want is little boxes with options, like checkboxes.
See exemple here example of product
i dont know if there is some plugin for that or you need to see some source code to help me, if so write a comment i try paste neccesary code.
Thanks
try to add custom option for product,,,,you can see in manage product option in last tab custom option...
The options for configurable products are created here:
../template/catalog/product/view/type/options/configurable.phtml
Just edit the *.phtml to your needs. In default it is a simple select box.

Magento Custom Options

I have two type of custom options in my product. One is with text boxes and the other with drop down/ checkbox. I want to display dropdown/ checkbox custom option just after the tier pricing area of the product detail page. Can anyone help me here?
You need to edit the template/view file(catalog/product/view.phtml) under the current theme directory.

Resources