Tue. Jul 2nd, 2024

16. Magento. How to add a static blocks to product details pages

1 min read
  1. Navigate to CMS -> Static Block -> Add New Block:

    Magento_how_to_add_a_static_block_to_product_page_1

  2. Create static block. We will use “contact_info_widget” as Identifier:
    Magento_how_to_add_a_static_block_to_product_page_2
  3. Open the file app/design/frontend/default/themeXXX/layout/catalog.xml. It is a layout file for the catalog module. Find the reference below:
    1
    <strong><catalog_product_view></strong>
  4. Add the following code right below the reference:
    1
    2
    3
    4
    5
    <reference name=”left”>
        <block type=”cms/block” name=”contact_info_widget” before=”-“>
            <action method=”setBlockId”><block_id>contact_info_widget</block_id></action>
        </block>
    </reference>
  5. In case your template comes with right sidebar area, you should change the reference name from “left” to “right”:
    1
    2
    3
    4
    5
    <reference name=”right”>
        <block type=”cms/block” name=”contact_info_widget” before=”-“>
            <action method=”setBlockId”><block_id>contact_info_widget</block_id></action>
        </block>
    </reference>
  6. Make sure to replace contact_info_widget idenfifier with your own one.
  7. Save the file. clear Magento cache. Navigate to product page to see the changes.
July 2024
M T W T F S S
« Jun    
1234567
891011121314
15161718192021
22232425262728
293031