Thursday, March 8, 2012

How to get special price end date in magento?

Here is the code to get special price end date in magento.
$this->formatDate($product->getSpecialToDate())

How to get special price or offer price in magento?

Here is the code to get special price in magento.
$price = $_product->getPrice();
$specialprice = $_product->getFinalPrice();
if($specialprice != $price)
{
 //your stuff here
 echo $specialprice;
}

Default toggle text in input text box magento

In common web design form we may noticed some help text inside the text field. The help text automatically removed when the user clicks on the input field. It has the benefit of putting the help precisely where the user's looking. Something like this:



Here is the code. Enjoy coding:)