Forums Forums Search & Filter Pro Missing products in results

Tagged: , ,

Viewing 8 posts - 11 through 18 (of 18 total)
  • Anonymous
    #263661

    I was just updating plugins – ok now

    Trevor
    #263666
    This reply has been marked as private.
    Anonymous
    #263668

    Thank you – so I need to check if any other dealers have the nickname showing.

    Thanks for all your help here.

    Are you nearing the roll out of V3 yet?

    Trevor
    #263670

    Getting closer, but not there yet. Make sure that the user display name is their business name (that you want to be searchable), and not the person’s name. I think the User Description is the textarea at the bottom, so you could use that maybe. But, after you have checked them all (there are a lot), if you make changes, rebuild the Relevanssi index.

    Anonymous
    #264100

    Thanks again – do I need to manually rebuild the Revelvanssi index or is there an automated system as there were more than 700 not indexed when I checked this morning?

    Trevor
    #264104

    The Relevanssi system is automatic, but are you importing posts I wonder?

    Anonymous
    #264106

    Yes, I am using WPAllimport – I have the code to make sure that the S&F is working in the functions.php file. Is there code I need to add for Relevanssi as well?

    Trevor
    #264108

    Yes, you will need to follow this guidance:

    https://www.relevanssi.com/knowledge-base/wp-import-compatibility/

    You could probably add just this one line:

    relevanssi_index_doc($id, true, relevanssi_get_custom_fields(), true);

    That’s what I would do, so it would look like this:

    add_action('pmxi_saved_post', 'wp_all_import_post_saved', 1000, 1);
    
    function wp_all_import_post_saved($id) {
        do_action('search_filter_update_post_cache', $id);
        relevanssi_index_doc($id, true, relevanssi_get_custom_fields(), true);
    }
Viewing 8 posts - 11 through 18 (of 18 total)