Page 1 of 1

Embed Calendar Template into News Template

Posted: Mon Jun 23, 2014 6:43 pm
by cpansewicz
Hi,

Is is possible to add a Calendar into a News Module template?

Adding the below line of content into a News template "doesn't work".
{cms_module module='CGCalendar' display='upcominglist' upcominglisttemplate='upcominglist' category='general'}

I did try:
{capture}{cms_module module='CGCalendar' display='upcominglist' upcominglisttemplate='upcominglist' category='general'}{/capture}

But that didn't work either. I read about this somewhere before, but couldn't find the post in the forum.

Thanks for any advice!

Re: Embed Calendar Template into News Template

Posted: Mon Jun 23, 2014 8:54 pm
by psy
Make certain that the News variable and the CGCalendar variable are different, eg not both $item.

If they are, change the News $item to something else before calling the calendar.

SOLVED: Embed Calendar Template into News Template

Posted: Mon Jun 23, 2014 11:45 pm
by cpansewicz
Hi, Thank you for that reply. I don't think I explained my issue correctly, and then in the meantime, I figured out the solution.

When I put the following line of code into my news template:

{cms_module module="CGCalendar" display="upcominglist" upcominglisttemplate="upcoming" category="{$entry->extra}"}

I needed to change the quotes to double quotes, and then the news module would call in the calendar module.

Thank you for your time.