Forum Replies Created
-
AuthorPosts
-
Ernest Marcinko
KeymasterOh, I see.
In that case make sure to have the search results page override enabled. The plugin will then push the same results to the search query archive.
June 11, 2024 at 12:38 pm in reply to: PDFs not being read and made searchable after creating Index #48442Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi,
At the moment this is how it’s supposed to work – the predictive suggestions only work for the live search results list.
It’s intentional as it’s not possible to tell the user if the query was mispelled on the results page, as it’s controlled by the current theme. I will take this as a feature request though, and will try to add an option to the back-end to show these results either way – even if the user is not notified of the mispelling.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterThank you!
Indeed, the size is not respected in the avatars case, I can confirm this should be adjustable. As a temporary solution I have made a small custom code snippet – but I have noted this on the bug tracker and resolve it for the upcoming release.
add_filter( 'asp_results', function ( $results ) { foreach ( $results as $r ) { if ( $r->content_type === 'user' ) { $r->image = get_avatar_url( $r->id, array( 'size' =>512, ) ); } } return $results; }, 10, 1 );Try adding this code via the Code Snippets plugin or to the functions.php file in your theme/child theme directory – make sure to have a full server back-up first for safety. For more details you can check the safe coding guidelines.
June 11, 2024 at 8:34 am in reply to: Search results are not displayed on mobile and in Safari on desktop #48436Ernest Marcinko
KeymasterSure! Sorry, I forgot to check that – now it should be okay. The mobile behavior was set differently, I changed it back to default, now it’s okay.
June 11, 2024 at 8:19 am in reply to: Search results are not displayed on mobile and in Safari on desktop #48434Ernest Marcinko
KeymasterHi,
Thank you for the details, it helps a lot!
The issue was only that the redirection was set incorrectly. I have changed it to the default to redirect to the results page. It should be okay now.
June 10, 2024 at 12:14 pm in reply to: PDFs not being read and made searchable after creating Index #48427Ernest Marcinko
KeymasterYou cannot access this content.
June 10, 2024 at 9:43 am in reply to: Change color of a button using color selector not working #48424Ernest Marcinko
KeymasterHi,
It’s sort of intentional to revert back unless the user clicks the “Choose” button: https://i.imgur.com/n4XdepA.png
In the past it was the other way around, but then we got complaints that it should revert back when the user clicks away so I just left it like this.
June 10, 2024 at 9:40 am in reply to: Website crashes after setting settings column width to null #48423Ernest Marcinko
KeymasterHi,
Nice find – thank you very much for reporting, and very sorry about the inconvenience! I will make sure to fix this in the upcoming release, I have noted in on the issue tracker 🙂
Ernest Marcinko
KeymasterYou cannot access this content.
June 10, 2024 at 9:03 am in reply to: PDFs not being read and made searchable after creating Index #48421Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterHi,
May I ask what type of results are these? Posts, pages or other post types or something else?
For post types the default “Original size” is used by default. If that option is not changing the size, then the files either doesn’t exist or for some reason WordPress is not returning them – it could be a custom code or a plugin changing what’s returned when requesting the images.
Ernest Marcinko
KeymasterYou cannot access this content.
Ernest Marcinko
KeymasterYou cannot access this content.
-
AuthorPosts