Posts

Showing posts from February, 2016

How to remove Price from Options in Magento

Place this script in view.phtml file <script>     jQuery(document).ready(function() {        checkoptions();     jQuery("#product-options-wrapper select").change(function(){         checkoptions();     });     function checkoptions(){         jQuery("#product-options-wrapper select option").each(function(){             var optiontext = jQuery(this).text();             var addsignpos = optiontext.indexOf('+');             var subtractsignpos = optiontext.indexOf('-');             if(addsignpos>0){                 var result = optiontext.substring(0,addsignpos-1);  ...

Magento Get Add to Cart URL of any Product

$_productId = '33' ; $_product = Mage:: getModel ( 'catalog/product' ) -> load ( $_productId ) ; $_url = Mage:: helper ( 'checkout/cart' ) -> getAddUrl ( $_product ) ;