WooCommerce 'shop' page

Home Forums Ticket Products Event Tickets Plus WooCommerce 'shop' page

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1155770
    Patrick Hathaway
    Participant

    Hi

    I was looking for suggestions on what’s the best way to deal with WooCommerce and it’s default pages, particularly the ‘shop’ page. As I won’t be having any products to display, just tickets to events I don’t need this page.

    Thanks in advance

    #1155811
    Geoff
    Member

    Hey there, and thanks for getting in touch!

    I believe you can move the WooCommerce Shop page to Draft status and that should disable it from being in view. I’m afraid that Event Tickets Plus has no control over that page, but it’s worth noting that tickets are disabled from appearing on that page by default.

    Does this help answer your question? Please let me know. 🙂

    Cheers!
    Geoff

    #1157474
    Patrick Hathaway
    Participant

    Sadly, that doesn’t work. I have made the Shop page a draft, and also tried to completely delete it. Also, under WooCommerce settings, I have no ‘shop page’ chosen.

    Any other ideas on how to get around this?

    Thank you

    #1157480
    Patrick Hathaway
    Participant

    I ended up using a PHP redirect.

    
    <?php
    	if ( is_shop() ) : //redirect from the 'shop' page.
    		wp_redirect( site_url( '/events/' ) );
    			exit;
    	endif;
    ?>
    #1157551
    Geoff
    Member

    That’s a nice workaround! I not only appreciate you letting me know but for sharing it here with others as well. Awesome work. 🙂

    Geoff

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘WooCommerce 'shop' page’ is closed to new replies.