Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Ajax Search Pro display problem › Reply To: Ajax Search Pro display problem
February 19, 2024 at 1:58 pm
#46994
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.