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

    (@mgulzar)

    Hello Meks,

    Can you please send me the WordPress site link with username and password so i can review the error.
    Because i just try it at a fresh WP and it works perfect

    thanks..!

    Plugin Author mgulzar

    (@mgulzar)

    This is because your PHP version is 5.3
    in PHP 5.3 array is declared as $array = array();
    BUT in PHP 5.4 its upgraded as $array = [];

    Solution:

    Just open that file (\responsive-menu-card-price-list-items\includes\responsive-call.php) and at line:59

    replace
    $array = [];
    with
    $array = array();
    this will solve your problem, and i will fix this in the plugin also

    thanks..!

    Plugin Author mgulzar

    (@mgulzar)

    warning is fixed in latest release

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Error’ is closed to new replies.