If you sell one-off products like online courses, lifetime memberships or unique pieces that can only be purchased once by a given customer, maybe you’d better redirecting the logged in customer who has purchased that product to a custom URL, such as the shop page, the “my courses” page for online courses or another customer-specific section.
With this easy snippet you’ll learn how to see if a user is logged in and has purchased a given product ID and then how to do a safe PHP redirect. Enjoy!

PHP Snippet: Redirect Customers Who Purchased Away From the Single Product Page
/**
* @snippet Redirect Customers to Custom URL - WooCommerce
* @how-to businessbloomer.com/woocommerce-customization
* @author Rodolfo Melogli, Business Bloomer
* @compatible WooCommerce 4.6
* @community https://businessbloomer.com/club/
*/
add_action( 'template_redirect', 'bbloomer_single_product_redirect_logged_in_purchased' );
function bbloomer_single_product_redirect_logged_in_purchased() {
if ( ! is_product() && ! is_user_logged_in() ) return;
$current_user = wp_get_current_user();
$product_id = get_queried_object_id();
if ( wc_customer_bought_product( $current_user->user_email, $current_user->ID, $product_id ) ) {
wp_safe_redirect( '/custom-url' );
exit;
}
}
Hello, I’m looking everywhere for a plugin or snippet code that can restrict access to non-registered users (or new visitors) for a single product (not the whole shop) and invite he/her/or them to Log-In (or create and account) to see the product !
It would be great if I can just add a simple line to the code every time I need to restrict a new product !.. instead to create a new snippet code every for each product every time..
Do you have an article or snippet code that explain how to do that? Because I tried to insert several snippet codes to my theme and nothing works.. and only very expensive plugins have this unique and specific feature!..
I would really appreciate your help!
Thanks for your time!
Hi Rony, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!
Hi dear, I am building an eCommerce site with word press, and i thought of splitting my website. Now, I am wondering if it is possible to change the URL of the product page to point to another website.
Thank you
Hi dear, that’s not a good idea
Hi there, thanks for this!
Maybe I’m missing the article you wrote on this (I’ve tried searching but can’t find anything) but I am making a website for a non-profit who sell individual items but also a pack of all the items combined. But if a customer orders the pack, they shouldn’t be able to order individual ones and if they have any in the cart, those are removed and just the full pack remains in the cart. It probably doesn’t have that I have cognitive impairment and at the moment I can’t for the life of me think what this sort of conditional add to cart functionality would be called. Which, needless to say, makes searching for the solution difficult.
At any rate, I thought I remembered that there was a solution to this here but (as above) can’t find. I would be ever so grateful if you could point me in the right direction! 🙂
Hello Rose, thanks for your comment 🙂 I only have https://businessbloomer.com/woocommerce-allow-1-product-cart/, but you can easily adapt it to look for a product ID before emptying the Cart. Hope this helps