Hello,
is it normal that the tab Enfold Child is hidden for the role Editor?
If yes, is there a workaround to let the editors see the Enfold Child options?
Thank you.
Hey Marco,
Thank you for the inquiry.
Yes, the theme options page is only visible to administrators. Changing the condition will require modification of the core files. If you want to proceed, look for the file enfold\framework\php\class-superobject.php and this code around line 183:
if( is_admin() ) {
add_action( 'admin_print_scripts',array( $this, 'set_javascript_framework_url' ) );
new avia_adminpages( $this );
new avia_meta_box( $this );
new avia_wp_export( $this );
}
These changes cannot be done in the child theme, unfortunately.
Best regards,
Ismael
Thank you Ismael for your help.