Ajay
Forum Replies Created
-
Forum: Plugins
In reply to: [Better Search - Relevant search results for WordPress] Bugs since 4.0Hi, I will look into this as those are two things I haven’t changed.
Can you tell me if you’re using seamless mode or not?
Also can you try to reset the settings and apply them again.
Are you able to run query monitor to see the outputs of the search results are?
https://webberzone.com/support/knowledgebase/debugging-with-query-monitor/
Forum: Reviews
In reply to: [Top 10 - WordPress Popular posts by WebberZone] different views countI just checked your site and specifically the post at https://rakyatbekasi.com/merasa-dirugikan-tim-hukum-paslon-nomor-urut-satu-heri-sholihin-laporkan-akun-akun-buzzer/ plus others.
I cannot see the top 10 tracker loading on the site. I do see WPP though. Can you tell me what tracker you are using under your settings > Counter/tracker tab? And swap between the three.
Forum: Plugins
In reply to: [Knowledge Base] Export knowledge base text to a fileThe knowledge base pages are simple custom post types in the backend. The easiest way would be to go to Tools > Export and then you can export the content as a WXR (xml file) which I believe you could then provide it to AI.
Out of curiousity, what chatbot are you using?
Forum: Plugins
In reply to: [Contextual Related Posts] Links not Thumbnails (setting wont change)Hi @ozguy
Sorry for the delayed response. Are you talking about the admin settings page? Can you check what is on the styles tab and if you only want text and not the thumbnails, please choose only text there.
Forum: Plugins
In reply to: [Contextual Related Posts] How to insert CRP’s into Tag ArchivesIf you’re looking to display the related posts after each post in the tag archive, you can do that via the “Automatically add related posts to” setting under the General Tab. This will be dependent on your theme displaying the entire the_content filter.
If you’re thinking about a related post for the tag i.e. colombia, that is a feature that I have planned for CRP Pro.
Forum: Plugins
In reply to: [Contextual Related Posts] Location of the post thumbnailCan you check what you have in the Styles tab, is it set to Rounded thumbnails? If so, can you change that to Text only?
I used to have a notice being displayed previously which seems to have gone missing in the last few versions, I need to dig into that.
Glad to hear that! To confirm I’ve fixed this in the Github repo.
https://github.com/WebberZone/better-search/commit/426ddd664129fe6cab29b2af8e0e0ffba5ed1486
If it’s the highlighting, then that is normal as the highlighting works on words and not phrases so you’ll see both the blood and the pressure highlighted separately. With respect to the actually searching, that happens with phrases.
Are you comfortable with editing files? If so, you can edit /includes/class-better-search.php and replace
htmlspecialchars_decode
withwp_specialchars_decode
.If not, if you wait a few weeks, I’m pushing through a major release of the plugin alongwith a pro version that will have this changed.
I was checking your site and I do see the results for “blood pressure” first – the highlighting does work differently.
Are you noticing posts e.g. in the search below which is missing results that have the phrase?
wisenutritioncoaching.com.au/?s=%22blood+pressure%22
I’ve been relooking at the code and I think a small code change could fix this – changing
htmlspecialchars_decode
towp_specialchars_decode
https://github.com/WebberZone/better-search/blob/v3.3.1/includes/class-better-search.php#L429
Forum: Plugins
In reply to: [Knowledge Base] plugin doesn’t take the current theme styleI’ll push through 2.2.2 so it can be upgraded from the dashboard.
Once you’ve had a chance to test it, I’d appreciate if you can write a review of the plugin.
Forum: Plugins
In reply to: [Knowledge Base] plugin doesn’t take the current theme styleThank you! That’s great.
On the 404 for the section page, have you refreshed the Permalinks?
Forum: Plugins
In reply to: [Knowledge Base] plugin doesn’t take the current theme stylePlease let me know if you’re in a position to test this release candidate.
https://github.com/WebberZone/knowledgebase/releases/tag/v2.2.2-RC1
This should provide the correct template for block themes like twenty twentyfour. There are limitations of what can and cannot be displayed unfortunately.
WordPress 6.7 should make it easier for me to register a block template which can be used to customise the site.
Forum: Plugins
In reply to: [Knowledge Base] plugin doesn’t take the current theme styleYes it won’t work in a block theme as they don’t have the header or footer files like before.
Trying to implement this is turning out to be a lot more complicated that I first thought as the new system has been built without thinking about plugins.
I think you might need to create a specific block template for the post type manually. I’m still digging to find a proper solution.
Forum: Plugins
In reply to: [Knowledge Base] plugin doesn’t take the current theme styleI’ve been digging into this. This doesn’t look like a quick fix as I need to also build in some blocks and the entire block template for each custom type.
I’m committed to get this done though – although it won’t be as quick as I hoped it to be!
Forum: Plugins
In reply to: [Knowledge Base] plugin doesn’t take the current theme styleBeen digging into this and I think it’s a lot more complicated and not a simple fix. I’m going to try to work on this to get it to work properly but I’m not 100% sure on timeline i.e. a day or a week or more as FSE themes are too different.
I think it needs to create an archive file in html and then use that instead of the plugin’s PHP files.