- ステータス
- 開発者により解決済み
- 関連するプラグイン/テーマ
- Motors – Car Dealer, Classifieds & Listing, Motors
- トピックタグ
- Compatibility
問題の概要
Motors – Car Dealer, Classifieds & Listing テーマをご利用の場合、セカンダリ言語に切り替えた際に、Motors Pluginで作成されたListing テンプレートが正しく翻訳されないという問題が発生する場合があります。
回避策
続行する前に、必ずサイトの完全なバックアップを取得してください。
- …/wp-content/plugins/motors-car-dealership-classified-listings/includes/class/Features/Elementor/Nuxy/TemplateManager.phpを開きます。
- 339行目を探します。
- 次のコードを:
$template_listing = get_post( $template_listing_id );
- 以下のコードに置き換えます:
// WPML workaround for compsupp-7673 $translated_template_listing_id = apply_filters('wpml_object_id', $template_listing_id, 'listing_template', true); $template_listing = get_post($translated_template_listing_id);