Hi trw11278,
You need to set up the products, page appeareance in the general settings, follow the link below for starting guid of Jigoshop
https://www.jigoshop.com/getting-started-guide/
You can set up also the main page by categories but you should be familiar with php coding as well to do it, add the following code snippet at your-theme/functions.php file:
add_action( ‘pre_get_posts’, ‘remove_products_ from_shop’ );
function remove_products_from_shop($productsToRemove)
{
$inCategories = array(
‘CATEGORY-1’,
‘CATEGORY-2’,
‘CATEGORY-3’,
‘CATEGORY-4’,
);
if (!$productsToRemove->is_main_query()) return;
if (!$productsToRemove->is_post_type_archive()) return;
if (!is_admin() && is_shop()) {
$productsToRemove->set(‘tax_query’, array(array(
‘taxonomy’ => ‘product_cat’,
‘field’ => ‘slug’,
‘terms’ => $inCategories,
‘operator’ => ‘NOT IN’
)));
}
remove_action(‘pre_get_posts’, ‘remove_products_from_shop’);
}
Change the values (elements) of $inCategories array to your categories :
$inCategories = array(
‘YOUR-CATEGORY-1’,
‘YOUR-CATEGORY-2’,
‘YOUR-CATEGORY-3’,
‘YOUR-CATEGORY-4’,
);
If you are not familiar with coding leave it to avoid fatal errors.