Author Topic: modifying {clickstream}  (Read 5027 times)

0 Members and 1 Guest are viewing this topic.

Offline Praetor

  • Pre-Newbie
  • Posts: 6
    • View Profile
modifying {clickstream}
« on: January 09, 2007, 11:59:05 PM »
Hello, I would like to know how to modify the {clickstream}

for example, right now, it shows:

Home / Category / Sub-category / Sub-category / Image Name

But I would like to change it so that it displays:

Category / Sub-Category / Sub-Category

to summarize I'd like to remove "Home" link in clickstream. How can I do that?

thanks in advance

Offline Acidgod

  • 4images Moderator
  • 4images Guru
  • *****
  • Posts: 2.421
  • It's me?
    • View Profile
    • Flash-Webdesign
Re: modifying {clickstream}
« Reply #1 on: January 10, 2007, 06:19:33 PM »
search in all flies
$clickstream = "<span class=\"clickstream\"><a href=\"".$site_sess->url(ROOT_PATH."index.php")."\" class=\"clickstream\">".$lang['home']."</a>".$config['category_separator'];

replace with
//$clickstream = "<span class=\"clickstream\"><a href=\"".$site_sess->url(ROOT_PATH."index.php")."\" class=\"clickstream\">".$lang['home']."</a>".$config['category_separator'];

and search in all files and remove it...
"<span class=\"clickstream\"><a href=\"".$site_sess->url(ROOT_PATH."index.php")."\" class=\"clickstream\">".$lang['home']."</a>".

try this...

Offline Praetor

  • Pre-Newbie
  • Posts: 6
    • View Profile
Re: modifying {clickstream}
« Reply #2 on: January 10, 2007, 06:38:51 PM »
WoW! It really worked. Thx!

Offline Lesik

  • Newbie
  • *
  • Posts: 38
    • View Profile
Re: modifying {clickstream}
« Reply #3 on: January 30, 2007, 02:12:36 PM »
search in all flies
$clickstream = "<span class=\"clickstream\"><a href=\"".$site_sess->url(ROOT_PATH."index.php")."\" class=\"clickstream\">".$lang['home']."</a>".$config['category_separator'];
replace with
//$clickstream = "<span class=\"clickstream\"><a href=\"".$site_sess->url(ROOT_PATH."index.php")."\" class=\"clickstream\">".$lang['home']."</a>".$config['category_separator'];
and search in all files and remove it...
"<span class=\"clickstream\"><a href=\"".$site_sess->url(ROOT_PATH."index.php")."\" class=\"clickstream\">".$lang['home']."</a>".
try this...

This not the most light way.  :D

Better in adjustment put:  &nbsp; / &nbsp;



Offline Acidgod

  • 4images Moderator
  • 4images Guru
  • *****
  • Posts: 2.421
  • It's me?
    • View Profile
    • Flash-Webdesign
Re: modifying {clickstream}
« Reply #4 on: January 30, 2007, 03:10:47 PM »
???  8O

Please read the first Post in this Thread...