Not for official support
We do not provide technical support in this forum.
If you want to contact our customer support, please use our support form.
You are not logged in.
hi all happy new year. can someone please help me? I need to remove the price list page from SHOP SCRIPT FREE. How do I go about doing that.
Offline
Add the following code at the top of file index.php:
if (isset($_GET['show_price'])){
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://your_domain_here/");
}Offline