Release of the newer version of jQuery Lightboxes 1.2.0

Introduction Magento community is showing great love towards the Magento Extension: jQuery Lightboxes (probably the #1 lightbox extension for Magento e-Commerce), as a result, we are on the way to make it much better with lots of new features. Just we have released a newer version of jQuery Lightboxes i.e. 1.2.0. Changelog Version 1.2.0  Tested …

Read more

Demystifying PHP’s Array Key/Index

According to php.net manual: An array in PHP is actually an ordered map. A map is a type that associates values to keys. A key may be either an integer or a string. If a key is the standard representation of an integer, it will be interpreted as such (i.e. “8” will be interpreted as …

Read more

How to use the WYSIWYG editor (TinyMCE) in custom Admin Magento Module

A rich text editor(TinyMCE) is an often requirement for Admin Module as it makes the content editing work much easier. In order to enable TinyMCE editor in textarea field, You need to do the following two things: 1> Including TinyMCE in Head Add the following function in your Adminhtml Edit Class (MagePsycho_Demomodule_Block_Adminhtml_Demomodule_Edit): protected function _prepareLayout() …

Read more