Skip to content

Instantly share code, notes, and snippets.

@timersys
Created February 27, 2016 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timersys/e3648ba93955ddef4087 to your computer and use it in GitHub Desktop.
Save timersys/e3648ba93955ddef4087 to your computer and use it in GitHub Desktop.
Filter to make maxbuttons WordPress Plugin compatible with popups plugin
<?php
/**
* Filter to make maxbuttons WordPress Plugin (https://es.wordpress.org/plugins/maxbuttons/)
* compatible with popups plugin https://es.wordpress.org/plugins/popups/
*/
add_filter( 'mb_shortcode_display_args', 'popups_maxbuttons');
function popups_maxbuttons( $args){
$args['load_css'] = 'inline';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment