Skip to content

Instantly share code, notes, and snippets.

@BinaryMoon
Last active May 26, 2020 23:21
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 BinaryMoon/ee56285a8be00e8241e31272442880ed to your computer and use it in GitHub Desktop.
Save BinaryMoon/ee56285a8be00e8241e31272442880ed to your computer and use it in GitHub Desktop.
Enable broadsheet theme sidebars
<?php
/**
* Plugin Name: Enable Broadsheet Sidebars.
* Plugin URI: https://prothemedesign.com
* Description: Make the sidebars display on WooCommerce sites when using Broadsheet.
* Author: Ben Gillbanks
* Version: 1.1
* Author URI: https://prothemedesign.com
* Text Domain: broadsheet
*/
add_action(
'init',
function() {
remove_filter( 'is_active_sidebar', 'broadsheet_wc_is_sidebar_active', 10 );
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment