Ross

Forum Replies Created

Viewing 10 posts - 10,231 through 10,240 (of 10,351 total)
  • Ross Moderator in reply to:
    ajax loading not working
    #1311
    Ross Moderator in reply to:
    ajax loading not working
    #1307
    This reply has been marked as private.
    Ross Moderator in reply to:
    Display count for custom taxonomy display's count for all post types
    #1300

    Hey John

    Basically this “count” number is stored in WordPress’ own tables whenever you add/remove a post from your taxonomy and automatically covers all post types if used with multiple post types.

    It is usually recommended to set up taxonomies exclusive to specific post types, so you could create two taxonomies one for each post type, and therefor you will have counts that match what you want.

    This is a temporary workaround, having said that there is other functionality that a lot of users have been asking for, which I am making a priority to include which will help with your use case above.

    Essentially the functionality I am looking to add is a “auto hide” of terms that have no posts – which would also auto update the counts displayed – I think this would work for you, see this feature request – https://support.searchandfilter.com/forums/topic/category-specific-searches/

    Thanks

    Ross Moderator in reply to:
    ajax loading not working
    #1299

    Hey Piotr

    Sorry I missed that!

    Yeah its pretty easy, edit the search template I created for you

    And you have this code for your main loop:

    if (have_posts()) : while (have_posts()) : the_post(); ?>
    
    <?php   get_template_part( 'blog-post-format/blog-post', get_post_format() ); ?>
    
    <?php endwhile; ?>	
    <?php endif; ?>

    Before the endif you need to add an else so it would be like:

    if (have_posts()) : while (have_posts()) : the_post(); ?>
    
    <?php   get_template_part( 'blog-post-format/blog-post', get_post_format() ); ?>
    
    <?php endwhile; ?>	
    <?php else: ?>
     No Posts Found
    <?php endif; ?>
    Ross Moderator in reply to:
    Cannot get AJAX results to show on same page as form
    #1279

    Hey Ken how are you getting on?

    Yeah it looks like some modifications to the layout from you theme which don’t seem to work with static templates…

    If you can begin modifying the search results template with your theme then your on to a winner.

    The search results page is much like an archive page, rather than a standard post/page so maybe look at how you can modify your archive pages using your themes editing capabilities which will hopefully give you a good start for modifying the search page… ๐Ÿ™‚

    Ross Moderator in reply to:
    Create New Form not Saving in WP-Admin
    #1275

    Hey Raoni

    Unfortunately not.. but I will look at adding it in…

    Open a feature request here and I will keep track of it ๐Ÿ™‚

    https://support.searchandfilter.com/forums/forum/search-filter-pro/feature-requests/

    Ross Moderator in reply to:
    Not Updating To Current Version
    #1273

    Hey Robert! Just sent you an email there with the latest update ๐Ÿ™‚

    Ross Moderator in reply to:
    Create New Form not Saving in WP-Admin
    #1271

    OK I think its now fixed ๐Ÿ˜‰

    The first problem was a PHP error which was easily fixed..

    The second problem was the plugin, searching your WP Meta table, to create a dropdown list and I think the memory limit was exceeded! This means you must have a lot of values in your meta!!

    Anyway, also my query wasn’t very efficient, so it is now optimised and fixed ๐Ÿ™‚

    Hope there will be no more problems!

    Thanks

    Ross Moderator in reply to:
    Create New Form not Saving in WP-Admin
    #1270

    Working on it now, please bear with me ๐Ÿ™‚ I fixed the first issues but there seems to be another so making some changes live to the plugin with debug enabled…

    Ross Moderator in reply to:
    Create New Form not Saving in WP-Admin
    #1263

    Hey Raoni

    Think I’ve sorted it, would you mind sending across you FTP details and I’ll do a couple of tests?

    Thanks
    Ross

Viewing 10 posts - 10,231 through 10,240 (of 10,351 total)