Edit File: themify-plugin-compatibility.php
<?php /** * Provide compatibility with third party plugins * * @package Themify */ if(themify_is_woocommerce_active()){ // Remove default WC wrappers remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10); remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10); // Remove default WC sidebar remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10); // Remove breadcrumb for later insertion within Themify wrapper remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 ); remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 ); add_action( 'woocommerce_before_shop_loop', 'themify_result_count', 20 ); add_action( 'woocommerce_before_main_content', 'themify_before_shop_content', 20 ); add_action( 'woocommerce_after_main_content', 'themify_after_shop_content', 20 ); add_filter( 'woocommerce_show_page_title', 'themify_maybe_hide_shop_title' ); if( ! function_exists( 'themify_before_shop_content' ) ) { /** * Add initial portion of wrapper * @since 1.4.6 */ function themify_before_shop_content() { ?> <!-- layout --> <div id="layout" class="pagewidth clearfix"> <?php themify_content_before(); // Hook ?> <!-- content --> <div id="content" class="<?php echo (is_product() || is_shop()) ? 'list-post':''; ?>"> <?php if( ! ( ( themify_check( 'setting-hide_shop_breadcrumbs' ) && ! is_singular() ) || ( themify_check( 'setting-hide_shop_single_breadcrumbs' ) && is_singular() && is_product() ) ) ) { themify_breadcrumb_before(); woocommerce_breadcrumb(); themify_breadcrumb_after(); } themify_content_start(); // Hook } } if( ! function_exists( 'themify_after_shop_content' ) ) : /** * Add end portion of wrapper * @since 1.4.6 */ function themify_after_shop_content() { global $themify; if (is_search() && is_post_type_archive() ) { add_filter( 'woo_pagination_args', 'woocommerceframework_add_search_fragment', 10 ); } themify_content_end(); // Hook ?> </div> <!-- /#content --> <?php themify_content_after() // Hook ?> <?php if( $themify->layout != 'sidebar-none' ) get_sidebar(); ?> </div><!-- /#layout --> <?php } endif; if ( ! function_exists( 'themify_maybe_hide_shop_title' ) ){ /** * Hide the page title if it's the shop page and user choosed to hide it. * * @since 2.3.4 * * @param bool $show_title * @return bool */ function themify_maybe_hide_shop_title( $show_title ) { return 'yes' === themify_get( 'setting-hide_page_title' ) || (is_shop() && 'yes' === get_post_meta( get_option( 'woocommerce_shop_page_id' ) , 'hide_page_title', true ) ) ?false :$show_title; } } if( ! function_exists( 'themify_result_count' ) ) { /* * Hide number of showed products when using Infinite Scroll */ function themify_result_count() { return 'infinite' === themify_get( 'setting-more_posts' )?false:woocommerce_result_count(); } } } /** * Support for Sensei plugin * * @since 2.2.5 */ function themify_sensei_support() { if( function_exists( 'Sensei' ) ) { global $woothemes_sensei; add_theme_support( 'sensei' ); remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 ); remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 ); add_action( 'sensei_before_main_content', 'themify_sensei_wrapper_start', 10 ); add_action( 'sensei_after_main_content', 'themify_sensei_wrapper_end', 10 ); } } add_action( 'after_setup_theme', 'themify_sensei_support' ); /** * Display wrapper start for Sensei pages * * @since 2.2.5 */ function themify_sensei_wrapper_start() { echo ' <div id="layout" class="pagewidth clearfix"> <div id="content" class="clearfix">'; } /** * Display wrapper end for Sensei pages * * @since 2.2.5 */ function themify_sensei_wrapper_end() { echo '</div><!-- #content -->'; get_sidebar(); echo '</div><!-- #layout -->'; } if ( function_exists( 'icl_register_string' ) ) { /** * Make dynamic strings in Themify theme available for translation with WPML String Translation * @param $context * @param $name * @param $value * @since 1.5.3 */ function themify_register_wpml_strings( $context, $name, $value ) { $value = maybe_unserialize( $value ); if ( is_array( $value ) ) { foreach ( $value as $k => $v ) { themify_register_wpml_strings( $context, $k, $v ); } } else { $translatable = array( 'setting-footer_text_left', 'setting-footer_text_right', 'setting-homepage_welcome', 'setting-action_text', ); foreach ( array('one','two','three','four','five','six','seven','eight','nine','ten') as $option ) { $translatable[] = 'setting-slider_images_' . $option . '_title'; $translatable[] = 'setting-header_slider_images_' . $option . '_title'; $translatable[] = 'setting-footer_slider_images_' . $option . '_title'; } if ( stripos( $name, 'title_themify-link' ) || in_array( $name, $translatable,true ) ) { icl_register_string( $context, $name, $value ); } } } themify_register_wpml_strings( 'Themify', 'Themify Option', themify_get_data() ); } /** * Support for Search & Filter Pro */ if( class_exists( 'Search_Filter_Wp_Data' ) ) { function themify_search_and_filter( $args ) { $args['search_filter_id'] = 123; return $args; } add_filter( 'themify_builder_module_post_query_args', 'themify_search_and_filter' ); add_filter( 'themify_builder_module_portfolio_query_args', 'themify_search_and_filter' ); add_filter( 'themify_builder_module_product_query_args', 'themify_search_and_filter' ); add_filter( 'themify_query_posts_page_args', 'themify_search_and_filter' ); }
Back to File Manager