Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author RadiusTheme

    (@techlabpro1)

    Hello,

    Yes by filter can do this

    Add below code in child theme functions.php file to remove this two options –

    
    add_filter('rtcl_listing_orderby_options', function ($options) {
    	unset($options['title-asc']);
    	unset($options['title-desc']);
    
    	return $options;
    });

    Thanks

    Thread Starter walid91

    (@walid91)

    Hi,

    Very good.

    Thank you.

    Plugin Author RadiusTheme

    (@techlabpro1)

    Thanks too!!

    Please post a rating it will help us to grow.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘A to Z filter’ is closed to new replies.