<?php echo do_shortcode('[event_embed limit="5" category="110" ]'); ?>
Limit function is not working? Also, tried to implement template=”embed-events-template” and replicated modified template into my child theme – but it isn’t found (or used that is). So I was reduced to editing the plug-in template itself.
Which I modified to get a link working…
<div class="eventrocket embedded-event post">
<div class="post-thumb"> <?php tribe_event_featured_image() ?> </div>
<h3><a href="<?php tribe_event_link($post) ?>"><?php the_title() ?></a></h3>
<div class="schedule"> <?php echo tribe_events_event_schedule_details() ?> </div>
<div class="summary"> <?php the_excerpt() ?> </div>
<hr />
</div>
But I don’t really want to edit the event rocket default template…. is there something I need to do special to get the child theme template to be recognized?