• Resolved soroka95

    (@soroka95)


    Hi! I see that after import I have wc_update_product_lookup_tables_rating_count_batch in scheduled actions, default limit is 50, how to increase the limit?

    Can I call wc_update_product_lookup_tables_rating_count_batch( 0, 150 ) after import?

    Example:

    function after_xml_import_function() { 
    	wc_update_product_lookup_tables_rating_count_batch( 0, 150 );
    
    }
    add_action( 'pmxi_after_xml_import', 'after_xml_import_function', 1, 1 );
Viewing 1 replies (of 1 total)
  • Plugin Author WP All Import

    (@wpallimport)

    Hi @soroka95,

    default limit is 50, how to increase the limit?

    Can you elaborate on what limit you’re referring to?

    Can I call wc_update_product_lookup_tables_rating_count_batch( 0, 150 ) after import?

    Yes, you could do that, though I’ve never tested it myself.

Viewing 1 replies (of 1 total)
  • The topic ‘wc_update_product_lookup_tables’ is closed to new replies.