Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Created February 4, 2023 08:27
Show Gist options
  • Save tdmrhn/a1b5366a9d033cca1ac3e669d380467d to your computer and use it in GitHub Desktop.
Save tdmrhn/a1b5366a9d033cca1ac3e669d380467d to your computer and use it in GitHub Desktop.
Blocksy Hide Sidebar for Certain Categories
<?php
add_filter('blocksy:general:sidebar-position', function ($current_value) {
if ( is_category( array('places','beach') ) ) {
return 'none';
}
});
@tdmrhn
Copy link
Author

tdmrhn commented Apr 29, 2024

CSS;

// .category-beach [data-sidebar] .entries { 
[data-prefix="categories"] [data-sidebar] .entries { 
--grid-template-columns: repeat(2, minmax(0, 1fr));
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment