Please tell me how I have have it to descend from newest products automatically
regards, Sam.
Hey sambo258,
Can you try adding this php code at the bottom of functions.php:
add_filter('woocommerce_get_catalog_ordering_args', 'am_woocommerce_catalog_orderby');
function am_woocommerce_catalog_orderby( $args ) {
$args['orderby'] = 'date';
$args['order'] = 'desc';
return $args;
}
Hope it helps :)
Best regards,
Nikko