This user has no favorite topics.
Favorite Forum Topics
Forum Topics Created
Status |
Topic
|
Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Sticky links is creating a wrong Permalink
Started by: The Smalls
in: English Support
Problem: It seems to happen only when you link child categories in WooCommerce. and the result is that from a link like this: https://test.pcpclothing.com/product-category/women/clothing/?lang=en (correct) https://test.pcpclothing.com/product-category/women/?lang=en&clothing= (incorrect) Relevant Documentation: |
|
3 | 7 | 5 months, 4 weeks ago | |
Product bundlw + Product Add-Ons incompatibility
Started by: The Smalls in: English Support |
|
2 | 8 | 8 months, 1 week ago | |
Footer randomly appears only in a language
Started by: The Smalls in: English Support |
|
2 | 4 | 8 months, 2 weeks ago | |
Problems with product stock between languages
Started by: The Smalls in: English Support |
|
2 | 4 | 8 months, 2 weeks ago | |
woocommerce dynamic pricing not compatible with wpml
Started by: The Smalls
in: English Support
Problem: Solution: The workaround used in this case: <?php foreach($terms as $term): ?> <?php $term_checked = (isset( $collector['args']['cats'] ) && is_array( $collector['args']['cats'] ) && in_array( $term->term_id, $collector['args']['cats'] )) ? true : false; ?> <option <?php selected($term_checked); ?> value="<?php esc_attr_e($term->term_id); ?>"><?php esc_html_e($term->name); ?></option> <?php endforeach; ?> - With this <?php foreach($terms as $term): ?> <?php $term_checked = (isset( $collector['args']['cats'] ) && is_array( $collector['args']['cats'] ) && in_array( $term->term_id, $collector['args']['cats'] )) ? true : false; ?> <option <?php selected($term_checked); ?> value="<?php esc_attr_e($term->term_id); ?>"><?php esc_html_e($term->name); ?></option> <?php //wpml workaround $wpml_languages = apply_filters( 'wpml_active_languages', NULL ); if (is_array ($wpml_languages)) { foreach ($wpml_languages as $wpml_language) { $translated_id = apply_filters( 'wpml_object_id', $term->term_id, 'product_cat', TRUE, $wpml_language['language_code'] ); $translated_name = get_term( $translated_id , 'product_cat' ); if ($translated_id != $term->term_id) { ?> <option <?php selected($term_checked); ?> value="<?php esc_attr_e($translated_id); ?>"><?php echo '('.$wpml_language['language_code'].') '; esc_html_e($translated_name->name); ?></option> <?php } ?> <?php } ?> <?php } ?> <?php endforeach; ?> - Also add the same workaround on the "create_target_selector" function (lines 445-448): <?php foreach($terms as $term): ?> <?php $term_checked = (isset( $targets ) && is_array( $targets ) && in_array( $term->term_id, $targets )) ? true : false; ?> <option <?php selected($term_checked); ?> value="<?php esc_attr_e($term->term_id); ?>"><?php esc_html_e($term->name); ?></option> <?php //WPML workaround $wpml_languages = apply_filters( 'wpml_active_languages', NULL ); if (is_array ($wpml_languages)) { foreach ($wpml_languages as $wpml_language) { $translated_id = apply_filters( 'wpml_object_id', $term->term_id, 'product_cat', TRUE, $wpml_language['language_code'] ); $translated_name = get_term( $translated_id , 'product_cat' ); if ($translated_id != $term->term_id) { ?> <option <?php selected($term_checked); ?> value="<?php esc_attr_e($translated_id); ?>"><?php echo '('.$wpml_language['language_code'].') '; esc_html_e($translated_name->name); ?></option> <?php } ?> <?php } ?> <?php } ?> <?php endforeach; ?> - Go to "WooCommerce -> Dynamic Pricing - -> Tab Category -> Advanced Category Pricing" check both language categories are added and showing. Relevant Documentation: |
|
3 | 11 | 9 months ago | |
translate independently problem
Started by: The Smalls in: English Support |
|
3 | 7 | 1 year ago | |
problem with bundle product “Temporarily unavailable”
Started by: The Smalls
in: English Support
Problem: In my second language of a bundle product, 2 of the 3 products have the mark of "Temporarily unavailable" and the user cant add to cart the bundle product. Solution: I would like to ask you to follow this steps: Relevant Documentation: |
|
2 | 4 | 1 year, 1 month ago | |
No products matched your selection. Please choose a different combination error
Started by: The Smalls in: English Support |
|
3 | 4 | 1 year, 1 month ago | |
delete language and content
Started by: The Smalls in: English Support |
|
2 | 6 | 1 year, 4 months ago | |
database error Commands out of sync
Started by: The Smalls in: English Support |
|
2 | 16 | 1 year, 4 months ago | |
Call to undefined method WC_Product_Simple::get_available_variations()
Started by: The Smalls in: English Support |
|
2 | 5 | 1 year, 6 months ago | |
problem in translating widgets and gravity form
Started by: The Smalls
in: English Support
Problem: Solution: You can either delete the wrong strings or update the language of the strings in WPML > String Translation. |
|
3 | 9 | 2 years, 5 months ago | |
problem with admin text string translation
Started by: The Smalls
in: English Support
Problem: When i go again to wpml->string translation->Translate texts in admin screens i still see the option unchecked. Solution: In this case, the client needed to register the string located in organics_options->contact_info. So we registered it using this XML code: <wpml-config> <admin-texts> <key name="organics_options"> <key name="contact_info"/> </key> </admin-texts> </wpml-config> You can read more about the WPML XML config here: https://wpml.org/documentation/support/language-configuration-files/ Relevant Documentation: |
|
2 | 4 | 2 years, 6 months ago | |
Problem with translation of custom fields
Started by: The Smalls in: English Support |
|
2 | 5 | 2 years, 6 months ago | |
Problem in printing attribute name translation
Started by: The Smalls
in: English Support
Problem: Solution: Alternately, you could edit the original attributes and add the Greek translations via WooCommerce -> WooCommerce Multilingual -> Attributes. Relevant Documentation: |
|
2 | 7 | 2 years, 11 months ago |