Kyle204
Forum Replies Created
-
Found the answer clearly stated in the FAQ of the Plugin:
If you want a list of pages or custom post types to display in that defined order, you must change the post query’s orderby parameter to menu_order (if it’s not already).
Can anyone reply to this post I’m having the same issue… Is there a way to make it reflect in the front end?
Forum: Reviews
In reply to: [Event Organiser] BEST BEST BEST!!! AMAZING, FLAWLESS, WELL DOCUMENTEDBrilliant! It works Like a charm.
Thank for all your terrific support! There may be a couple bugs to work out in the next couple day, but so far this looks great!
The site is currently populating through DNS but it will be up here soon: https://www.safetyservicesmanitoba.ca
Forum: Reviews
In reply to: [Event Organiser] BEST BEST BEST!!! AMAZING, FLAWLESS, WELL DOCUMENTEDHello Stephen,
We are about to go live with the site that we used your plugin within.
I hope you find the donation enough to help with your tea addiction ??
I do have one last issue I can’t seem to resolve, hopefully easy for you to address. On the home page I have a list of events that I want to show every event including reoccurring events. However the reoccurring events don’t delete after the current date. I see there is a setting to remove past dates however when it is part of a reoccurring date is doesn’t delete. Is there a way to change that and or at least remove it from a post query in the $arg?
Here is my current Code:
<?php $args = array( 'post_type' => 'event', 'posts_per_page' => '5' ); query_posts($args); ?> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <div class="cal-entry"> <span class="view"><a href="<?php the_permalink();?>" class="arrow"> <span class="title"><?php echo limit_words(get_the_title(), '4'); ?></span><br /> <span class="date"> <?php $allday = eo_is_all_day( $post->ID );?> <?php echo eo_get_the_start('jS M Y'); ?> <?php echo '| '. eo_get_the_start('g:i a').' ‐ '.eo_get_the_end('g:i a'); ?> </span> </a></span> </div> <?php endwhile; endif; ?> <?php wp_reset_query(); ?>
should i use something like:
'orderby' => 'meta_value', 'order' => 'ACS', 'meta_query' => array( array( 'key' => '_eventorganiser_event_schedule', 'value' => '', 'compare' => 'LIKE' ) )
Please help with what you can ?? Thanks!
Forum: Reviews
In reply to: [Event Organiser] BEST BEST BEST!!! AMAZING, FLAWLESS, WELL DOCUMENTEDGreat help everything is running like a top!! Thank you for the wonderful support!
One last thing I’m curious about is the agenda view widget. The arrows and month changing doesn’t seem to be working correctly. is that a known issue or is that just a script conflict on my end?
Thanks!
Forum: Reviews
In reply to: [Event Organiser] BEST BEST BEST!!! AMAZING, FLAWLESS, WELL DOCUMENTEDOne last question…
I’ve got a list of the events on my home page pulling from
'post_type' => 'event'
. but all repeated events give the same start date when Iecho eo_get_schedule_start('jS M Y');
how can I make them echo there actual individual start dates? something like$days = eo_get_event_schedule( $post->ID ); echo $days->schedule_start;
I’m waiting for refunds from the other cals i paid for and all that money is coming your way for sure!
Forum: Reviews
In reply to: [Event Organiser] BEST BEST BEST!!! AMAZING, FLAWLESS, WELL DOCUMENTEDUnless I should be using the venue functions?…
There are some code functions that include examples, those are fantastic! I’m not superb with code and the examples really help Thanks!!
Forum: Reviews
In reply to: [Event Organiser] BEST BEST BEST!!! AMAZING, FLAWLESS, WELL DOCUMENTEDVery Cool Thanks for the update.
Would you also be entering an element to insert the google map as well?
Is there a call in place already to do something like:<?php if (isset($eo_venue_map)) { echo $eo_venue_map} else { echo 'No Location';}?>
Forum: Reviews
In reply to: [Event Organiser] BEST BEST BEST!!! AMAZING, FLAWLESS, WELL DOCUMENTEDFor those thinking there is no full calendar view there is!
<?php echo do_shortcode('[eo_fullcalendar]'); ?>
Forum: Requests and Feedback
In reply to: New feed_fetch() funtion refresh rate too longForum: Requests and Feedback
In reply to: New feed_fetch() funtion refresh rate too longI’m looking for the same answer you are…
Have you found a solution to shortening the refresh time?