Step by step Bootstrap 3 tutorials 0

Understanding Page Header in Bootstrap

Bootstrap 3 page header : With this functionality header can be more highlighted easily. As header is always the first impression of the viewer so this page header component of...

Magento Step by Step tutorials 0

How to Remove index.php from Magento URLs.?

Magento is one of the most spectacular feature rich platform built specifically for online shopping. All the functionality are supported with communities and thousands of experts online. Magento offers SEO...

Step by step Bootstrap 3 tutorials 0

Understanding Tooltip in Bootstrap 3

Bootstrap 3 Tooltip: Tooltips are the small pop up box that appear over the element as user hover the elements prompting the extra information instantly. This is another component provided...

HTML5 tutorial for beginners 0

Align Images in HTML

Images combined with text are the two fundamentals around which the websites are built. Aligning images in a perfect way allows layout to work in symmetry. Their precise position and...

Magento Step by Step tutorials 0

How to get config variable value in magento.?

To get the config variable value in Magento you must use the below code to get the desired results accordingly. $configValue = Mage::getStoreConfig(‘sectionName/groupName/fieldName’); $configValue = Mage::getStoreConfig(‘sectionName/groupName/fieldName’, Mage::app()->getStore()); Above both methods...

Magento Step by Step tutorials 0

How to Change Product Type in magento?

Change Product Type In Magento:- If you are looking to change the product type in Magento then there are no options from Magento admin, for which you have to make...

JavaScript tutorials for beignners 0

What are JavaScript Variables?

Understanding JavaScript Variables Variable are the JavaScript containers in which data in multiple form are stored, in another term they are just containers only. They are one of the fundamental...

Magento Step by Step tutorials 0

Javascript Validation Form in Magento

Magento Javascript Form Validation In Magento there is default validation functionality for forms which then must be configured accordingly to get the specific results. All the JavaScript functions comes from...

Magento Step by Step tutorials 0

How to Get a Product by SKU in Magento?

Get a Product by SKU in Magento. In Magento usually we upload product by its ID $product = Mage::getModel(‘catalog/product’)->load($product_id); But when need to get product by its attribute SKU. To...

Step by step Bootstrap 3 tutorials 0

Bootstrap 3 Nav Pills

Bootstrap nav pills are an important part which are used for website menu navigation respectively. They can be used inline, vertical, with different size, color, with toggle and more examples...

Magento Step by Step tutorials 0

How to Execute Custom Query in magento.?

Executing Custom Query in magento. When you are working with the custom Magento development then we need use specific custom queries to get the desired result respectively. Here we have...