ce7 Posted May 2, 2020 Share Posted May 2, 2020 hi, @burt Have CE1.0.5.0 version, want to modify the product_info page the old price, check the file: cm_pi_price.php see these codes: $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])); $specials_price = null; if ($new_price = tep_get_products_special_price($product_info['products_id'])) { $specials_price = $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])); } where is the <del>old price </del> is from? which files should I check? Can someone please help? Many thanks! Lyn Link to comment Share on other sites More sharing options...
♥ecartz Posted May 2, 2020 Share Posted May 2, 2020 It's hidden in the language file: https://github.com/gburton/CE-Phoenix/blob/master/includes/languages/english/modules/content/product_info/cm_pi_price.php Note that that seems likely to change, as overridable templates require HTML to be in the templates rather than the language files. But it is currently in the language file. Always back up before making changes. Link to comment Share on other sites More sharing options...
ce7 Posted May 5, 2020 Author Share Posted May 5, 2020 On 5/3/2020 at 9:41 AM, ecartz said: It's hidden in the language file: https://github.com/gburton/CE-Phoenix/blob/master/includes/languages/english/modules/content/product_info/cm_pi_price.php Note that that seems likely to change, as overridable templates require HTML to be in the templates rather than the language files. But it is currently in the language file. @ecartz Thank you very much! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.