Magento

Magento, world class ecommerce opensource, fixes, bugs, theme integration, common issues solutions.

Easy way to add Contact form in Magento

Easy way to add contact form in Magento (An Open Source E-Commerce Solution)   Login to Admin Panel CMS -> Pages Create New page In Content : paste this line {{block type=”core/template” name=”contactForm” form_action=”/contacts/index/post” template=”contacts/form.phtml”}} Save page

What is Xpdf & Xpdf installation on Ubuntu

What is Xpdf ? Xpdf is an open source viewer for Portable Document Format (PDF) files. (These are also sometimes also called ‘Acrobat’ files, from the name of Adobe’s PDF software.) The Xpdf project also includes a PDF text extractor, PDF-to-PostScript converter, and various other utilities. Xpdf runs under the X Window System on UNIX, …

What is Xpdf & Xpdf installation on Ubuntu Read More »

Share Text/URL on Facebook, Twitter and LinkedIn

Share Text/URL on Facebook, Twitter and LinkedIn A common and very important activity in web development. How to allow our website content to our visitors, share on their walls ? You need to keep an eye on these steps : 1- Facebook :  https://www.facebook.com/sharer/sharer.php?u=www.naveedramzan.com Title, description will be grabbed automatically from the meta and title …

Share Text/URL on Facebook, Twitter and LinkedIn Read More »

How to disable the Compare products functionality

How to disable the Compare products functionality You can disable the Compare products functionality in Magento by following these steps: Edit app/code/core/Mage/Catalog/Helper/Product/Compare.php and change the following code:  public function getAddUrl($product) { return $this->_getUrl(’catalog/product_compare/add’, $this->_getUrlParams($product)); } to public function getAddUrl($product) { //return $this->_getUrl(’catalog/product_compare/add’, $this->_getUrlParams($product)); return false; } Edit ./app/design/frontend/base/default/layout/catalog.xml (if you are using a different Magento …

How to disable the Compare products functionality Read More »