At one point when I first setup events there was a View Details button for each event on the listing page. Now the buttons are gone.
No matter what options I select in events > templates, it doesn’t make the buttons reappear. Also add/removing excerpts doesn’t seem to solve the problem.
You’ll need to remove the line of code with the do_shortcode and replace with a WordPress loop like this:
<?php if (have_posts()) :
while (have_posts()) : the_post();
espresso_get_template_part('content', 'espresso_events');
endwhile;
espresso_pagination();
else :
espresso_get_template_part('content', 'none');
endif; ?>
Then, you’ll need to add the following to your theme’s functions.php file: add_filter( 'FHEE__EED_Event_Archive__template_include__allow_custom_selected_template', '__return_true' );
Viewing 3 reply threads
The support post ‘View Details button’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.