Dieser Benutzer hat keine Lieblingsthemen.
Bevorzugte Forumsthemen
Forumsthemen erstellt
Status |
Thema
|
Unterstützer | Stimmen | Beiträge | Frische |
---|---|---|---|---|---|
Can't link disconnected page back to existing page in different language
Angefangen von: maaykS in: English Support |
2 | 2 | Vor 4 Jahren | ||
WPML chat support ticket by maaykS – 1599926256
Angefangen von: maaykS in: Chat Support |
|
1 | 2 |
Vor 4 Jahren, 5 Monaten
|
|
Google Product Feed and Currency issue
Angefangen von: maaykS
in: English Support
Problem: The currency parameter for WooCommerce Google Product Feed and Currency is not working. Solution: Add the following function to the functions.php file of the theme. add_filter( 'wcml_client_currency', 'modify_client_currency', 10, 1 ); function modify_client_currency( $current_currency ) { if( !is_admin() ){ global $woocommerce; $currency = isset( $_GET['currency'] ) ? esc_attr( $_GET['currency'] ) : $current_currency; $currency = strtoupper( $currency ); $woocommerce->session->set('client_currency', $currency); return $currency; } } This is a suggestion that worked in this specific case. We can not guarantee that it would work in any case. Documentation |
|
2 | 5 | Vor 4 Jahren, 5 Monaten | |
Multi-currency option
Angefangen von: maaykS in: Chat Support |
|
1 | 2 |
Vor 4 Jahren, 5 Monaten
|