Events Page and display EVENTLIST

52 views
Skip to first unread message

314 Group

unread,
Jun 15, 2011, 2:04:15 PM6/15/11
to event...@googlegroups.com
Hello,

the plugin works fine exept that I Don't see the event page.
could you tell me how output event list ? (wordpress)

Thx

Kunal Bhalla

unread,
Jun 15, 2011, 2:12:42 PM6/15/11
to event...@googlegroups.com
Isn't there a list at <site>/events? Try updating your permalinks once
(just update, no need to change the links) and visit the link.

Kunal

314 Group

unread,
Jun 16, 2011, 6:54:33 AM6/16/11
to event...@googlegroups.com
Hello Kunal, thx for the answer, 
I've just update the permalinks and try /events. no way.

However, <site>?ep_event=titleofmyevent works.

There is anyway to output the eventlist by a simple loop (using php in a page for example) ?

Thx

Kunal Bhalla

unread,
Jun 16, 2011, 7:14:36 AM6/16/11
to event...@googlegroups.com
You can add in a query_posts( Array( 'post_type' => 'ep_event' ) )
before the loop I guess.
Kunal

314 Group

unread,
Jun 22, 2011, 5:37:38 AM6/22/11
to eventpress
Thx for the answer,

finally, i'm using tags to output my event list. <site>?event_tag=next-
shows
(Apparently, eventpress uses archive template to output datas when
filtering by event_tag.)

I'm trying to design the eventlist page (http://jammintroopers.be/
indexx.php?event_tag=next-shows)

Here a sample code:
<h2 class="entry-title"><a href="">Couleur Café 2011</a></h2>
<div class="entry-content">

<a class="entry-thumb"><img class="attachment-200x200 wp-post-image" /
></a>
<p>DATE, TIME, VENUE . DESCRIPTION</p>

</div>


I just want to split output infos in <p> like <p class="date">DATE,
TIME</p><p class="description">DESCRIPTION</p>

Could you tell me where I can modify that template.

Thank you !!!

Kunal Bhalla

unread,
Jun 22, 2011, 12:47:22 PM6/22/11
to event...@googlegroups.com
Have a look at ep/themes/wp/event-details.php

Kunal

314 Group

unread,
Jun 23, 2011, 5:50:36 AM6/23/11
to eventpress
Hello,

Thx for your answer but i'm asking again:

Where can I modify the EVENT LIST template ?
I've already try to modify events.php, loop-events.php, page-events-
list.php and single-event.php.

try this url to understand what I'm talking about :
http://jammintroopers.be/indexx.php?event_tag=next-shows

Thank you

Kunal Bhalla

unread,
Jun 23, 2011, 6:25:45 AM6/23/11
to event...@googlegroups.com
There is no custom template for tag archives as such. The default
archives template of your theme gets used.

The details that are displayed are picked up from a template-part
which is event-details.php which is the single file used to render the
event meta data across templates.

The link you've given (even with indexx corrected to index) is giving a 404.

Kunal

314 Group

unread,
Jun 27, 2011, 7:48:51 AM6/27/11
to eventpress
Hello Kunal.

Thank you for your answer.

Could you tell me how do I output datas ordering by DATE ?

Kunal Bhalla

unread,
Jun 27, 2011, 7:58:09 AM6/27/11
to event...@googlegroups.com
You can add a query_posts to sort by the _ep_start meta key for posts.
Something like
query_posts( Array( 'post_type' => 'ep_event', 'orderby' =>
'meta_value', 'meta_key' => '_ep_start' ) ) should do it.
Reply all
Reply to author
Forward
0 new messages