Saltar navegación

Etiquetado: 

Este tema contiene 0 respuestas, tiene 0 voces.

Última actualización por ericH-23 hace 1 semana.

Asistido por: Paola Mendiburu.

Autor Entradas
noviembre 18, 2024 en 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?