Warning: A non-numeric value encountered…
-
The issue:
Warning: A non-numeric value encountered in /var/www/web/wp-content/plugins/ultimate-social-media-icons/libs/controllers/sfsi_frontpopUp.php on line 63
The fix is to simply cast the value to an integer, so instead of:
$time_popUp=$sfsi_section7_options['sfsi_Shown_popupOnceTime']; $time_popUp=$time_popUp*1000; ob_start();
you’d do:
$time_popUp=(int)$sfsi_section7_options['sfsi_Shown_popupOnceTime']; $time_popUp=$time_popUp*1000; ob_start();
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Warning: A non-numeric value encountered…’ is closed to new replies.