Page 1 of 1

news urls wrong

Posted: Tue Oct 30, 2018 9:23 pm
by master3395
The templates are set up exactly the same, just with a different look.
But the category id of the news, is wrong, on the /design.
It shows up with a totally different category ID, that doesn't exist.
Skjermbilde.PNG

Re: news urls wrong

Posted: Thu Nov 01, 2018 9:43 pm
by velden
Seems somewhere the News module is told it should use the detailpage with id=77 for those links. But the page with that id doesn't exist (anymore) or might be disabled.

So check:

- Site Admin > Settings - News modile > Options > Default page for details views (consider setting it, test, and unset it)
- The {News .... detailpage=... } tag
- Using {cms_module_hint} somewhere?

Re: news urls wrong

Posted: Thu Nov 01, 2018 11:00 pm
by master3395
1. Detail page tag seems to be missing i believe.
2 No hints.

BUT if i put my categories up, i can enter the category, and then click the article.

This is my home template:

Code: Select all

{extends file='cms_template:bandb_master'}

{block name="content-2"}
<div id="news-feed" class="column row">
  {News pagelimit=3 detailpage='news' summarytemplate='bandb_news_summary'}
</div>
{/block}
velden wrote:Seems somewhere the News module is told it should use the detailpage with id=77 for those links. But the page with that id doesn't exist (anymore) or might be disabled.

So check:

- Site Admin > Settings - News modile > Options > Default page for details views (consider setting it, test, and unset it)
- The {News .... detailpage=... } tag
- Using {cms_module_hint} somewhere?

Re: news urls wrong

Posted: Thu Nov 01, 2018 11:05 pm
by master3395
Seems like the only thing i missed was changing "detailpage='news'" into "design"

Re: news urls wrong

Posted: Fri Nov 09, 2018 11:38 pm
by master3395
[Solved]