Themico
Forum Replies Created
-
Hi,
I solved the problem. My point what that from all files on the website only the animation plugin CSS url did not update the to the proper format. I don’t think that many people will face this exact problem. Just so you know.
Thanks.Forum: Plugins
In reply to: [WP Search with Algolia] Single result on the search pageYes, I tried to push the number of result in different ways, but it is till only one per page.
So far I just use the standard search page, and exclude the posts and non relevant pages with code. It works for us.
Thank you for your help!Forum: Plugins
In reply to: [WP Search with Algolia] Single result on the search pageThank you for the snippet suggestions. I used them.
I have one last problem. Yes, I am using a “Use Algolia with the native WordPress search template” option. The issue is I always have 1 search result per page. So if I have 30 results, it will give 30 pages.
If I switch back to standard WP search with “Do not use Algolia“, I have 10 results par page.
Do you know why this happens?Forum: Plugins
In reply to: [WP Search with Algolia] Single result on the search pageI disabled the snippet, but it is still same.
Forum: Plugins
In reply to: [WP Search with Algolia] Single result on the search pageThank you for your response.
Yes, I have 273 records in wp_searchable_posts in Algolia.
Can the problem be caused by the code snippet that I use. I only want to index specific pages and exclude everything else. Sorry, I forgot to notice it in my initial post.
function my_exclude_custom_post_type( array $exclude ) {
$exclude[] = 'post';
return $exclude;
}
add_filter( 'algolia_excluded_post_types', 'my_exclude_custom_post_type' );
function algolia_exclude_extra( $should_index, $post ) {
// Check if the post type is 'page'
if ( in_array( $post->post_type, [ 'page' ] ) ) {
// Check if the post belongs to the 'Services' category
if ( ! has_category( 7, $post ) ) {
// Exclude the post from being indexed
return false;
}
} else {
return false;
}
// Allow indexing for all other cases
return $should_index;
}
add_filter( 'algolia_should_index_searchable_post', 'algolia_exclude_extra', 10, 2 );
add_filter( 'algolia_should_index_post', 'algolia_exclude_extra', 10, 2 );Thank you for the great plugin, I am sure to use it in future. We all have a limited time an a lot to do…
Unfortunately, we have to switch from the plugin as this issue makes it not usable. Instead, we are using a plugin that extends the standard query loop with ability to select specific posts. And we easily find any post with it, using the same UI as in AQL.
I hope you can solve this issue as your plugin is most powerful. But I noticed this issue described not only in this topic but in others as well.Hi, I think we have the same issue. About 2000 posts, and very often the suggestion does not see a posts when starting to enter the title.
The post is easily found when searching in the WP backend or front end, but it is never suggested in the posts dropdown… Quite essential feature.
Thank you.To be honest I did not understand what that means. Is there a way to have a reusable translated heading?
Forum: Plugins
In reply to: [Image Slider Block] Looks like there is a WP 6.5 update issueGreat, thank you!
Forum: Plugins
In reply to: [Image Slider Block] Looks like there is a WP 6.5 update issueMy bad – I just used _price and it works great. Thank you!
I renamed the Var Names and it works now. This can be closed. Thank you!
- This reply was modified 1 year, 12 months ago by Themico.
One thing I noticed. When I click the first term, filter works. But then when I click other term, I have this in the JS console:
POST https://hlebp4.sg-host.com/courses/?course=ba;mba 404 (Not Found).Forum: Reviews
In reply to: [Twenty Twenty-Three] Site Editor is Worst DecisionI am also a WP dev for many years. I tell you it is not that bad as you think, and it will improve with time. We feel bad now just because we must learn new stuff – but this is an opportunity at the same time. You either join this revolution, or you become dinosaur very soon.