• Hello,

    After changing my PHP to up-to-date version, I get this warnings:

    Warning: Creating default object from empty value in /home/bjkas/domains/dzienniktradera.pl/public_html/wp-content/plugins/widgetize-pages-light/include/otw_labels/otw_sbm_grid_manager_object.labels.php on line 2

    Warning: Creating default object from empty value in /home/bjkas/domains/dzienniktradera.pl/public_html/wp-content/plugins/widgetize-pages-light/include/otw_labels/otw_sbm_shortcode_object.labels.php on line 2

    Warning: Creating default object from empty value in /home/bjkas/domains/dzienniktradera.pl/public_html/wp-content/plugins/widgetize-pages-light/include/otw_labels/otw_sbm_factory_object.labels.php on line 2

    There are visable for everyone on website. How to get rid of them??

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Dagmar

    (@fraudiebels)

    Hello,

    if debugging in WordPress is aktivated, I get the same warnings for PHP versions 7.4 and 7.3, not for PHP v 7.2

    Would be great if plugin authors could tell if there will be an update to make the plugin compatible with the newest PHP versions!

    @bjkasowski Did you figure this out? i just updated PHP to latest version and i am getting the same error..

    To fix the issue simply open each file and change as follow:

    /home/bjkas/domains/dzienniktradera.pl/public_html/wp-content/plugins/widgetize-pages-light/include/otw_labels/otw_sbm_grid_manager_object.labels.php

    add after <?php:
    if ($otw_sbm_grid_manager_object){

    and the last line, replace ?> with :
    }?>

    /home/bjkas/domains/dzienniktradera.pl/public_html/wp-content/plugins/widgetize-pages-light/include/otw_labels/otw_sbm_shortcode_object.labels.php

    add after <?php:
    if ($otw_sbm_shortcode_object){

    and the last line, replace ?> with :
    }?>

    /home/bjkas/domains/dzienniktradera.pl/public_html/wp-content/plugins/widgetize-pages-light/include/otw_labels/otw_sbm_factory_object.labels.php

    add after <?php:
    if ($otw_sbm_factory_object){

    and the last line, replace ?> with :
    }?>

    qaws

    (@qaws)

    Thanks, this fixed it for me.

    Thank you for this, it was a tremendous help.

    Hopefully the plugin author jumps on this patch soon and releases an update.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘“empty value” warning after updating PHP.’ is closed to new replies.