2.Yes, on line 122 of update_product.php you should see
PHP Code:
if ($showprice){ $message .= ' Only $' . $products_price . '.'; }
Just change the
'Only $' to:
'Only £' However, I get conflicting reports on the pound sign working so if it doesnt show for you I would either make it say
'Only ' which will make it read something like:
'new product only 9.99'
or
You can spell out pounds so that it would look something like
'new product only 9.99 pounds' or change the word pounds to
'GBP' or whatever you like by using:
PHP Code:
if ($showprice){ $message .= ' Only ' . $products_price . ' pounds.'; }