Skip to content

Instantly share code, notes, and snippets.

@KaineLabs
Created September 4, 2019 03:22
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 KaineLabs/fe373ac322473c991d0d0b3272ffc1d7 to your computer and use it in GitHub Desktop.
Save KaineLabs/fe373ac322473c991d0d0b3272ffc1d7 to your computer and use it in GitHub Desktop.
Entrepreneur Theme Fix
<?php
/**
* Disable Youzer General Template
*/
function yzc_disable_general_template( $new, $old ) {
return $old;
}
add_filter( 'youzer_template', 'yzc_disable_general_template', 10, 2 );
/**
* Add this css to your site
.buddypress .entry-title {display: none; }
.buddypress .sidebar { padding: 0; }
.buddypress .container, .buddypress .row .col-sm-8 {margin: 0; padding: 0; width: 100%; max-width: initial !important; }
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment