this is simple question . How can i update product price using product id in opencart ?
I found catalog/controller/product/product.php file . And i see one query
$price = $this->currency->format($this->tax->calculate($recurring_info['price'] * $quantity, $product_info['tax_class_id'], $this->config->get('config_tax')), $this->session->data['currency']);
But how can i update the price . For example if my product-id=2 then i have to update the price = 10
I have ftp access . So please give any sample code .