Skip to content

Instantly share code, notes, and snippets.

@themeblvd
Created August 3, 2014 20:12
Show Gist options
  • Save themeblvd/c54a183ba91af06ff44f to your computer and use it in GitHub Desktop.
Save themeblvd/c54a183ba91af06ff44f to your computer and use it in GitHub Desktop.
By default Jump Start responsive toggle (javascript) will be applied for tablets and below. This snippet will change that to mobile and below.
<?php
/**
* Kick in mobile menu starting at mobile(>768),
* instead of tablet (>993)
*/
function my_js_locals( $locals ) {
$locals['mobile_menu_viewport_max'] = '767';
return $locals;
}
add_filter( 'themeblvd_js_locals', 'my_js_locals' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment