Product order WooCommerce

// Force alphabetical sorting on all product pages add_action(‘woocommerce_product_query’, function($q) { if (is_shop() || is_product_category() || is_product_tag()) { $q->set(‘orderby’, ‘title’); $q->set(‘order’, ‘ASC’); } });Continue reading