This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Ajax Pro Search layout change

#33170
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

2. Sure, that is a great idea. I recommend something like this instead:

  jQuery(function($){
    $('.asp_option_label').each(function(){
		if ( $(this).text().trim() == 'Strand E – Morality and Justice' ) {
			$(this).addClass('new-filter');
		}
	});
  });

Make sure this is added as a footer script so the page is rendered before it is executed.