Magento Nasveti o Magentu, spletnem razvoju in drugih stvareh

How to display Newsletter form in Header / Footer

How to display Newsletter form in Footer 1. Go to app/design/frontend/default/your_theme/layout/ open newsletter.xml you will see code block like this : … <default> <!– Mage_Newsletter –> <reference name=”left”> <block type=”newsletter/subscribe” name=”left.newsletter” template=”newsletter/subscribe.phtml”/> </reference> </default> … 2. Add following code there like this : … <default> <!– Mage_Newsletter –> <reference name=”footer”> <block type=”newsletter/subscribe” name=”footer.newsletter” template=”newsletter/subscribe.phtml”/> </reference>…

Preberi več

Kako pospešiti uvoz in izvoz izdelkov ter zmanjšati velikost baze podatkov?

To speed up magento products imports/exports process and make database size decrease. Please run following queries of your magento database. It will truncate the unnecessary log and index tables. TRUNCATE dataflow_batch_export; TRUNCATE dataflow_batch_import; TRUNCATE log_customer; TRUNCATE log_quote; TRUNCATE log_summary; TRUNCATE log_summary_type; TRUNCATE log_url; TRUNCATE log_url_info; TRUNCATE log_visitor; TRUNCATE log_visitor_info; TRUNCATE log_visitor_online; TRUNCATE report_viewed_product_index; TRUNCATE report_compared_product_index;…

Preberi več

Kako prikazati ime kategorije na seznamu izdelkov po meri na domači strani?

Generally on magento store we see the products list of some category on home page. To implement that, we use list.phtml file or any custom file to show any category product list on home page using following block: {{block type=”catalog/product_list” category_id=”3″ template=”catalog/product/list.phtml”}} This block only shows products list on home page, but it doesn’t show…

Preberi več

Hot to get Url’s in Magento

Every wonder how you can easily reference URL’s in magento? When developing your store, before going live, many of the url’s you will be using will be based on the stores testing/development url, so when you change the base url from say the development url: dev.mysite.com to the live url for example: mysite.com all your…

Preberi več