Quote
The error display twice, under the Starting Price and Highest Bid
Warning: Missing argument 2 for display_price() in includes/classes/currencies.php on line 72
FIND:
function display_price($products_price, $products_tax, $quantity = 1) {
return $this->format($this->calculate_price($products_price, $products_tax, $quantity));
}
REPLACE WITH:
function display_price($products_price, $quantity = 1) {
return $this->format($this->calculate_price($products_price, $quantity));
}
Basically this will just remove the code that is asking for the Price+Tax. And at least it will be one less error you get.
I've followed these instructions but now I'm getting this error:
Fatal error: Call to undefined method currencies::calculate_price() in /home/xxxxxx/public_html/shop/includes/classes/currencies.php on line 72
What do I need to do? thank you










