Auto suggest does not work
-
Auto suggest does not work since update. I type users name and no suggestions appear. (option is not ticked in settings to block this)
Worked since the update.
Any ideas ?
-
is admin-ajax.php blocked from front end?
Can you give me a url and an account details?
read Support and give me account credentials.Details have been emailed to you using the link provided.
Hello, i got your message via my website, i did reply but have got no response since.
You asked if my theme uses WP-footer, this i do not know.
All i can tell you is that the auto suggest works in Version 2.2
If its always required a footer then my theme must do.Sorry, I can not stay in your website all day long. You should response soon.
New version of this plugin add autosuggestion script in footer with wp_enqueue_script. Previous version it was not which was a bad idea (my apology, i did not know better about wordpress).
Theme developer should include wp_footer function. If not, you should not use that theme.
I also seen that you combine and minify script. If any of your script either from any other plugin or theme is broken it will not work.
Hello Shamin,
My theme has footer.php which included the following:
<?php /** * The template for displaying the footer. * * @package Pindol * @author Muffin group * @link http://muffingroup.com */ ?> <!-- #Footer --> <footer id="Footer"> <div class="container widgets"> <?php $sidebars_count = 0; for( $i = 1; $i <= 4; $i++ ){ if ( is_active_sidebar( 'footer-area-'. $i ) ) $sidebars_count++; } $sidebar_class = ''; if( $sidebars_count > 0 ){ switch( $sidebars_count ){ case 2: $sidebar_class = 'one-second'; break; case 3: $sidebar_class = 'one-third'; break; case 4: $sidebar_class = 'one-fourth'; break; default: $sidebar_class = 'one'; } } ?> <?php for( $i = 1; $i <= 4; $i++ ){ if ( is_active_sidebar( 'footer-area-'. $i ) ){ echo '<div class="'. $sidebar_class .' column">'; dynamic_sidebar( 'footer-area-'. $i ); echo '</div>'; } } ?> </div> <div class="container"> <div class="column one bottom_addons"> <div class="copyrights"> <p> © <?php echo date( 'Y' ); ?> <strong><?php bloginfo( 'name' ); ?></strong>. <?php _e('All Rights Reserved.','pindol'); ?><br /> <?php _e('Powered by','pindol'); ?> <a target="_blank" href="http://wordpress.org">WordPress</a>. <?php _e('Created by','pindol'); ?> <a target="_blank" href="http://themeforest.net/user/muffingroup/portfolio?ref=muffingroup">Muffin group</a> </p> </div> <div class="menu_bottom"> <?php mfn_wp_footer_menu(); ?> </div> </div> </div> </footer> </div> <a id="back_to_top" href="#"><i class="icon-circle-arrow-up"></i></a> <!-- wp_footer() --> <?php wp_footer(); ?> </body> </html>Does this help ?
it is important to have
<?php wp_footer(); ?>and your theme have.I also seen that you combine and minify script. If any of your script either from any other plugin or theme is broken it will not work.
Well i am not sure where to do from here.
I have no had any issues with my minify script before this and im not entirely sure that is what the issue isHello,
I think I’m having a similar issue. The autosuggest dropdown does not include all of my users. It does include some of them, but not all. I cannot isolate the problem. Help! Thanks in advance for your time.
The topic ‘Auto suggest does not work’ is closed to new replies.