How to Hide Promoted and Featured List...
This code snippet allows you to easily hide or remove the “Promoted” and ...

WPCodeBox
401
This WooCommerce snippet allows you to easily change the default catalog order by price, date, or title. Simply uncomment the desired option (price, date, or title) and comment out the others to customize your product sorting.
<?php
add_filter('woocommerce_default_catalog_orderby', function () {
//return 'date';
//return 'title';
return 'price';
});





