Skip to content

Instantly share code, notes, and snippets.

@dustinleer
Last active May 25, 2022 20:54
Embed
What would you like to do?
Changes the WooCommerce breakpoint
<?php
function woo_custom_breakpoint( $px ) {
$px = '782px';
return $px;
}
add_filter( 'woocommerce_style_smallscreen_breakpoint', 'woo_custom_breakpoint' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment