Those latest updates cleared up the problem with the icon grid box element just fine
Still is always defaulting to the standard editor and not the page builder on any given page. Is it supposed to remember what it last used? Would be great if it did. I prefer the page builder for “pages” but would rather have the standard editor on posts so I don’t want to force it to be active everywhere.
Yes I do use a child theme but not for any overriding of core functionality, just the addition of a page template
<?php
/**
* Template Name: Recent eNewsletter post redirect
*/
$cat_id = 999; //eNewsletter category
$latest_cat_post = new WP_Query( array('posts_per_page' => 1, 'category__in' => array($cat_id)));
if( $latest_cat_post->have_posts() ) :
while( $latest_cat_post->have_posts() ) :
$latest_cat_post->the_post();
wp_redirect(get_permalink( ));
exit;
endwhile;
endif;
?>