-
AuthorPosts
-
Jacques de Palmas Friend
Jacques de Palmas
- Join date:
- September 2014
- Posts:
- 35
- Downloads:
- 56
- Uploads:
- 3
- Thanks:
- 16
June 14, 2015 at 7:34 pm #207379Hi guys,
I have a website based on Charity template and i’m using ACM module to setup a page, in that page i have an event list and when clicking on the event title i’m supposed to be redirected to the details of this event, though on my website even though the link is correct, the page is looping back on the event list page….
I’m i missing a setup or a module ?
have a look:
http://marylistimothee.fr/index.php/ou-dormir
by clicking on any event link, you’ll be redirected to this same page (check the link..)
looking forward to your help
Cheers
Tim
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
June 15, 2015 at 10:51 am #574065Hi Tim,
Please make sure that event article (or category that event article belongs to) is assigned to a menu item.
I guess it doesn’t belong to any menu item at this moment.
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
June 15, 2015 at 10:51 am #739079Hi Tim,
Please make sure that event article (or category that event article belongs to) is assigned to a menu item.
I guess it doesn’t belong to any menu item at this moment.
Jacques de Palmas FriendJacques de Palmas
- Join date:
- September 2014
- Posts:
- 35
- Downloads:
- 56
- Uploads:
- 3
- Thanks:
- 16
June 15, 2015 at 11:47 am #574075Thank you Saguaros for your answer, but the category and event article are both assigned to the menu.
– By trying to create a “single Article” displayed on a new menu
– selecting a basic joomla article (getting started) it doesn’t display a thing
– i’ve then changed the template style from “event” to “default”
– it all came back
– my problem is that on “event” style there is no “auto – message” and “auto – component” in the layout and it doesn’t display the article or event articlehow does it work on the charity website but not on mine?
is it a a module or plugin that does the job ?Thanks
Tim
Jacques de Palmas FriendJacques de Palmas
- Join date:
- September 2014
- Posts:
- 35
- Downloads:
- 56
- Uploads:
- 3
- Thanks:
- 16
June 15, 2015 at 11:47 am #640414Thank you Saguaros for your answer, but the category and event article are both assigned to the menu.
– By trying to create a “single Article” displayed on a new menu
– selecting a basic joomla article (getting started) it doesn’t display a thing
– i’ve then changed the template style from “event” to “default”
– it all came back
– my problem is that on “event” style there is no “auto – message” and “auto – component” in the layout and it doesn’t display the article or event articlehow does it work on the charity website but not on mine?
is it a a module or plugin that does the job ?Thanks
Tim
Jacques de Palmas FriendJacques de Palmas
- Join date:
- September 2014
- Posts:
- 35
- Downloads:
- 56
- Uploads:
- 3
- Thanks:
- 16
June 15, 2015 at 11:47 am #739089Thank you Saguaros for your answer, but the category and event article are both assigned to the menu.
– By trying to create a “single Article” displayed on a new menu
– selecting a basic joomla article (getting started) it doesn’t display a thing
– i’ve then changed the template style from “event” to “default”
– it all came back
– my problem is that on “event” style there is no “auto – message” and “auto – component” in the layout and it doesn’t display the article or event articlehow does it work on the charity website but not on mine?
is it a a module or plugin that does the job ?Thanks
Tim
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
June 16, 2015 at 2:34 am #574147Hi Tim,
This template provides different layouts and each layout will load different blocks.
For ‘event’ layout, it loads a block called ‘mainbody-event.php’ in folder: root/templates/ja_charity/tpls/blocks/. This block is created for event layout specific and it doesn’t include component or message block. However, you can include ‘message/component’ block into this event layout by opening ‘mainbody-event.php’ file and add this code:
<?php if($this->hasMessage()) : ?>
<jdoc:include type="message" />
<?php endif ?>
<jdoc:include type="component" />
you can check other blocks and see how these ‘message/component’ blocks are included.
1 user says Thank You to Saguaros for this useful post
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
June 16, 2015 at 2:34 am #640486Hi Tim,
This template provides different layouts and each layout will load different blocks.
For ‘event’ layout, it loads a block called ‘mainbody-event.php’ in folder: root/templates/ja_charity/tpls/blocks/. This block is created for event layout specific and it doesn’t include component or message block. However, you can include ‘message/component’ block into this event layout by opening ‘mainbody-event.php’ file and add this code:
<?php if($this->hasMessage()) : ?>
<jdoc:include type="message" />
<?php endif ?>
<jdoc:include type="component" />
you can check other blocks and see how these ‘message/component’ blocks are included.
1 user says Thank You to Saguaros for this useful post
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
June 16, 2015 at 2:34 am #739161Hi Tim,
This template provides different layouts and each layout will load different blocks.
For ‘event’ layout, it loads a block called ‘mainbody-event.php’ in folder: root/templates/ja_charity/tpls/blocks/. This block is created for event layout specific and it doesn’t include component or message block. However, you can include ‘message/component’ block into this event layout by opening ‘mainbody-event.php’ file and add this code:
<?php if($this->hasMessage()) : ?>
<jdoc:include type="message" />
<?php endif ?>
<jdoc:include type="component" />
you can check other blocks and see how these ‘message/component’ blocks are included.
1 user says Thank You to Saguaros for this useful post
Jacques de Palmas FriendJacques de Palmas
- Join date:
- September 2014
- Posts:
- 35
- Downloads:
- 56
- Uploads:
- 3
- Thanks:
- 16
June 16, 2015 at 6:21 pm #574278Cheers mate,
That works.
Thank you for your help
Tim
Jacques de Palmas FriendJacques de Palmas
- Join date:
- September 2014
- Posts:
- 35
- Downloads:
- 56
- Uploads:
- 3
- Thanks:
- 16
June 16, 2015 at 6:21 pm #640617Cheers mate,
That works.
Thank you for your help
Tim
Jacques de Palmas FriendJacques de Palmas
- Join date:
- September 2014
- Posts:
- 35
- Downloads:
- 56
- Uploads:
- 3
- Thanks:
- 16
June 16, 2015 at 6:21 pm #739287Cheers mate,
That works.
Thank you for your help
Tim
-
AuthorPosts
This topic contains 12 replies, has 2 voices, and was last updated by Jacques de Palmas 9 years, 5 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum