Permalink for product tag
-
Hello! For now link for filter by tag is https://domain/store/categoryname/?product_tag_4=tagname
Can I change it to https://domain/store/categoryname/tag/tagnameI try to do it with
function myplugin_rewrite_tag_rule() { add_rewrite_rule( 'store/(.+?)/tag/([^/]+)/?$', 'index.php?category_name=$matches[1]&product_tag=$matches[2]', 'top' ); add_rewrite_rule( 'store/(.+?)/tag/([^/]+)/page/?([0-9]{1,})/?$', 'index.php?category_name=$matches[1]&product_tag=$matches[2]&paged=$matches[3]', 'top' ); } add_action('init', 'myplugin_rewrite_tag_rule', 10, 0);
but get blank page
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Permalink for product tag’ is closed to new replies.