2009-09-26 17:40:39Damodar Bashyal
These are the few things i had been documenting while doing projects on Magento E-Commerce Solution. So posted here to find faster when needed. These are just small snippets. Not detailed, easy to understand though (hopefully).
How to insert Url in the CMS pages?
[code]
{{store url=''}} will give base|store url
More»
2009-05-02 03:30:26Damodar Bashyal
How to use jQuery with Magento?
Download jQuery from jQuery site
Add this line to the bottom of jQuery.js
CODE:
1-jQuery.noConflict();
Copy the file to the js/jquery folder|directory
In page.xml, add it to the list of js files as:
CODE:
1-<action method=“addJs“><script>jquery/jquery-1.2.6.noConflict.min.js</script></action>
or,
CODE:
1-<action method=“addItem“><type>js</type><name>jquery.js</name><params/></action>
How to use jQuery with magento now?
The below procedure is one way.
More»
2009-04-23 05:03:08Damodar Bashyal
My another hunt on the google to find the process to add a static block to a cms page. After few search and filter, i found a post on a pratthost. It saved my a lot of my time and headache. The following post is taken from it, slightly modified.
Actually, there was nothing complicated about achieving this. Static blocks are a great way to divide up different types of data blocks to make updating content easier.
More»