Sauter la navigation

Marqué : 

Ce sujet contient 0 réponse, a 0 voix.

Dernière mise à jour par ericH-23 Il y a 6 jours et 21 heures.

Assisté par: Paola Mendiburu.

Auteur Articles
Novembre 18, 2024 à 9:44 am #16413832

ericH-23

Background of the issue:
I am developing a site and using a function code to redirect WooCommerce product links to the shop page. The redirection works in the standard language but not in other languages. This is my code: add_action('template_redirect','custom_shop_page_redirect'); function custom_shop_page_redirect(){ if (class_exists('WooCommerce')){ if(is_product()){ wp_redirect(home_url('/promote/')); exit(); } } return; }

Symptoms:
Redirect to shop page in other languages gives a 404 error.

Questions:
Why does the redirection work in the standard language but not in other languages?
How can I fix the 404 error when redirecting in other languages?