I've managed to get to the point where I understand how to move blocks from column to column in my Magento layouts: via specifying a "left" or "right" attribute in the <reference> tag. However, I don't understand how to change the order in which blocks appear. I've noticed that the "before" and "after" attributes of the <block> tag have something to do it with, but I'm not sure how they work. If I want to move a block from the top of its area to anywhere else in our page, what's the proper use and syntax for those attributes?

For example, I have a Category page and I have these blocks in it:

  • view.phtml
    • list.phtml
      • toolbar.phtml

... and so on.

I want to put my block anywhere within these blocks, or at the top of these blocks, or make all of these blocks show up inside another block. How can I use "before" and "after" to achieve this using my local.xml file?

Note: I can do it manually by inheriting their respective .xml files, but that's not a good solution to the problem as a whole.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

before: Used to position the block before a block with the name specified in the value. If "-" value used the block is positioned before all other blocks of its level of block nesting.

after: Used to position the block after a block with the name specified in the value. If "-" value used the block is positioned after all other blocks of its level of block nesting.

Updated: examples from some random core layout updates:

<reference name="right">
    <block type="catalog/product_compare_sidebar" before="cart_sidebar" name="catalog.compare.sidebar" template="catalog/product/compare/sidebar.phtml"/>
</reference>

<reference name="right">
    <block type="catalog/product_list_related" name="catalog.product.related" before="-" template="catalog/product/list/related.phtml"/>
</reference>
link|improve this answer
please Edit ur ans with an example so that i can accept it. – Showket Bhat Nov 13 '11 at 17:58
what is before="cart_sidebar" ? Is it template name, block name or anything else .? – Showket Bhat Nov 14 '11 at 5:01
@Showket before: Used to position the block before a block with the name specified in the value. What is not clear here? – Zyava Nov 14 '11 at 11:25
I am Not understanding If I am writing before = "Some Block Name" Eg In Above Example if i want the above second block Before the First one Do I need to Write it Something Like This . <reference name="right"> <block type="catalog/product_list_related" name="catalog.product.related" before="catalog.compare.sidebar" template="catalog/product/list/related.phtml"/> </reference> – Showket Bhat Nov 14 '11 at 11:49
Thanks For giving ur precious Time...Zyava – Showket Bhat Nov 14 '11 at 11:52
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.