Title: MarcoBe's Replies | WordPress.org

---

# MarcoBe

  [  ](https://wordpress.org/support/users/marcobe/)

 *   [Profile](https://wordpress.org/support/users/marcobe/)
 *   [Topics Started](https://wordpress.org/support/users/marcobe/topics/)
 *   [Replies Created](https://wordpress.org/support/users/marcobe/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/marcobe/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/marcobe/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/marcobe/engagements/)
 *   [Favorites](https://wordpress.org/support/users/marcobe/favorites/)

 Search replies:

## Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Cloudy] Wrong animation on your website!](https://wordpress.org/support/topic/wrong-animation-on-your-website/)
 *  Thread Starter [MarcoBe](https://wordpress.org/support/users/marcobe/)
 * (@marcobe)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/wrong-animation-on-your-website/#post-6627209)
 * Thanks, it works.
    but it is a pity, the plugin is very nice and expecially for
   its animations, seriously you cannot fix your plugin scripts to make it work?
   Firefox is a very popular browser…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Get events by location id in single location](https://wordpress.org/support/topic/get-events-by-location-id-in-single-location/)
 *  Thread Starter [MarcoBe](https://wordpress.org/support/users/marcobe/)
 * (@marcobe)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/get-events-by-location-id-in-single-location/#post-6623219)
 * Nothing to do, it was just my clerical error on this post, the shortcode is correct
   and the result is “there’s no events”…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Cloudy] Wrong animation on your website!](https://wordpress.org/support/topic/wrong-animation-on-your-website/)
 *  Thread Starter [MarcoBe](https://wordpress.org/support/users/marcobe/)
 * (@marcobe)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/wrong-animation-on-your-website/#post-6627054)
 * Do you think a possibile solution is check browser type/version and disable css3
   animation?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Get events by location id in single location](https://wordpress.org/support/topic/get-events-by-location-id-in-single-location/)
 *  Thread Starter [MarcoBe](https://wordpress.org/support/users/marcobe/)
 * (@marcobe)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/get-events-by-location-id-in-single-location/#post-6623161)
 * Lastest versions of all plugins…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Get events by location id in single location](https://wordpress.org/support/topic/get-events-by-location-id-in-single-location/)
 *  Thread Starter [MarcoBe](https://wordpress.org/support/users/marcobe/)
 * (@marcobe)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/get-events-by-location-id-in-single-location/#post-6623125)
 * I tried now to add the shortcode as wrote in the documentation
    `echo do_shortcode('[
   events_list limit="3" location"56" ]#_EVENTNAME <br/>[/events_list]');` but when
   i try to add location parameter with the id of the location, it returns an empty
   list (no events for this location), insted it returns all events of all locations.
 * I want to clarify that the shortcode is into the template single location and
   i’m sure the events that i want to display have been associated with this location(
   in the example, 56 ) .
    What am I doing wrong ? It may be that there are problems
   concerning the WPML multilanguage plugin ? I still installed the Events Manager
   and WPML Compatibility plugin and so far I have not had problems with it.
 * Thanks for your help.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Get events by location id in single location](https://wordpress.org/support/topic/get-events-by-location-id-in-single-location/)
 *  Thread Starter [MarcoBe](https://wordpress.org/support/users/marcobe/)
 * (@marcobe)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/get-events-by-location-id-in-single-location/#post-6623117)
 * thanks for your reply, but i need to get it from custom query for custom formatting
   needs.
    I do not exclude that it would be possible to do it with the shortcode,
   I can give it a try, in the meantime you could post an example ?
 * this is my approach, but it doesn’t work, return empty list
 *     ```
       <ul>
       <?php
       new WP_Query( array( 'post_type' => 'event', 'showposts' => 1,
       								'meta_query' => array(
       									array(
       										'key' => '_location_id',
       										'value' => '56'
       									)
       								)
       							));
   
       					$related_evts = new WP_Query( array(
       						'post_type' => 'event',
       						'orderby'=>'event_start_date',
       						'location'=>56 // todo: non funzia il by location.
       						) );
       					while ($related_evts->have_posts()) : $related_evts->the_post(); $ID = get_the_ID();
   
       	$evts = EM_Events::get( array(
       		'scope'=>'future',
       		'post_id' => $ID,
       		'limit'=>3,
       		'format'=>'#_{D d M Y} #_NAME #_NOTES etc',
       		'orderby'=>'#_12HSTARTTIME'
       		)
       	);
   
       	foreach ($evts as $evt) : ?>
       	<a href="<?=get_the_permalink(); ?>">
       	<li>
       	<div class="image"><?php echo get_the_post_thumbnail($id, 'home-box'); ?></div>
       						<h4><? $categories = $evt->get_categories()->categories; 
   
       								foreach ($categories as $category) :
       										echo "&middot;".$category->name."&nbsp;";
       								endforeach;	?>
       						</h4>
       						<h3><?=$id_location?><?php the_title(); ?></h3>
       						<h4><?php em_events( array( 'post_id' => $ID,  'format' => '#j #F #Y #@_{j F Y}') ); ?></h4>
       	</li>
       	</a>
   
           <?php endforeach; ?>
       	<?php endwhile;
   
       	 ?>
       </ul>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slider, Gallery, and Carousel by MetaSlider - Image Slider, Video Slider] Slide Tabs in Admin](https://wordpress.org/support/topic/slide-tabs-in-admin/)
 *  [MarcoBe](https://wordpress.org/support/users/marcobe/)
 * (@marcobe)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/slide-tabs-in-admin/#post-3886132)
 * ops, thanks 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Slider, Gallery, and Carousel by MetaSlider - Image Slider, Video Slider] Slide Tabs in Admin](https://wordpress.org/support/topic/slide-tabs-in-admin/)
 *  [MarcoBe](https://wordpress.org/support/users/marcobe/)
 * (@marcobe)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/slide-tabs-in-admin/#post-3886130)
 * Hei Tom, great filter, thanks but… how i can give a name (or rename) newest slider?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Twitter Widget Pro] Instructions for Non-Tech ppl for Twitter Authorization Issue](https://wordpress.org/support/topic/instructions-for-non-tech-ppl-for-twitter-authorization-issue/)
 *  [MarcoBe](https://wordpress.org/support/users/marcobe/)
 * (@marcobe)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/instructions-for-non-tech-ppl-for-twitter-authorization-issue/#post-3531944)
 * Auth issue solved leaving not the callback URL field blank.
    Thanks!!!

Viewing 9 replies - 1 through 9 (of 9 total)