HI,
I want to add a banner to the Advanced search page. But I can seem to find the cms page to do this. I have found the Form.html but not sure how I would add the banner to this page which is Catalog Advanced Search.
Any help would be great Thanks
Solved! Go to Solution.
You need to just create one Static block and set image inside those block.
Now you have found which phtml file is called when catalog advanced search page is rendered, Now you need to call those static block in phtml file by below way,
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_identifier')->toHtml(); ?>
Where block_identifier is your static block id address.
You need to just create one Static block and set image inside those block.
Now you have found which phtml file is called when catalog advanced search page is rendered, Now you need to call those static block in phtml file by below way,
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_identifier')->toHtml(); ?>
Where block_identifier is your static block id address.