Skip to content

Instantly share code, notes, and snippets.

@seventhqueen
Created September 3, 2018 07:55
Show Gist options
  • Save seventhqueen/46ed632976f9eb26485342b7b44864d6 to your computer and use it in GitHub Desktop.
Save seventhqueen/46ed632976f9eb26485342b7b44864d6 to your computer and use it in GitHub Desktop.
Kleo WP theme and Essential real estate comnpatibility
<?php
//https://themeforest.net/item/kleo-pro-community-focused-multipurpose-buddypress-theme/6776630?ref=SeventhQueen
//https://wordpress.org/plugins/essential-real-estate/
if ( ! function_exists( 'kleo_ere_before_main_content' ) ) {
function kleo_ere_before_main_content() {
remove_action( 'kleo_before_main_content', 'kleo_title_main_content' );
get_template_part( 'page-parts/general-before-wrap' );
}
add_action( 'ere_before_main_content', 'kleo_ere_before_main_content' );
}
if ( ! function_exists( 'kleo_ere_after_main_content' ) ) {
function kleo_ere_after_main_content() {
get_template_part( 'page-parts/general-after-wrap' );
}
add_action( 'ere_after_main_content', 'kleo_ere_after_main_content', 1 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment