Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jeff Starr

    (@specialk)

    For sites with many many posts and/or posts with LOTS of words. Depending on server capacity, PHP may time out when trying to go through and count everything. As a workaround solution, it’s possible to disable the “all word count” shortcode by adding the following code to your theme functions.php, or add via custom plugin:

    function sbs_word_count_all_disable($disable) { return true; }
    add_filter('sbs_word_count_all_disable', 'sbs_word_count_all_disable');

    Let me know if I can provide any further infos, glad to help anytime.

    Thread Starter Emmanuel Kuebutornye

    (@emmanuelkuebu)

    This worked. Thanks for the swift response.

    Plugin Author Jeff Starr

    (@specialk)

    You’re very welcome.

    Consider leaving a quick review?

    Either way, cheers Emmanuelson.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Plugin is causing critical error on my website’ is closed to new replies.