Trevor
Forum Replies Created
-
Trevor in reply to:
V3 comming soon?(Private) April 28, 2023 at 6:59 am #276776I am sorry, I have no no news at this time.
Trevor in reply to:
Weglot & redirect on filter function(Private) April 17, 2023 at 2:51 pm #276773An update (on 2023-04-17) from a user (Michael Briel):
This doesn’t work any more, since
weglot_get_current_and_original_language()
doesn’t exist any more in Weglot. Also the solution is for one case only (…/references/…).
I created a new version of the fix that works even more flexible, since I use it on a page with several different search pages – it doesn’t use a fixed url, but takes the one incoming and uses it, no matter which – meaning: When the search page is http://www.abcd.com/testsearchpage/ it takes the “/testsearchpage/-part and uses it:
function modify_sf_results_url( $url, $sfid ) { $current_language = weglot_get_current_language(); $relative_url = str_replace( home_url(), "", $url ); if ($current_language === "en") { // nothing, since en is main language - replace "en" with your main language if needed } else { $url = home_url("/".$current_language.$relative_url.""); } return $url; } add_filter( 'sf_results_url', 'modify_sf_results_url', 10, 2 );
Trevor in reply to:
Archive Filter Not Working(Private) March 14, 2023 at 11:11 am #276762Hi
As an alternative to logging in to your account and opening a ticket, you can send an email to:
The title will become the ticket title.
Trevor in reply to:
V3 comming soon?(Private) March 1, 2023 at 2:28 pm #276757V3 is in its final stages of coding right now. We are now rapidly approaching the point where we can start beta testing. It will be a month or so. Then, after we release it, we will need to code the geolocation feature. That will be some months yet.
Trevor in reply to:
Secondary Submit ‘Search All’ Button(Private) February 15, 2023 at 7:30 am #276753Hi. If it still does not work for you, send an email to:
Use that as the support ticket, title as the issue and details in the body.
Our system will use that email to create a ticket automatically for you.
Trevor in reply to:
Display title instead of ID in Post Meta(Private) February 4, 2023 at 4:36 pm #276741Thanks for sharing. It shouldn’t be happening in the latest version of our plugin (2.5.13).
Trevor in reply to:
Result load speed(Private) January 29, 2023 at 4:54 pm #276737I replied to your ticket in our support area, but I will copy that reply here also.
The other content you mention is static, and so can be held in cache. However, search results have to be made using read/writes with your server hard drives, and this is where the bottleneck will be. Cached content will not have to do this, and so will be much faster.
There is no way to avoid this where you have dynamic (uncached) content.
Trevor in reply to:
Remove variable prefix (_sft_)(Private) January 26, 2023 at 1:59 pm #276733I am sorry, but not yet.
Trevor in reply to:
Multiple Taxonomy filtering question(Private) January 17, 2023 at 8:35 am #276726Hi
Could you raise this question on our new Support Forums, the link to which is at the top of this page, or send it via email to support@searchandfilter.com using the email account that you purchased the plugin with?
Thanks
Trevor in reply to:
Filter by _EventStartDate with The Events Calendar PRO by Modern Tribe(Private) January 16, 2023 at 5:11 pm #276722No release date, I am sorry. Closer, a lot closer.
-
AuthorPosts