WooCommerce: Single Product Page Redirect for Logged In Customers

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!

Redirect logged in customers who purchased a specific product away from the Single Product Page

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;
    }
}

Where to add custom code?

You should place custom PHP in functions.php and custom CSS in style.css of your child theme: where to place WooCommerce customization?

This code still works, unless you report otherwise. To exclude conflicts, temporarily switch to the Storefront theme, disable all plugins except WooCommerce, and test the snippet again: WooCommerce troubleshooting 101

Related content

Rodolfo Melogli

Business Bloomer Founder

Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza. Follow @rmelogli

6 thoughts on “WooCommerce: Single Product Page Redirect for Logged In Customers

  1. 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!

    1. 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!

  2. 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

    1. Hi dear, that’s not a good idea

  3. 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! 🙂

    1. 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

Questions? Feedback? Customization? Leave your comment now!
_____

If you are writing code, please wrap it like so: [php]code_here[/php]. Failure to complying with this, as well as going off topic or not using the English language will result in comment disapproval. You should expect a reply in about 2 weeks - this is a popular blog but I need to get paid work done first. Please consider joining the Business Bloomer Club to get quick WooCommerce support. Thank you!

Your email address will not be published. Required fields are marked *