Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #935576

    Please tell me how I have have it to descend from newest products automatically

    https://www.elementalcrystals.co.uk/wp-content/uploads/2018/03/2018-03-31_15-32-27.jpg

    regards, Sam.

    #935959

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.