Created
September 6, 2018 11:03
-
-
Save srdjan-jcc/241fbf248b87bdb89f931247f9e3a1dd to your computer and use it in GitHub Desktop.
WPML Relevanssi not indexing WooCommerce products
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 | |
/* | |
Plugin Name: Relevanssi and WPML | |
Version: 0.1 | |
Description: Applies fixes. | |
*/ | |
add_action( 'wp_ajax_relevanssi_index_posts', 'relevanssi_wpml_remove_filters', 5 ); | |
add_action( 'wp_ajax_relevanssi_index_taxonomies', 'relevanssi_wpml_remove_filters', 5 ); | |
function relevanssi_wpml_remove_filters() { | |
if ( did_action( 'wpml_loaded' ) ) { | |
global $sitepress; | |
remove_filter( 'get_term', array( $sitepress, 'get_term_adjust_id' ), 1, 1 ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment