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); ...