'; } function barlow_wrapper_end() { echo '
'; } if ( ! function_exists( '_disable_jetpack_infinite_scroll_conditionally' ) ) { /** * _disable_jetpack_infinite_scroll_conditionally Disables infinite scroll on WooCommerce pages * Original code credit https://gist.github.com/rspublishing/6b0b2d2eabafa514bd48045d1860f24b */ function _disable_jetpack_infinite_scroll_conditionally() { if ( true === is_woocommerce() ) { remove_theme_support( 'infinite-scroll' ); } } add_action( 'template_redirect', '_disable_jetpack_infinite_scroll_conditionally', 9 ); } /* * Remove Related Products * * Clear the query arguments for related products so none show. * Add this code to your theme functions.php file. */ function barlow_remove_related_products( $args ) { return array(); } add_filter('woocommerce_related_products_args','barlow_remove_related_products', 10); remove_action( 'woocommerce_after_barlow_product_summary', 'woocommerce_upsell_display', 15 ); /** * Change number or products per row to 3 */ add_filter( 'loop_shop_columns', 'loop_columns', 999 ); if ( !function_exists('loop_columns' ) ) { function loop_columns() { return 3; // 3 products per row } }