Forums Forums Search & Filter Pro Ajax not working

Tagged: 

Viewing 10 posts - 1 through 10 (of 11 total)
  • Anonymous
    #10040

    Hi

    Searching does not work with ajax, search is not being automatically submitted when choosing a category from the drop down menu.

    Nothing happens.

    It works fine if you have the submit button showing and you click on it.

    Ross Moderator
    #10041

    Hey Adam

    What version of the plugin are you using? A new version was released the same day you purchased (v1.4.0)…

    Once your up to date I can help with the next steps (a link would be handy).

    Thanks

    Anonymous
    #10100

    My version is on 1.3

    I added my licence key and hit activate.

    However, when trying to update, it stays on 1.3?

    Ross Moderator
    #10101

    Hi again Adam

    So if I follow you correctly, the following has happened:

    When you enter the license, first you submit, to store the key, then you click “activate license” after the first page reload. Once you do this you should see some text “active”

    This means your active.

    Then you can head to your plugins page and an update should be visible…

    Is this whats happening?

    Thanks

    Ross Moderator
    #10102

    I’ve just seen in my logs, you’re activated fine…

    So the only thing I can think of is that for some reason WP can’t delete the original plugin files before updating.

    Do you see any error messages when trying to activate?

    Just to try and figure out what version you are actually on, do you see this layout in your “Settings & Defaults” box?

    http://snag.gy/FmAyX.jpg

    Thanks

    Anonymous
    #10107

    I don’t get any errors when updating. It does say that I’m already up to date.

    My dashboard still looks like the old version.

    Ross Moderator
    #10108

    Hey Adam please read the activation instructions:

    http://www.designsandcode.com/wordpress-plugins/search-filter-pro/docs/#docs-automatic-updates

    You must de-active your local development environment first.

    Thanks

    Anonymous
    #12402
    This reply has been marked as private.
    Ross Moderator
    #12406

    Hey Adam

    I think that your template file is running its own query which is interferring with the results generated by this plugin – take a look here on how to modify your template:

    http://www.designsandcode.com/wordpress-plugins/search-filter-pro/faqs/#h-bad-template

    Thanks

    Anonymous
    #12618

    I am not running any query in my template.

    <?php
    /*
    Template Name: Search Results
    */
    
    get_header(); ?>
    
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
    
    <div class="container-fluid">
      <div class="row">
    
        <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
          <div class="col-xs-12 col-sm-6 col-md-3">
            <a href="<?php echo get_permalink(); ?>">
            <div id="box" style="background:url(<?php the_field("profile_image"); ?>); background-size:cover; border-radius:5px; }">
              <div id="overlay">
                <span id="plus"><?php the_title() ?> <?php the_field('surname') ?></span>
              </div>
            </div>
            </a>
          </div>
        <?php endwhile;?>
      <?php endif;?>
    
      </div>
    </div>
Viewing 10 posts - 1 through 10 (of 11 total)