Wednesday, December 19, 2012

Order Edit or Update From Front End in Magneto

Hi,
I done with module called order update where you can edit a pending order from front-end in your account section it will work same as like order edit in admin any help needed contact me

Tuesday, December 18, 2012

Store Credit Or Customer Balance Module in Magneto

Hi,
I Done with Store Credit module any help need please contact me i can help you out
in this once order is invoiced and made credit memo at that time customer can re use that balance to buy other product

Tuesday, October 16, 2012

Get Magento Version in Magento Programmatically


If you need to get your Magento project version Programmatically use below code



$m= new Mage;
$version=$m->getVersion();
echo $version;


Wednesday, August 29, 2012

Sunday, July 29, 2012

Adding Custom Add to cart button in Magento


Hi,

we can create custom add to cart link or button from product id you can use below code


<button onclick="setLocation('<?php echo $this->getAddToCartUrl($_item) ?>')" class="button btn-cart" title="Add to Cart" type="button"><span><span>Add to Cart</span></span></button>