Standard Product Types in Magento
-
zendnwar
-
October 2, 2014
-
Magento
-
0 Comments
Magento has 6 standard product types, including: Simple product, grouped product, configurable product, virtual product, bundle product and downloadable product. Simple product: is an instance of physical products, having a single configuration (one-size-fits-all). For example: a cell-phone, a monitor… Grouped product: is a product type that allows you to create a new product using one or more existing products, such …
Continue Reading
Which product types exist in Magento?
-
zendnwar
-
October 2, 2014
-
Magento
-
0 Comments
Configurable Simple Grouped Bundle Virtual Downloadable
Continue Reading
Which block is responsible for rendering javascript in Magento?
-
zendnwar
-
October 2, 2014
-
Magento
-
0 Comments
Mage_Page_Block_Html_Head addJs(), addJsIe(), addItem(), getCssJsHtml()
Continue Reading
Which classes are responsible for the layout being loaded?
-
zendnwar
-
October 2, 2014
-
Magento
-
0 Comments
Mage_Core_Controller_Varien_Action::loadLayout() Mage_Core_Model_Layout::__construct() Mage_Core_Model_Layout_Update::load()
Continue Reading
Which block is responsible for rendering javascript in Magento?
-
zendnwar
-
October 2, 2014
-
Uncategorized
-
1 Comment
Mage_Core_Model_Layout Mage_Core_Model_Layout_Update Mage_Core_Model_Design Mage_Core_Model_Design_Package Mage_Core_Controller_Varien_Action Mage/Core/Block/* Mage_Core_Block_Abstract Mage_Core_Block_Template Mage_Core_Block_Text Mage_Core_Block_Text_List Mage_Page_Block_Html_Head
Continue Reading
What is the DDL class in Magento?
-
zendnwar
-
October 2, 2014
-
Magento
-
238 Comments
The only DDL class in Magento is Varien_Db_Ddl_Table. The DDL class consists of a const variable corresponding with types of data (Boolean, small int, integer) and some keywords in SQL (CASCADE, RESTRICT,…) The DDL class includes functions to work with the Table object in the database such as: addColumn() addForeignKey() addIndex() Some important functions in the DDL class: addColumn($name, $type, …
Continue Reading
Error: No connection could be made because the target machine actively refused it.
-
zendnwar
-
September 30, 2014
-
Magento
-
0 Comments
It is very simple. Please check your root, password and database.
Continue Reading
How to get actual price and special price of a product in Magento?
-
zendnwar
-
September 18, 2014
-
Magento
-
0 Comments
It is very simple. // without currency $actualPrice = $product->getPrice(); // with currency $actualPrice = Mage::helper(‘core’)->currency($product->getPrice(),true,false); Get Special Price // without currency $specialPrice = $product->getFinalPrice(); // with currency $specialPrice = Mage::helper(‘core’)->currency($product->getFinalPrice(),true,false);
Continue Reading
Magento call to member function getPriceHtml()
-
zendnwar
-
September 8, 2014
-
Magento
-
209 Comments
It is very simple. please check below: <?php echo Mage_Catalog_Block_Product::getPriceHtml($_product, true) ?>
Continue Reading
Call to a member function getOptions() on a non-object in magento
-
zendnwar
-
September 1, 2014
-
Magento
-
278 Comments
It very simple. Please the following files and folders need their permissions with 777 /var/.htaccess /app/etc /var
Continue Reading