0
votes
1answer
33 views

Order posts of a custom post type by the event date using FT Calendar Plugin

I am using the FT Calendar Plugin. My question is how can I order posts of a custom post type by the event calendar date? So for instance I have a CPT named "Events" and for each event post a ...
0
votes
0answers
88 views

Events Manager plugin breaks Custom Post Types [closed]

I have Custom Post Types hard coded in my theme code which where working fine before I installed the plugin. Now I get 404 pages when I try to access them. Strangely, the taxonomy archives still work. ...
0
votes
1answer
61 views

Listing future posts together with normal posts

In my blog I'm displaying lists of posts from every category I have in the homepage. I have a column for each category. The code is this: <?php $categories = array('3', '4', '5'); foreach ...
0
votes
1answer
171 views

Empty meta-box returns publishdate if no value is set?

I have no idea why this would/could happen. I have a custom metabox for an "event_end_date" set for a custom-post-type. If I leave this field blank it always puts out the publish-date of the post ...
2
votes
0answers
124 views

Custom Post Type Events Archive Grouped By Month

I'm currently trying to get my events listing code to print out headers by Month. So basically this: October event event September event event etc... Right now it just keeps echoing ...
0
votes
2answers
376 views

Event Archive by Month

I'm creating an events site for a theatre in wordpress - at the moment I have set up a custom post type for Events and am using a custom field 'event_date' (which formats to YYYY-MM-DD) to order the ...
2
votes
2answers
193 views

Plugin allowing for artists, events and venues

I'm working on a music festival website and up until now have used WordTour. I really like WordTour's artists > events > venues content hierarchy, but am having difficulties transitioning from last ...
5
votes
2answers
702 views

How to set a custom post type to have viewable future posts

I've setup a CPT to act the same ways as posts but used to post event details. Thing is that some of the posts are in the future and such have a future date set on them. Problem is that normal users ...
4
votes
3answers
508 views

Best way to create list of gigs for Wordpress theme?

I'm currently designing a musician's wordpress theme, and am looking to create a user-controlled dynamic gig list. It doesn't have to have a link to any event pages, just a simple "where, when, with ...
0
votes
2answers
483 views

how to compare different timestamps in wp-query for events custom post types?

I have a custom post type with custom metaboxes (as seen on wptheming.com) and would like to make a query to show upcoming events, say in the sidebar, where past dates are left out. But I need a ...
0
votes
1answer
167 views

Creating an Events Feed with Sub Pages/Posts for Each Event

I am currently working on creating an events section for a website. My original plan was to create a custom post type for Events and create a new post for each event. Then I would query the top five ...
0
votes
1answer
474 views

Yelp-style geographic directory plugin?

The project I'm working on discusses local farming/agriculture/etc. initiatives and I'm ultimately wanting to create a directory with the following features: Separation between: Urban farms ...
0
votes
1answer
861 views

Unable to sort wp_query by date/time with multiple meta_key s

4th EDIT 11/17/2011 I spoke too soon. Now I have all the posts showing up but the total events does not seperate the events by day after I moved the endif; and endwhile; I posted the modified code ...
0
votes
1answer
240 views

Count of posts with meta_key filled in?

Working on upcoming events list that returns posts fine in a custom query. In the custom post type 'event' there are multiple events within a date range. I want to display all upcoming events in ...
1
vote
1answer
231 views

Display upcoming Events for next 7 Days

I saw a request for a simple 7 day event calendar that always starts with today. I have a custom meta box called opening-time that gets a YYYY-MM-DD input. For now this is what I have, and its not ...
0
votes
1answer
333 views

Save metadata as a timestamp, display as a “pretty” date

I have a custom meta box, its just a straight-up text field, for an event date, formatted: YYYY/MM/DD ...I'd like to save that as a date stamp (so i can sort by event date), and display just the ...
0
votes
1answer
253 views

How do I list the next 7 days and any events (cpt) contained in those days

I need to list the next seven days no matter what day it is. If its monday, it starts with today and lists 7 days, if its friday it starts with today and lists 7 days from today. Next I need to show ...
-1
votes
2answers
523 views

Custom Post Type 'Event': Chronological list of recurring events from meta_values in array

i have a custom post type 'events'. Each event (post) can have multiple dates. The dates (date, time, location) are stored as array. I need a query that creates a chronological list of all events from ...
2
votes
1answer
963 views

Custom Post Type “Event”: chronological list of recurring events

i'm looking for a good and easy way to have a custom post type "event" that can have multiple dates. (I have tested about 20 plugins). I think i have no problem building a metabox allowing the user to ...
1
vote
1answer
2k views

sort events based on event date custom field

I'm trying to list events (custom posttype 'kurs') by event date, which are stored as custom fields ('dato'). My loop so far looks like this: <ul> <?php $loop = new WP_Query( array( ...
2
votes
1answer
2k views

Loading Custom Post Type Events into jQuery-based FullCalendar?

Here is a question I have spent over 3 hours attempting to solve but each approach I take ends up not working out for me. All I am attempting to do is utilize this opensource ajax calendar script: ...