Magento/PHP: Add static block to end of products list(Grid) on category page? -


i basing code off similar solution displays block every 3 products:

<?php if($i % 3 == 0){ ?> -- static block here --         <?php } ?>  

i display static block once after products vs multiple times, every 3.

if you'd render static block @ bottom of product list, go list.phtml page , scroll bottom. prior bottom , call static block so:

<?php echo $this->getlayout()->createblock('cms/block')->setblockid('block_identifier')->tohtml(); ?>  

that should trick, , outside of if/else statement list/grid render regardless of view mode you're in.


Comments

Popular posts from this blog

vb.net - Alternative to the T-SQL AS keyword -

php - MySQLi binding parameters in a prepared statement doesn't work unless inserted after "WHERE" -

ios - CFRelease causing crash in iPad application -