Allow WooCommerce customers to read private posts/products
Here is a quick snippet to allow WooCommerce users to read/access private posts or private products. Pretty useful when you want to create special offers for some existing customers only. Simply place that snippet in functions.php in your theme folder:
<?php
// In functions.php
$customer_role = get_role( 'customer' );
$customer_role->add_cap( 'read_private_posts' );
$customer_role->add_cap( 'read_private_pages' );
Enjoy!