Forums › Forums › Search & Filter Pro › Ajax not working
Tagged: ajax
- This topic has 10 replies, 2 voices, and was last updated 9 years, 8 months ago by Ross.
-
Ross Moderator(Private) January 10, 2015 at 2:32 am #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
Ross Moderator(Private) January 11, 2015 at 4:52 pm #10101Hi 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(Private) January 11, 2015 at 4:56 pm #10102I’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?
Thanks
Ross Moderator(Private) January 11, 2015 at 7:30 pm #10108Hey 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
Ross Moderator(Private) February 25, 2015 at 11:11 pm #12406Hey 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(Private) March 1, 2015 at 5:28 pm #12618I 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>
-
AuthorPosts