How To Change The Categories :: Product Name And Remove The Two Dots?

Hello,

How to change the Categories :: Product Name and remove the two dots?

Also how to remove the category name too from the title?

Hello

In file

design/themes/responsive/templates/index.tpl

{foreach from=$breadcrumbs item=i name="bkt"}
{if !$smarty.foreach.bkt.first}{$i.title|strip_tags}{if !$smarty.foreach.bkt.last} :: {/if}{/if}
{/foreach}
Best regards
Robert

Hello

In file

design/themes/responsive/templates/index.tpl

{foreach from=$breadcrumbs item=i name="bkt"}
{if !$smarty.foreach.bkt.first}{$i.title|strip_tags}{if !$smarty.foreach.bkt.last} :: {/if}{/if}
{/foreach}
Best regards
Robert

Hello

In file

design/themes/responsive/templates/index.tpl

{foreach from=$breadcrumbs item=i name="bkt"}
{if !$smarty.foreach.bkt.first}{$i.title|strip_tags}{if !$smarty.foreach.bkt.last} :: {/if}{/if}
{/foreach}
Best regards
Robert

You're a life safer,

I hope to learn more about cs-cart to offer more help like you for free :)

Hello

In file

design/themes/responsive/templates/index.tpl

{foreach from=$breadcrumbs item=i name="bkt"}
{if !$smarty.foreach.bkt.first}{$i.title|strip_tags}{if !$smarty.foreach.bkt.last} :: {/if}{/if}
{/foreach}
Best regards
Robert

Sorry i tried it but the code is not working also cleared the cache but it's not working

For your information

I want to hide the category name too from the product title!

Hello

You should take a look at the /app/controllers/frontend/products.php control and add your products.post.php controller and try to modify "breadcrumb". There is such a function "fn_add_breadcrumb" which you will find in the file /app/functions/fn.common.php.
The page title is generated from "breadcrumbs".
Best regards
Robert

You can set up page title to products (on the update product page or with the import feature). In this case auto generation from breadcrumbs will not be used

You can set up page title to products (on the update product page or with the import feature). In this case auto generation from breadcrumbs will not be used

Is there any code to show only the product name ? Instead of this tall title

Is there any code to show only the product name ? Instead of this tall title

E.g. please replace

{if $page_title}
    {$page_title}
with

{if $page_title}
{$page_title}
{elseif $runtime.controller == ‘products’ && $runtime.mode == ‘view’}
{$product.product}

E.g. please replace

{if $page_title}
    {$page_title}
with
{if $page_title}
    {$page_title}
{elseif $runtime.controller == 'products' && $runtime.mode == 'view'}
    {$product.product}

Can i have the file location to change with this code?

Can i have the file location to change with this code?

design/themes/responsive/templates/index.tpl