guillermovargasquisoboni
Forum Replies Created
-
20 events,
all options below are not selectedI’m impressed by your tenacity. This is the ID: [email protected]
Hello Nick,
Thanks for your answer. By the moment, the list of concerts contains only 9 events. I took a picture from my google calendar to show you what the ideal should be : you can see it here.
Hello Jeremy,
That works very well !
Thank you
It doesn’t works with the follow setting:
Calendar Start : This Month
Earliest Event: 3 Years Before Start Date
Latest Event: A Year After DateHello Nick,
Sorry for the delay in answering you. The issue is not entirely resolved. The arrows are already visible, but I’m unable to navigate with them to see what happened in the past. The aim is to include an event held on 6 march 2013 that is registered on the google calendar, but the most ancient event that I can see is held on 19 november 2015. I think that playing around with configuration settings could be enough to resolve this issue… What do you think?
Forum: Plugins
In reply to: [Event Organiser] Troubles Creating a Double Loop in Own TemplateTopic resolved!
Forum: Plugins
In reply to: [Event Organiser] Troubles Creating a Double Loop in Own TemplateAnd here is the entire code for the template (if you are interested on)…
<?php /** * This template is a Front Page with two loops for events (present and future events) and one loop for posts (recent news) * The template is calling elements from the plugin event organiser (https://wp-event-organiser.com/) in a twentyfifteen child theme */ get_header(); ?> <div id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <header class="entry-header"> <h1 class="entry-title">Agenda</h1> </header><!-- .entry-header --> <div class="entry-content"> <?php $presentevents = eo_get_events(array( 'event_start_before'=>'today', 'event_end_after'=>'today', 'showpastevents'=>false,//Will be deprecated, but set it to true to play it safe. )); if( $presentevents ){ echo '<h2>', 'Eventos en curso', '</h2>'; foreach( $presentevents as $event1 ){ printf("<article><a href='%s' >%s</a> from %s to %s </article>", get_the_permalink($event1->ID), get_the_title($event1->ID), eo_get_the_start('jS F Y', $event1->ID,null,$event1->occurrence_id), eo_get_the_end('jS F Y', $event1->ID,null,$event1->occurrence_id) ); } }else{ } wp_reset_postdata(); ?> <?php $futurevents = eo_get_events(array( 'event_start_after'=>'tomorrow', 'showpastevents'=>false,//Will be deprecated, but set it to true to play it safe. )); if( $futurevents ){ echo '<h2>', 'Eventos futuros', '</h2>'; foreach( $futurevents as $event2 ){ printf("<article><a href='%s' >%s</a> from %s to %s </article>", get_the_permalink($event2->ID), get_the_title($event2->ID), eo_get_the_start('jS F Y', $event2->ID,null,$event2->occurrence_id), eo_get_the_end('jS F Y', $event2->ID,null,$event2->occurrence_id) ); } }else{ } wp_reset_postdata(); ?> <?php if ( have_posts() ) : ?> <h2>últimas noticias</h2> <?php if ( is_home() && ! is_front_page() ) : ?> <header> <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1> </header> <?php endif; ?> <?php // Start the loop. while ( have_posts() ) : the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ the_title(); // End the loop. endwhile; // If no content, include the "No posts found" template. else : endif; ?> </div><!-- .entry-content --> </main><!-- .site-main --> </div><!-- .content-area --> <?php get_footer(); ?>
Forum: Plugins
In reply to: [Event Organiser] Troubles Creating a Double Loop in Own TemplateI found the solution : I was making a very simple mistake! The arguments in the query has to be in singular.
This is the new piece of code to use in the first query :<?php $presentevents = eo_get_events(array( 'event_start_before'=>'today', 'event_end_after'=>'today', 'showpastevents'=>false,//Will be deprecated, but set it to true to play it safe. ));
and this is the one for the second query :
<?php $futurevents = eo_get_events(array( 'event_start_after'=>'tomorrow', 'showpastevents'=>false,//Will be deprecated, but set it to true to play it safe. ));
Hello Nick,
Yes, exactly. I’m afraid that this could be caused by the big distance between the past concert and the new ones (two years…).
Thanks for your answer. Here is the page…
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Bandcamp IssueMerci Jeremy ! Je dois faire un cours rapide afin d’apprendre à tester un patch sous wordpress, ce sera ma première fois.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Bandcamp IssueThis is the place:
https://www.renaudgabrielpion.org/voices-in-a-room/You will find the bandcamp embed at the very end of the post, after the bandacmp’s link…
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Bandcamp IssueI’m trying in this moment and it’s not working for me ??
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Bandcamp IssueHi Jeremy,
Here is the Bandcamp Album Page that I’m trying to insert : https://renaudgabrielpion.bandcamp.com/album/voices-in-a-room
By the moment, I’m embedding a Spotify reader, which is working perfectly, but if it’s possible, I prefer to embed the bandcamp one in this case.
I will be waiting for your news,
G.
Forum: Plugins
In reply to: [Event Organiser] Showing Venue adress in Single Eventsame question !