Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Ongoing Discussion Regarding Bugs, Improvements, and New Features › Reply To: Ongoing Discussion Regarding Bugs, Improvements, and New Features
Hi Michael,
I had a few hundred emails I had to cover after the vacation, finally it is done. I have read two of your replies before we took off, but I promised myself and my wife, that I would not work during vacation time.
Let’s get to it:
Issue and Question Regarding the Search Results Caching Feature and /asp_upload/ Directory
This is available now within the latest release 4.13.4. Under the Cache settings submenu, you can choose the database as the cache location. It will use the wp_options table for query caching.
Intermittent Bug With Number of Search Result Columns (Cards)
Thank you for the video, that looks really weird indeed, but at least I know what it looks like. Still, I have no clue why, to be honest – but I think there is hope. Usually, when I can’t find a cause of a problem, the best way is to bypass it somehow.
In this case, I think adding a min-width attribute via a custom CSS to the result elements will prevent the shrinking effect.
Try this:
[html]
.asp_isotopic_item {
min-width: 180px;
}
[/html]
The value may need to be adjusted, this is just a sample. What I expect to happen, is that the elements cannot get resized below this defined width. Upsizing can still happen to fill the container width.
Lazy loading issue
Thank you for letting me know. I suspect that another script may have a different version of the lazy script loaded, and that may cause the problem. I will go through the script to see if there is a version check feature in it. I will probably rename a few functions to move them to a different scope, that will do the trick.
Avatar Image Size Used for BuddyPress Activity Search Results
I will have to test this in more details with the isotopic view.
I am planning to implement a different isotopic view, where the image + title + description will be available at the same time, sort of a card-view. With the current view, the main issue is the space, and that it is centered around the image. I think, that a few minor changes to the activity results + this view will be a better output for these types of results. I will look into this for sure.