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

Reply To: Can I update attribute or class or search box?

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Can I update attribute or class or search box? Reply To: Can I update attribute or class or search box?

#30031
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

It should be doable. To avoid editing any of the core filey, I recommend the custom code below. Try adding this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!

add_filter('asp_shortcode_output', 'change_asp_shortcode_output', 10, 2);
function change_asp_shortcode_output($html, $id) {
	return str_replace("class='orig'", "class='orig' data-hj-allow", $html);
}