Hi,
First, you want to edit the view file which corresponds to the item layout which matches the most with the look you want.
To find which view file to edit, you can use the "Display view files" setting of the HikaShop configuration page:
www.hikashop.com/support/documentation/5...g.html#advanced_main
Then, edit it via the menu Display>Views. When you edit it, you'll see 3 things:
- a text input field
- the view builder (where you can drag and drop the different pieces of the layout around for easy customization)
- the code editor with the actual code of the view file
In the text input field, you can enter a name like "metadescription" before saving the view file.
This will create a view override using that name. Then, when you edit your module, you'll be able to select that override in your "item layout" setting.
Suppose that you're using the image and title layout, you'll want to edit the product / listing_img_title view file.
Change its name and save as explained above.
Then, in the code area, you'll see green tags encapsulating each block of the view builder:
i.imgur.com/pFkwOR2.png
So you can add your own block for the meta description. You can see the product name data is in $this->row->product_name so you can write something like that:
<!-- META DESCRIPTION -->
<div class="hikashop_product_meta_description">
<?php echo $this->row->product_meta_description; ?>
</div>
<!-- EO META DESCRIPTION -->
Save again the view and that's it. You can even use the view builder to move your new block around if necessary.