• Resolved ginesta

    (@ginesta)


    Hello, I have an issue (I believe since I update the plugin) that, on the edit page usig Avada is shown a warnig in the top of the screen and does ot allow the screen to r

    Notice: Trying to get property ‘base’ of non-object in /home/customer/www/ginestadigital.com/public_html/wp-content/plugins/wicked-folders/lib/class-wicked-folders-admin.php on line 260

    Do you know how can I fix it?

    I have look in the code and the towarning points the following line :
    if ( ( isset( $_GET[‘page’] ) && ‘wicked_folders_settings’ == $_GET[‘page’] ) || ‘wf_collection_policy’ == $typenow || ( false !== $screen && ‘media’ == $screen->base && ‘add’ == $screen->action ) ) {

    Thank you in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author wickedplugins

    (@wickedplugins)

    Hi @ginesta,

    Thanks for reporting this problem. Can you please try replacing line 260 with the following line:

    if ( ( isset( $_GET['page'] ) && 'wicked_folders_settings' == $_GET['page'] ) || 'wf_collection_policy' == $typenow || ( false !== $screen && isset( $screen->base ) && isset( $screen->action ) && 'media' == $screen->base && 'add' == $screen->action ) ) {

    I believe that will fix the problem for you but, if not, please let me know. We’ll include this fix in the next plugin update.

    Thread Starter ginesta

    (@ginesta)

    Thank you very much, it worked

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Avada theme and plugin’ is closed to new replies.