Moderator’s note: Moved to Plugins: Tech Support.
I know I posted help on this before but did not make things clear.
Here is how I enter dates into my custom extra date field within an event. Just want to show all custom dates for that event only.
custom field: events-extra-dates (note not all the same times)
6/26/2008 08:00 PM 6/27/2008 08:00 PM 6/28/2008 08:00 PM 7/1/2008 08:00 PM 7/2/2008 06:00 PM 7/3/2008 08:00 PM 7/4/2008 08:00 PM 7/5/2008 03:00 PM 7/5/2008 08:00 PM 7/12/2008 03:00 PM 7/12/2008 08:00 PM 7/16/2008 04:00 PM 7/17/2008 08:00 PM
Then this is what I have in my template, I have no exclude dates. Any help?
{exp:weblog:entries weblog="events" limit="1" show_future_entries="yes"}
<h1>{title}</h1>
<h2>Coming occurrences of this event:</h2>
<ul>{exp:repeet:list_dates from="00:00" to="5 years" entry_date="{entry_date format="%Y-%m-%d %H:%i"}" expiration_date="{expiration_date format="%Y-%m-%d %H:%i"}" max_list="25" interval="daily"}
{repeet:include_dates}{events-extra-dates}{/repeet:include_dates}
{repeet:exclude_dates}{exclude_dates}{/repeet:exclude_dates}
{repeet:display}{events-extra-dates}
{/repeet:display}
{/exp:repeet:list_dates}
{/exp:weblog:entries}
Ive never used the repeet plug-in before, but by looking at your code you need to close your unordered list tag
<ul></ul>
and you need to add some list items for what ever data you need to display in between your unordered list:
<ul>
<li>{repeet:include_dates}{events-extra-dates}{/repeet:include_dates} {repeet:exclude_dates}{exclude_dates}{/repeet:exclude_dates}{repeet:display}{events-extra-dates}
{/repeet:display}</li>
</ul>
Something like that. Not 100% sure how this plug-in works.
Greetings,
After studying the documentation for listing dates for Repeet, It appears to me the format of the ‘from=’ parameter may be incorrect. I believe it should be in YYYY-MM-DD format. Have you tried 2008-01-01? That may be the ticket =P
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.