/*
Theme Name: Total Child
Theme URI: http://totalwptheme.com
Description: Total WordPress theme example child theme.
Author: AJ Clarke
Author URI: http://totalwptheme.com
Template: Total
Version: 1.1
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/**
 * Hide Special Order Items (152) from Guest users.
 *
 * Hide Uncategorised (150) regardless.
 *
 * Note, we use CSS to hide the Catageory listing in the sidebar. But this is required to hide the listing from the Grid.
 *
 * https://www.tychesoftwares.com/hide-woocommerce-categories-shop/
 */

.cat-item-150 {
	display:none
};

.cat-item-152 {
	display:none
};