Assign “The Events Calendar” to Subpage

Here’s a basic page template for displaying an events calendar in grid form based on the grid template bundled with the plugin. Edit as necessary to match the styling and layout of your theme: <?php /** * Template Name: Event Gridview **/ global $spEvents; $spEvents->loadDomainStylesScripts(); get_header(); query_posts(‘post_type=post&category_name=Events&posts_per_page=-1′); ?> <div id=”tec-content” class=”grid”> <div id=’tec-events-calendar-header’ class=”clearfix”> <h2 … Read more

Event booking form for wordpress

That’s quite a specific criteria- there are numerous event management plug-ins out there with bookings built in, but none will provide exactly what you are after. In general they will all have some form of date-picker (usually jQuery datepicker) – that’s because in general people will want to manually select dates. My suggestion is to … Read more

WP booking system plugin? [closed]

Take a look at WP Event Ticketing plugin which main features include: Collect payments via paypal. Set total attendance limit. Multiple ticket types. For example, ticket type A includes a t-shirt while ticket type B does not. Custom ticket options. This allows you to decide what information you want ticket purchasers to provide. For example, … Read more

All in One Calendar Plugin Custom Post Type Query [closed]

Ok so hope this helps someone. Unless you want to query the database directly, the trick is to include the following: $event = Ai1ec_Events_Helper::get_event($post->ID); thereafter you can retrieve the variables, for example: <?php query_posts(‘post_type=ai1ec_event’);?> <?php while ( have_posts() ) : the_post(); ?> <?php $event = Ai1ec_Events_Helper::get_event($post->ID); ?> <?php echo ‘<h5><a href=”‘.get_permalink().'”>’.get_the_title().'</a></h5>’; ?> <?php if( $event->multiday … Read more

Save event change in WP Fullcalendar: editable + draggable

I do agree with @vancoder’s advice on editing plugins. That being said, I think you might need to do two things: Edit the JavaScript to use the eventDrop callback. https://fullcalendar.io/docs/eventDrop When the callback is fired, is there currently a method to update an event? I see in their documentation that you can allow users to … Read more