I am able to show the Event List page with a full page view, however, when I click on a category from the drop down menu, I cannot view the sub pages in full page mode. It shows up as an archive page with the search bars and recent posts on the left hand side.
Since you’re using the twentytwelve theme it’s a fairly straightforward solution. You add this function to a custom snippet plugin or create a child theme and add the function to the child theme’s functions.php file.
add_filter( 'body_class','twentytwelvechild_width_archives', 20 );
function twentytwelvechild_width_archives( $classes ) {
if ( is_archive() )
$classes[] = 'full-width';
return $classes;
}
Viewing 2 reply threads
The support post ‘How to Show Events List in Full Page View’ 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.