Take for example, the New Products sidebox ...
The original files are located at:
/includes/modules/sideboxes/whats_new.php
/includes/templates/template_default/sideboxes/tpl_whats_new.php
You would copy those files to your templates and override directories, where your_template_dir is the directory for your templates and overrides:
/includes/modules/sideboxes/your_template_dir/whats_new.php
/includes/templates/your_template_dir/sideboxes/tpl_whats_new.php
NOTE: I always copy both peices of a sidebox even if I am only changing one peice so that there is no confusion in the future ...
In this case, to remove the price, you need to remove it from the:
tpl_whats_new.php
file so that it does not display, and you will see a line that reads:
PHP Code:
$content .= '<div>' . $whats_new_price . '</div>';
simply comment that out:
PHP Code:
// $content .= '<div>' . $whats_new_price . '</div>';
Now you will not see the price in the New Products sidebox ...
Bookmarks