Error with PHP 7.2+
-
Seeing the following error with PHP 7.2+ …
Warning: count(): Parameter must be an array or an object that implements Countable in /xxx/xxx/xxx/xxx/wp-content/plugins/sticky-side-buttons/ssb-main.php on line 217
Something like this should fix it…
if ( is_array($buttons) || is_object($buttons) ) $btns_count = count($buttons['btns']);
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Error with PHP 7.2+’ is closed to new replies.