Created
September 3, 2018 07:55
-
-
Save seventhqueen/46ed632976f9eb26485342b7b44864d6 to your computer and use it in GitHub Desktop.
Kleo WP theme and Essential real estate comnpatibility
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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