/*
 Theme Name:   Logico Child
 Description:  Logico Child Theme
 Theme URI:	   https://demo.artureanec.com/themes/logico
 Author:       Artureanec
 Author URI:   https://demo.artureanec.com
 Template:     logico
 Version:      1.0.0
 License: GNU  General Public License version 3.0
 License URI:  http://www.gnu.org/licenses/gpl-3.0.html
 Text Domain:  logico-child
*/

/* =Theme customization starts here
------------------------------------------------------- */
add_action('pre_get_posts', function($q) {
    if (!is_admin() && $q->is_main_query() && is_shop()) {
        $q->set('orderby', 'title');
        $q->set('order', 'ASC');
    }
}, 999);