Trevor

Forum Replies Created

Viewing 10 posts - 41 through 50 (of 32,056 total)
  • Trevor in reply to:
    V3 comming soon?
    #276776

    I am sorry, I have no no news at this time.

    Trevor in reply to:
    Weglot & redirect on filter function
    #276773

    An 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
    #276762

    Hi

    As an alternative to logging in to your account and opening a ticket, you can send an email to:

    support@searchandfilter.com

    The title will become the ticket title.

    Trevor in reply to:
    V3 comming soon?
    #276757

    V3 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
    #276753

    Hi. If it still does not work for you, send an email to:

    support@searchanfilter.com

    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
    #276741

    Thanks for sharing. It shouldn’t be happening in the latest version of our plugin (2.5.13).

    Trevor in reply to:
    Result load speed
    #276737

    I 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_)
    #276733

    I am sorry, but not yet.

    Trevor in reply to:
    Multiple Taxonomy filtering question
    #276726

    Hi

    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
    #276722

    No release date, I am sorry. Closer, a lot closer.

Viewing 10 posts - 41 through 50 (of 32,056 total)