I’ve searched and found a fix for a common issue using an additional wp_reset_query() in the blog shortcode.
I understand Swift does not support 3rd party plugins. However, the PageBuilder shortcodes are bundled into Supreme. I have no purchase code for the PageBuilder developer, http://support.wpbakery.com/, so I have no way to register and reach out to PageBuilder with a patch.
The patch is simple. Here’s a git patch
--- a/wp-content/themes/supreme/includes/page-builder/composer/lib/shortcodes/blog.php
+++ b/wp-content/themes/supreme/includes/page-builder/composer/lib/shortcodes/blog.php
@@ -30,7 +30,7 @@ class WPBakeryShortCode_blog extends WPBakeryShortCode {
// BLOG QUERY SETUP
global $post, $wp_query;
-
+ wp_reset_query();
if ( get_query_var('paged') ) {
$paged = get_query_var('paged');
} elseif ( get_query_var('page') ) {
@@ -380,4 +380,4 @@ WPBMap::map( 'blog', array(
)
) );
Please advise on how I can get this fix into PageBuilder so it doesn’t come back when I update the theme.