This user has no favorite topics.
Favorite Forum Topics
Forum Topics Created
Status |
Topic
|
Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
String Translation in CSS sinppets
Started by: tareqA-6
in: English Support
Problem: Solution: If these solutions do not resolve the issue or if they seem outdated or irrelevant, we encourage the client to open a new support ticket. We also highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that the latest versions of themes and plugins are installed. For further assistance, please contact our support forum. |
2 | 2 | 7 months ago | ||
WPML reverses the Origin Language of a String
Started by: tareqA-6
in: English Support
Problem: If you're experiencing a similar issue, we recommend you try the steps mentioned above. However, please note that the solution might be irrelevant due to it being outdated or not applicable to your case. If the issue persists, we highly recommend checking related known issues at WPML Known Issues, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. Should you need further assistance, please do not hesitate to open a new support ticket in the WPML support forum. |
2 | 4 | 7 months, 1 week ago | ||
Issues with the Translated Geolocation Popup Message of ATUM Multi-Inventory
Started by: tareqA-6 in: English Support |
2 | 4 | 7 months, 2 weeks ago | ||
Translation of Custom Currency Symbols in WooCommerce Using WPML
Started by: tareqA-6
in: English Support
Problem: Solution: add_filter("woocommerce_currency_symbol", "change_existing_currency_symbol", 10, 2); function change_existing_currency_symbol($currency_symbol, $currency) { switch ($currency) { case "AED": if (ICL_LANGUAGE_CODE == "en") { $currency_symbol = __("AED", "your-domain-name-here"); } else { $currency_symbol = __("درهم إماراتي", "your-domain-name-here"); } break; } return $currency_symbol; } After adding the code to the theme's functions.php file, the client should scan the theme for strings and translate them. For more information, please refer to our documentation on enabling text translation for themes not compatible with WPML. If this solution does not apply or is outdated, or if you encounter further issues, we highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If needed, please open a new support ticket in our support forum. |
2 | 2 | 7 months, 3 weeks ago | ||
Blocksy theme extra product tabs are not translated
Started by: tareqA-6
in: English Support
Problem: Solution: app/public/wp-content/plugins/blocksy-companion-pro/framework/premium/extensions/woocommerce-extra/features/custom-tabs/feature.php file. $all_products_tabs = get_posts([ 'numberposts' => -1, 'post_type' => $this->post_type, // WPML Workaround for compsupp-7255 - PART 1 'suppress_filters' => false ]); 3. Navigate to the app/public/wp-content/plugins/blocksy-companion-pro/framework/features/conditions/rules-resolver.php file. ConditionsRulesResolver::resolve_single_condition() , replace the code snippet around line 364 with: // WPML Workaround for compsupp-7255 - Part 2 if ( class_exists('Sitepress') ) { $rule['payload']['post_id'] = apply_filters( 'wpml_object_id', $rule['payload']['post_id'], get_post_type($rule['payload']['post_id']) , TRUE ); } if ( isset($rule['payload']) && isset($rule['payload']['post_id']) && $post_id && intval($post_id) === intval($rule['payload']['post_id']) ) { return true; } We tested this solution on a clean installation and it worked. We recommend you try it on your installation and let us know the results. Errata: https://wpml.org/errata/blocksy-theme-translated-product-tabs-displayed-in-original-language/ Please note that this solution might be irrelevant if it's outdated or not applicable to your case. If the issue persists, we highly recommend checking related known issues, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If necessary, please open a new support ticket with us. |
2 | 9 | 8 months ago |