How to remove Shopplugin addon price in dropdown
If you need to remove the prices in the Shopplugin addon dropdown you will have to edit the core code.
Simply go to this page in the code.
shopp/model/Product.php
Go to line 1488 and edit this piece of code.
$string .= ‘<option value=”‘.$option['id'].’”>’.$option['name'].’ (+’.money($currently).’)</option>’.”\n”;
TO:
$string .= ‘<option value=”‘.$option['id'].’”>’.$option['name'].’</option>’.”\n”;
There you go. Prices removed.
|
|
|






