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

Reply To: Ajax Search Pro display problem

#46994
Ernest MarcinkoErnest Marcinko
Keymaster

Thanks, I was able to reset a login that way.

So, the issue is the Divi critical CSS feature, it overrides most of the plugin CSS. I was able to add a code snippet to “fix” that:

add_filter('asp/assets/css/prefix', function($prefix, $id){
	return $id == 8 ? '#et-boc ' : '';
}, 10, 2);

You can find it in the code snippets plugin. This however means, that the search ID=8 will only be rendered correctly on that page.