fixed the product attachment urls when use n/%product_cat% as base url, closes #5159
This commit is contained in:
parent
4c18ab831a
commit
6577d8086b
|
@ -262,6 +262,10 @@ class WC_Post_types {
|
|||
)
|
||||
);
|
||||
|
||||
if ( preg_match( '/\/(.+)(\/%product_cat%)$/' , $product_permalink, $matches ) ) {
|
||||
add_rewrite_rule( '^' . $matches[1] . '/.+?/[^/]+/([^/]+)/?$', 'index.php?attachment=$matches[1]', 'top' );
|
||||
}
|
||||
|
||||
register_post_type( "product_variation",
|
||||
apply_filters( 'woocommerce_register_post_type_product_variation',
|
||||
array(
|
||||
|
|
Loading…
Reference in New Issue