No way to upgrade to pro. I paid the money to upgrade to EnVira Gallery Pro version the $99 package but there does not seem to be a way to add my license info.
Hey @msp686sp,
We’ve hidden the Envira License field. To bring it back, you need to install and activate a child theme. If you’re not sure how to do that, you can follow the instruction here https://theme.co/docs/child-themes
Once the child theme is activated, add the following code in the child theme’s functions.php.
add_action( 'after_setup_theme', 'x_show_envira_license' );
function x_show_envira_license() {
remove_action( 'envira_gallery_admin_styles', 'x_envira_gallery_hide_key_box' );
remove_action( 'admin_print_scripts', 'x_envira_gallery_hide_license_errors', 20 );
}
If you don’t want to use a child theme, you can add the code using a plugin like Code Snippets.
Please just note that we do not provide support for 3rd party plugins. In case you encounter issues with one, please contact the 3rd party plugin author.
Hope that helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.