Skip to content

Instantly share code, notes, and snippets.

@srdjan-jcc
Created September 6, 2018 11:03
Show Gist options
  • Save srdjan-jcc/241fbf248b87bdb89f931247f9e3a1dd to your computer and use it in GitHub Desktop.
Save srdjan-jcc/241fbf248b87bdb89f931247f9e3a1dd to your computer and use it in GitHub Desktop.
WPML Relevanssi not indexing WooCommerce products
<?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