• Resolved manuelputmans

    (@manuelputmans)


    When I add the ‘Juwel Rio 450 in the search field i get In Stock. The article in ‘not in Stock’

    As wel in Stockmanagement as in the article everything is ‘On’

    What can I do to solve this?

    Manuel

    • This topic was modified 5 years, 3 months ago by manuelputmans.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author ILLID

    (@mihail-barinov)

    Hello,

    Please go to plugin settings page and click ‘Clear cache’ button.
    Does this help?

    Regards

    I have the same problem. Personally, I used the Reindex table button. But is there a function to make it happen automatically every hour or every day?

    Plugin Author ILLID

    (@mihail-barinov)

    Hello @yzabel ,

    You can use cron job for this.
    Code can look like

    add_action( 'wp', 'aws_set_cron' );
    function aws_set_cron() {
        if ( ! wp_next_scheduled ( 'aws_reindex_table' ) ) {
            wp_schedule_event(time(), 'daily', 'aws_reindex_table');
        }
    }

    This code will run re-index cron job every day.

    @mihail-barinov Thank you so much! Have a nice day!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Out of stock article shows ‘On Stock”’ is closed to new replies.