How To Redirect WooCommerce Shop URL To Another Page - WP Codeus

PHOTO EMBED

Tue Sep 13 2022 01:34:05 GMT+0000 (Coordinated Universal Time)

Saved by @luiso

// Redirect WooCommerce Shop URL
function wpc_shop_url_redirect() {
    if( is_shop() ){
        wp_redirect( home_url( '/custom-page/' ) ); // Assign custom internal page here
        exit();
    }
}
add_action( 'template_redirect', 'wpc_shop_url_redirect' );
content_copyCOPY

https://wpcodeus.com/how-to-redirect-woocommerce-shop-url/