Magento don’t display product in category page.
I’m sure to configuration right with 7 Common Reasons http://www.lexiconn.com/blog/2014/07/7-common-reasons-why-products-dont-display-in-magento/ I try config many time, but Magento don’t display...
View ArticleBest Tools And Extensions For Magento Developers (debug, extensions...
In this post, you will find all the necessary tools for the Magento development. There are both free and paid solutions with absolutely different functionalities . Ultimate Module Creator With Ultimate...
View Article[Fixed] issue of Visual Merchandiser in Magento.
Case description Go to Category Manage, select Visual Merchandiser tab. We create a filter condition in “Smart Category: Select the attributes to use” Go to Cache Manager, click to “Re-build Visual...
View ArticleHow to Tax working in Magento?
app/code/core/Mage/Tax/Model/Sales/Total/Quote/Subtotal.php /** * Calculate item price and row total including/excluding tax based on total price rounding level */ protected function...
View Article[Magento ]Deadlock in reindex issues
With Big numbers of product, we must config 2 price reindex(product price, promo catalog price ) as widely separated /app/code/core/Mage/Catalog/Model/Observer.php <crontab>...
View Article[Magento 2] Create new controller
Create your directory under <magento_root>/app/code/Mydogs/Helloworld/ Create etc/module.xml file under Helloworld directory and define your module. <?xml version="1.0"?> <config...
View ArticleTechnical resources/document for Magento 2
You can track all updates and Magento Community news at Twitter with #magento2 and#realmagento tags. Official Magento 2 Documentation Gitller chat for Magento 2 developers Official tutorial training...
View ArticleHow to check Full Page Cache is working?
You need ope file and insert the log scripts: /app/code/core/Mage/Core/Model/App.php public function run($params) { $base_url = ( isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on' ? 'https' :...
View ArticleGet Product Collection from Solr Engine
<?php require 'app/Mage.php'; Varien_Profiler::enable(); Mage::setIsDeveloperMode(true); ini_set('display_errors', 1); umask(0); Mage::app(); $category = Mage::getModel('catalog/category')...
View ArticleRun manually the SQL setup in Magento 1
<?php umask(0); #ini_set('memory_limit','512M'); set_time_limit(0); if(file_exists('app/Mage.php')) require 'app/Mage.php'; else require '../../app/Mage.php'; // Init without cache so we get a fresh...
View Article