Kindly follow the following steps: Check this code now: Go the following location in server or Cpanel Language File Change catalog/language/en-gb/product/product.php Check this $_['text_year'] = 'year';. Add the following lines to above lines $_['text_weight'] = 'Weight'; In model Change : Goto the catalog/model/catalog/product.php Check the following lines in public function getProducts($data = array()) Add the following lines above the lines: public function getWeightClass($weight_class_id) { $sql="SELECT * FROM " . DB_PREFIX . "weight_class_description WHERE weight_class_id='".$weight_class_id."'"; $query = $this->db->query($sql); if ($query->num_rows) { return $query->row['unit']; } ...
<?xml version="1.0" encoding="UTF-8"?> <modification> <name>Buy Now Product</name> <id>Buy Now Product</id> <code>OCMP_BNP</code> <version>3.0.2</version> <vqmver required="true">2.4.0</vqmver> <author>ManiNalliapppan</author> <file path="catalog/language/en-gb/product/product.php"> <operation> <search ><![CDATA[ $_['text_year'] = 'year'; ]]></search> <add position="after"><![CDATA[$_['text_buynow'] = 'Buy Now';]]></add> </operation> </file> <file path="catalog/view/theme/default/template/product/product.twig"> <operation> ...