Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Search results not working › Reply To: Search results not working
Hi,
Thank you for the details!
I checked the configuration, and the only issue I noticed was the search override was disabled on that form. After enabling and searching for SKUs, I am seemingly getting the correct results.
I generally do not recommend using live page loaders, there is no guarantee that they account for proper header changes and trigger the right events, usually it’s trouble on the long term.
However when I checked it seemed to work okay, aside from minor styling issues, but that is from the custom CSS, not the plugin itself.
In the _search.scss, you have a group starting with:
#ajaxsearchpro1_1 {
.. but that is not correct, because that only targets the first instance of the first search bar, but when using the live loader, it will change, so instead of that you should use:
.asp_m_1 {
..or maybe even this could work:
#ajaxsearchpro1_1, #ajaxsearchpro1_2 {
But the first one is much more generic. I suggest avoiding using IDs, because if there are shadow duplicates (from for example the live page loader), the plugin will fix it’s own ID to avoid duplicate node IDs.
Please note that I can’t guarantee anything for customizations, that includes style changes as well.