Product Page Titles not displaying

  • Posts: 71
  • Thank you received: 1
12 years 3 weeks ago #82227

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.

Please Log in or Create an account to join the conversation.

  • Posts: 13201
  • Thank you received: 2322
12 years 3 weeks ago #82347

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:

	<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>
In this view. (HikaShop > Display > Views).

Please Log in or Create an account to join the conversation.

Time to create page: 0.070 seconds
Powered by Kunena Forum