WPML
ステータス
開発者により解決済み
関連するプラグイン/テーマ
Customer Reviews for WooCommerce
トピックタグ
Compatibility

問題の概要

CusRevのCustomer Reviews for WooCommerceプラグインとそのCusRev visual styleが有効な場合、翻訳されたレビューが期待どおりに表示されません。WPML 文字列翻訳でレビューを翻訳した後でも、表示されるレビューは翻訳されたバージョンではありません。

回避策

先に進む前に、必ずサイトの完全なバックアップを取得してください。


  • テーマのfunctions.phpファイルに以下のコードを追加します。
    //Fix for compsupp-6829
    add_action ('the_comments', 'customer_reviews_remove_hooks', 1, 9);
    function customer_reviews_remove_hooks($comments) {
    	global $wp_filter;
    	foreach ($wp_filter["the_comments"]->callbacks[10] as $key => $value) {
    		if(str_contains($key, 'translate_product_ids')){
    			remove_filter( 'the_comments', $key, 10 );
    		}
    	}
    	return $comments;
    }

すべての既知の問題 →