Home / eCommerce / Product order WooCommerce
Duplicate Snippet

Embed Snippet on Your Site

Product order WooCommerce

Force alphabetical sorting on all product pages

Code Preview
php
<?php
// 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');
    }
});

Comments

Add a Comment