Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [Andy] Breadcrumb home link to point to home page instead to default location in version 3.3.0

Quote Reply
Re: [Andy] Breadcrumb home link to point to home page instead to default location in version 3.3.0 In reply to
It didn't work.

I created new template global called rewrite_breadcrumb ->

sub {
my $breadcrumb = $_[0];
my $home_url = "http://www.my-website.com/pages/";
my $new_url = "http://www.my-website.com/";
$breadcrumb =~ s/\Q"$home_url\"/"$new_url"/;
return \$breadcrumb;
}

then I replaced <%title_linked%> with <%rewrite_breadcrumb($title_linked)%> in the template ->

<table width="101%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="middle"><font face=Arial color="#000099"><b><strong class="title"> </strong></b></font> <font face=Arial><b><strong class="title"> <font color="#000099"> &nbsp;
<%rewrite_breadcrumb($title_linked)%>
</font></strong></b></font>
<!-- Subcategories-->
<%if category%>
<font size="5">&nbsp; </font> </td>
</tr>
</table>

After running "Build All" instead of a breadcrumb on the pages I get this -> REF(0x8a1b924)




Z
Subject Author Views Date
Thread Breadcrumb home link to point to home page instead to default location in version 3.3.0 Z 8277 Sep 10, 2011, 10:55 AM
Thread Re: [Z] Breadcrumb home link to point to home page instead to default location in version 3.3.0
Andy 8031 Sep 11, 2011, 8:19 AM
Thread Re: [Andy] Breadcrumb home link to point to home page instead to default location in version 3.3.0
Z 8029 Sep 11, 2011, 9:15 AM
Thread Re: [Z] Breadcrumb home link to point to home page instead to default location in version 3.3.0
Andy 8045 Sep 12, 2011, 12:29 AM
Thread Re: [Andy] Breadcrumb home link to point to home page instead to default location in version 3.3.0
Z 8030 Sep 12, 2011, 7:49 AM
Thread Re: [Z] Breadcrumb home link to point to home page instead to default location in version 3.3.0
Andy 8096 Sep 12, 2011, 7:51 AM
Thread Re: [Andy] Breadcrumb home link to point to home page instead to default location in version 3.3.0
Z 8026 Sep 12, 2011, 5:09 PM
Post Re: [Z] Breadcrumb home link to point to home page instead to default location in version 3.3.0
Z 7989 Sep 12, 2011, 6:37 PM
Thread Re: [Z] Breadcrumb home link to point to home page instead to default location in version 3.3.0
Andy 8013 Sep 13, 2011, 12:22 AM
Post Re: [Andy] Breadcrumb home link to point to home page instead to default location in version 3.3.0
Z 8014 Sep 13, 2011, 7:48 AM