I had installed Magento Creare SEO extensions (http://www.magentocommerce.com/magento-connect/creare-seo.html) The extension is good and did what I wanted to achieve. However, the extension override the page title to default page title in these pages, such as Login, Signup, Popular Search Terms, Search Results, etc. So it created duplicate page titles. After researching the code, I found…
Category: E-Commerce
Mangeto Delete Order Extension
Magento – Add Open Graph Tags in Meta
Ah…. Big mistake. Magento has good plugin called Creare SEO (http://www.magentocommerce.com/magento-connect/creare-seo.html). It has Twitter Cards and Open Graph. Install above plugin. —— Discard below contents Open template’s header file and add below after any existing meta tag. Change ‘images/logo.png’ to your logo. Other meta tags will be automatically filled. <meta property=”og:title” content=”<?php echo $this->getTitle() ?>”…
Magento Installation – Fresh Start
1. Install Magento, Theme 2. Set up .htaccess 3. Install SMTP Pro Extension: http://www.magentocommerce.com/magento-connect/aschroder-com-smtp-pro-email-free-and-easy-magento-emailing-for-smtp-gmail-or-google-apps-email.html 4. Install Fontis Australia Extension Extension: http://www.magentocommerce.com/magento-connect/fontis-australia.html 5. Tax Configuration – Go to System -> Sales -> Tax Tax Classes Tax Class for Shipping: Shipping Calculation Settings Tax Calculation Method Based On: Total Tax Calculation Based On: Shipping Address Catalog Prices:…
Magento – rules to fix catalog price rule price
Refer http://www.pacificwebtechnology.com/blog/magento-rules-to-fix-catalog-price-rule-issue/ 1. Make pricerule.php in root folder <?php require_once ‘app/Mage.php’; // if your are not root folder then write the proper path like publichtml/magento/app/Mage.php Mage::app(‘default’); $catalogRule = Mage::getModel(‘catalogrule/rule’); $catalogRule->applyAll(); Mage::app()->removeCache(‘catalog_rules_dirty’); ?> 2. Make cron job 0 0 * * * php /home/~/public_html/pricerule.php