How to display a Static-Block in a CMS-Page

Posted by Labels: at

+

How to display a Static-Block in a CMS-Page One of the coolest things in Magento, is the ability to call a static block within a CMS page. Here is how you can do just that. FOLLO...

Find Magento's cart html tags (tfoot, thead, tr, td, table)

Posted by Labels: at

+

Find Magento's cart html tags (tfoot, thead, tr, td, table) Opening your hint path, you will be missed lead to think you will find the html table tags in side cart.phtml .../template/checkout...

How to use jquery functions in magento ( noConflict() method )

Posted by Labels: at

+

How to use jquery functions in magento ( noConflict() method ) Magento is a very big system, so sometimes things might not work as you would expect. here is a little trick you need to use before usin...

How to change the template for the product review form?

Posted by Labels: at

+

How to change the template for the product review form? Open your local.xml file and paste the code below, depending on which template you wish to switch to, just edit 1columnphtml > 2column...

Remove footer and header on onestep checkout (local.xml)

Posted by Labels: at

+

Remove footer and header on onestep checkout (local.xml) Its always a good idea to keep your checkout page clean, so I thought I should share this new trend with you. The onepage or onestep c...

How to customise the Magento navbar (Topmenu.php vs Topmenu.phtml)

Posted by Labels: at

+

How to customise the Magento navbar (Topmenu.php vs Topmenu.phtml) So today I was trying to customise the nav bar of my Magento store, just like any other front end developer, I turned on my template hin...

How to display Special Price with discount percentage

Posted by Labels: at

+

How to display Special Price with discount percentage If you would like to show your users the discount percentage, on both your product list and product view, simply use the scripts below. ...

How to get the current category name from product view and list

Posted by Labels: at

+

How to get the current category name from product view and list Use the php code below to get current category name, sadly it only works on certain template files, namely the product view and product...

How to add a template file directly into another template (.phtml)

Posted by Labels: at

+

How to add a template file directly into another template (.phtml) Sometimes it is not easy to move template blocks around your Magento store using local.xml, so here is a short code that can help you ac...

How to add Static block directly into your template file (.phtml)

Posted by Labels: at

+

How to add Static block directly into your template file (.phtml) Here is a short php code to help you display Static Block that you created on your Magento Admin panel. <?php echo $this -> get...

How to load custom javascripts and style sheets to specific CMS Pages

Posted by Labels: at

+

How to load custom javascripts and style sheets to specific CMS Pages In most cases, you may want to run a promotion, which might require you to add custom styling sheet and javascripts files that do not ne...

Back to Top