// Przekierowanie produktów z kategorii drukarka-hybrydowa-uv
function redirect_category_products_js() {
if (is_product()) {
global $post;
$target_category_slug = 'drukarka-hybrydowa-uv';
$landing_url = 'https://akonda.pl/drukarki-uv-hybrydowe-keundo';
if (has_term($target_category_slug, 'product_cat', $post->ID)) {
echo '';
exit();
}
}
if (is_product_category()) {
$category = get_queried_object();
$target_category_slug = 'drukarka-hybrydowa-uv';
$landing_url = 'https://akonda.pl/drukarki-uv-hybrydowe-keundo';
if ($category->slug === $target_category_slug) {
echo '';
exit();
}
}
}
add_action('wp_head', 'redirect_category_products_js');
?>
Warning: Cannot modify header information - headers already sent by (output started at /home/klient.dhosting.pl/key2print/akonda.pl/public_html/wp-content/themes/akonda/functions.php:284) in /home/klient.dhosting.pl/key2print/akonda.pl/public_html/wp-includes/pluggable.php on line 1435
Warning: Cannot modify header information - headers already sent by (output started at /home/klient.dhosting.pl/key2print/akonda.pl/public_html/wp-content/themes/akonda/functions.php:284) in /home/klient.dhosting.pl/key2print/akonda.pl/public_html/wp-includes/pluggable.php on line 1438