Frysteen
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Forum: Plugins
In reply to: [Custom Breakpoints for Elementor] Cannot add breakouts at allScreenshot: https://snipboard.io/ecJoTm.jpg
I have Enable jQuery Migrate Helper active on all my sites to double check everything as I go.
Some sites still had issues with WP Bakery 6.3.
Disabling and then re-enabling Yoast 14.8 fixed the issue for me.
5 Second Google Maps plugin also makes WPBaker fail on the backend (not front end) but all works fine with Enable jQuery Migrate Helper installed.
Forum: Plugins
In reply to: [WooCommerce] [products ids="1, 2, 3, 4, 5"] short code order by given ids .I created a work around…. I hope this helps others too…
The important part is: ‘orderby’ => ‘post__in’,$category_products = array(--put array of ID's in here--); // $args = array( 'post_type' => 'product', 'post__in' => $category_products, 'orderby' => 'post__in', 'posts_per_page' => -1 ); $loop = new WP_Query( $args ); if ( $loop->have_posts() ) { while ( $loop->have_posts() ) : $loop->the_post(); wc_get_template_part( 'content', 'product' ); endwhile; } else { echo __( 'No products found' ); } wp_reset_postdata();Forum: Plugins
In reply to: [WooCommerce] Actual order by in WooCommerce shortcodeI found a work around…. I hope this helps others too…
the important part is: ‘orderby’ => ‘post__in’,
$category_products = array(--put array of ID's in here--); // $args = array( 'post_type' => 'product', 'post__in' => $category_products, 'orderby' => 'post__in', 'posts_per_page' => -1 ); $loop = new WP_Query( $args ); if ( $loop->have_posts() ) { while ( $loop->have_posts() ) : $loop->the_post(); wc_get_template_part( 'content', 'product' ); endwhile; } else { echo __( 'No products found' ); } wp_reset_postdata();Forum: Plugins
In reply to: [WooCommerce] Actual order by in WooCommerce shortcodeDid you find a solution to this?
Forum: Plugins
In reply to: [Youtube shortcode] Shortcode Adds Extra Blank Embed ScreenSame issue on a few of my sites.
Viewing 6 replies - 1 through 6 (of 6 total)