Hi,
Yes, you can do it. Could you mention which options do you want to unset?
Thank you
Thread Starter
dti06
(@dti06)
Hi,
I’d like to unset:
– Most viewed
– Less viewed
– Price ( high to low )
– Price ( low to high )
– A to Z ( title )
– Z to A ( title )
And I’d like to have the default order set to “Recently added ( latest )” first.
Thank you
Hi,
Okay, add the following code in child theme functions.php file –
add_filter( 'rtcl_listing_orderby_options', function ( $options ) {
unset( $options['views-desc'] );
unset( $options['views-asc'] );
unset( $options['price-asc'] );
unset( $options['price-desc'] );
unset( $options['title-asc'] );
unset( $options['title-desc'] );
return $options;
} );
Thank you