The problem was my parent theme was doing something a bit tricky when it came across a CPT.
// Get layout blocks
$blocks = wpex_entry_blocks();
// Loop through blocks and get template part
foreach ( $blocks as $block ) {
get_template_part( 'partials/cpt/cpt-entry-'. $block, get_post_type() );
}
The solutions was in my child theme to just avoid the above by calling the WP the_content function which allowed the EE plugin to filter it.
So I assume you have not removed the template files from the link above and simply use the single template file needed to make the above modification in your child theme, is that correct?
Viewing 2 reply threads
The support post ‘Call to undefined function espresso_pagination() in Child Theme’ 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.