Breadcrumbs Separator Won't Change

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Thu Aug 08, 2013 12:32 pm
Reply with quote
Report this post
Hi, I have been trying to change the '/' to '>' and I read that you can do that in the breadcrumbs module. However I did change that and it still does not work.

I have tried to look at it in the html/ modules directory for breadcrumbs but I cannot see anything in there that is controlling it (as I am not a PHP coder).

Can someone please help with this? Thanks.
User avatar
Gold Boarder

GK User
Sat Aug 10, 2013 10:36 am
Reply with quote
Report this post
Hi,
Check here: template/gk_shop_and_buy\html\mod_breadcrumbs\default.php
In the meantime I will check it.
User avatar
Platinum Boarder

GK User
Sat Aug 10, 2013 10:44 am
Reply with quote
Report this post
ok, I have it.

In template we override default separator
Code: Select all
if($i < $count -2) echo ' <li class="pathway separator">/</li> ';
      } else if ($params->get('showLast', 1)) { // when $i == $count -1 and 'showLast' is true
         if($i > 0) echo ' <li class="pathway separator">/</li> ';


Now you have two options:
1) Delete or rename folder template/gk_shop_and_buy\html\mod_breadcrumbs
2) Change separator in our file from "/" to another, for example from: http://www.utexas.edu/learn/html/spchar.html

Code: Select all
<li class="pathway separator">...here....</li>
2x times
User avatar
Platinum Boarder

GK User
Sun Aug 11, 2013 6:52 pm
Reply with quote
Report this post
Thanks for this. I will give it a shot.
User avatar
Gold Boarder

GK User
Tue Aug 13, 2013 8:52 pm
Reply with quote
Report this post
I suppose that my solution worked for you.
If you have chosen option with modify our override remember about this small change in next template update. Make a copy of this file in case of....
User avatar
Platinum Boarder


cron