• Is there any way to get the product descriptions to show on collections pages?

    I am referring to the collections pages you can view here /wp-admin/edit.php?post_type=wps_collections

    I suppose ideally we would like the collections to have a similar layout to the default “all products” page that gets created, but only show the products that match that collection

Viewing 1 replies (of 1 total)
  • Plugin Author andrewmrobbins

    (@andrewmrobbins)

    @sammyadams Hey there,

    Try adding this filter into your theme’s functions.php file:

    add_filter('wps_collections_single_args', function($args) {
    
       $args['products_excludes'] = [];
    
       return $args;
       
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Descriptions’ is closed to new replies.