Envira Gallery License Notice

Same thing: updated to 5.2.4 and still see the envira gallery license warning.

1 Like

Hello There,

Our developers is already made aware of this issue. Meanwhile, you can resolve this issue by adding the following code in your child theme’s functions.php file

// Remove License Functionality
// =============================================================================

if ( ! function_exists( 'x_envira_gallery_remove_license_functionality' ) ) :

  function x_envira_gallery_remove_license_functionality() {

    if ( is_admin() ) {

      //
      // 1. Remove the settings menu.
      // 2. Remove license notices.
      //

      remove_action( 'admin_menu', array( Envira_Gallery_Settings::get_instance(), 'admin_menu' ) ); // 1
      remove_action( 'admin_notices', array( Envira_Gallery_License::get_instance(), 'notices' ) );  // 2

    }
    
  }

  add_action( 'init', 'x_envira_gallery_remove_license_functionality', 9999 );

endif;

Please bear with us.

1 Like

Hey RueNel,

I wanted to let you know that the 2017 11 15 update to 1.2.7 did not fix this issue. Just in case you folks were hoping that the update yesterday would fix it, it did not.

Hopefully this problem is resolved soon ! thank you :slight_smile:

Hello There,

Thanks for updating this thread. We are aware of the notice. We have pushed the update to resolve the possible issues with MEJS in Wordpress 4.9 which is very crucial. You can check out our changelog here: https://theme.co/changelog/

And about this issue, this is already in our issue tracker. Hopefully our developers can resolve this in our future release anytime soon.

Thank you for your understanding.

2 Likes

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.