 
  
   
  
   
  
  <file path="catalog/controller/product/product.php">
    <operation>
        <search><![CDATA[$data['heading_title'] = $product_info['name'];]]></search>
        <add position="after"><![CDATA[
            $manufacturer_info = $this->model_catalog_manufacturer->getManufacturer($product_info['manufacturer_id']);
            $data['descriptionmanufacturer'] = html_entity_decode($manufacturer_info['descriptionm'], ENT_QUOTES, 'UTF-8');
            ]]></add>
    </operation>
    </file> 
  
  $this->load->model('catalog/manufacturer'); 
  
  <file path="catalog/controller/product/product.php">
    <operation>
        <search><![CDATA[$manufacturer_info = $this->model_catalog_manufacturer->getManufacturer($this->request->get['manufacturer_id']);]]></search>
        <add position="after"><![CDATA[
            $data['descriptionmanufacturer'] = html_entity_decode($manufacturer_info['descriptionm'], ENT_QUOTES, 'UTF-8');
       
            if ($manufacturer_info['image']) {
                $data['thumb'] = $this->model_tool_image->resize($manufacturer_info['image'], $this->config->get($this->config->get('config_theme') . '_image_category_width'), $this->config->get($this->config->get('config_theme') . '_image_category_height'));
            } else {
                $data['thumb'] = '';
            }
            ]]></add>
    </operation>
    </file>
    <file path="catalog/view/theme/*/template/product/product.tpl">
    <operation>
        <search><![CDATA[<li class="active"><a href="#tab-description" data-toggle="tab"><?php echo $tab_description; ?></a></li>]]></search>
        <add position="after"><![CDATA[
        <?php if ($descriptionmanufacturer) { ?>
        <div class="row">
        <div class="col-sm-10"><?php echo $descriptionmanufacturer; ?></div>
      </div>
       <br/> 
        <?php } ?>
            ]]></add>
    </operation>
    </file> 
  
   
  
   
  
   
  
   
  
  function custom_posts_per_page($query){
    if(is_home()){ $query->set('posts_per_page',6); }
}
add_action('pre_get_posts','custom_posts_per_page'); 
  
  