- Posts: 71
- Thank you received: 1
Product Page Titles not displaying
13 years 9 months ago #82227
by jerrico
Product Page Titles not displaying was created by jerrico
This is my 3rd request for an answer on this issue. I hope you can help - it seems to be a very basic question.
The product names are not displaying on the Product Pages.
Here is an example: atlasboltco.com/our-new-products/product/17-pls-4
Do I have to add the product name to every product description - or is there a way to display the product names? We have well over 100 products so - I am hoping there is a setting that I am missing, or an easy CSS fix.
Please advise - the store is to go live this week.
The product names are not displaying on the Product Pages.
Here is an example: atlasboltco.com/our-new-products/product/17-pls-4
Do I have to add the product name to every product description - or is there a way to display the product names? We have well over 100 products so - I am hoping there is a setting that I am missing, or an easy CSS fix.
Please advise - the store is to go live this week.
Please Log in or Create an account to join the conversation.
13 years 9 months ago #82347
by Xavier
Replied by Xavier on topic Product Page Titles not displaying
Hi,
I think that you have edited the view "product / show_default", and removed the part displaying the product name.
Try to add the code:
In this view. (HikaShop > Display > Views).
I think that you have edited the view "product / show_default", and removed the part displaying the product name.
Try to add the code:
Code:
<h1>
<span id="hikashop_product_name_main" class="hikashop_product_name_main">
<?php
if (hikashop_getCID('product_id')!=$this->element->product_id && isset ($this->element->main->product_name))
echo $this->element->main->product_name;
else
echo $this->element->product_name;
?>
</span>
<?php if ($this->config->get('show_code')) { ?>
<span id="hikashop_product_code_main" class="hikashop_product_code_main">
<?php
echo $this->element->product_code;
?>
</span>
<?php } ?>
</h1>
Please Log in or Create an account to join the conversation.
Time to create page: 0.136 seconds