woocommerce offtopic - show shop instead of 404 page for missing products

admin2025-06-07  46

How should I show the shop instead of a 404 page when a product is missing? Currently users get a 404 page which makes them loose interest.

I use woocommerce with wordpress on a server with nginx.

How should I show the shop instead of a 404 page when a product is missing? Currently users get a 404 page which makes them loose interest.

I use woocommerce with wordpress on a server with nginx.

Share Improve this question asked May 2, 2018 at 5:42 Ro LRo L 991 gold badge1 silver badge7 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

// Missing product redirect to product category add_filter( 'rewrite_rules_array', function( $rules ) { $new_rules = array( 'shop/([^/]*?)/page/([0-9]{1,})/?$' => 'index.php?product_cat=$matches[1]&paged=$matches[2]', 'shop/([^/]*?)/?$' => 'index.php?product_cat=$matches[1]', ); return $new_rules + $rules; } );

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749251343a317622.html

最新回复(0)