| Web Standards Design Discuss accessibility, CSS, XHTML and more. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread |
|
|
#1 (permalink) |
|
Surpassing Dutch
Super #1
Joined in Sep 2004
Lives in Arnhem, the Netherlands
Hosted on SH98
2,384 posts
Gave thanks: 172
Thanked 40 times
|
Expression Engine problem
(Asking here, because it looks like the core users don't get any support over at the EE forums
)Garbeled output when selecting category http://www.stipvoorstip.nl/blog/index.php/category/lolcatz/ I’ve looked at several forumposts and websites, but couldn’t find out what is going wrong. This was posted by me on October 29, until today there has been no answer.
__________________
sh98
|
|
|
|
|
|
#2 (permalink) | |
|
﴾͡๏̯͡๏﴿...tweet
Super #1
Joined in Dec 2005
5,755 posts
Gave thanks: 145
Thanked 151 times
|
Quote:
this link includes your template group name and works: Code:
http://www.stipvoorstip.nl/index.php/site/category/lolcatz/
__________________
poof
|
|
|
|
|
| This user thanks Brandonnn for this great post! | Edwin (January 15th, 2008) |
|
|
#3 (permalink) |
|
﴾͡๏̯͡๏﴿...tweet
Super #1
Joined in Dec 2005
5,755 posts
Gave thanks: 145
Thanked 151 times
|
There is a website in the making for Expression Engine Tutorials and Support that can't be found elsewhere... I will make the template for it tonight and then we'll be rockin.
__________________
poof
Last edited by Brandonnn; January 15th, 2008 at 6:00 PM. |
|
|
|
| This user thanks Brandonnn for this great post! | Edwin (January 15th, 2008) |
|
|
#4 (permalink) |
|
Surpassing Dutch
Super #1
Joined in Sep 2004
Lives in Arnhem, the Netherlands
Hosted on SH98
2,384 posts
Gave thanks: 172
Thanked 40 times
|
Thank you
![]() I could have found out my self, I guess. At least here the answer came within the hour ![]()
__________________
sh98
Last edited by Edwin; January 15th, 2008 at 6:00 PM. |
|
|
|
| This user thanks Edwin for this great post! | Brandonnn (January 15th, 2008) |
|
|
#6 (permalink) |
|
Surpassing Dutch
Super #1
Joined in Sep 2004
Lives in Arnhem, the Netherlands
Hosted on SH98
2,384 posts
Gave thanks: 172
Thanked 40 times
|
Yes.. this fixed it.
The template had: Code:
{categories}
<a href="{path=site_index}">{category_name}</a>
{/categories}
Code:
{categories}
<a href="{path=/site}">{category_name}</a>
{/categories}
__________________
sh98
|
|
|
|
|
|
#7 (permalink) |
|
after g, before i
Resident.
Joined in Jul 2004
Lives in N,BC,CA
8,033 posts
Gave thanks: 48
Thanked 129 times
|
Code:
<% @categories.each do |category| %> <%= link_to category.name, :controller => :category, :id => category.name %> <% end %> Code:
<%= render :partial => 'category_link', :collection => @categories %> Code:
<%= link_to category_link.name, :controller => :category, :id => category.name %> |
|
|
|
|
|
#8 (permalink) |
|
Searcher
Surpass Staff
Joined in May 2003
Lives in Orlando
24,509 posts
Gave thanks: 936
Thanked 787 times
|
__________________
Follow Surpass on Twitter and Facebook
Check out interesting finds on the Surpass Blog .... it's coming. |
|
|
|