Your code on lines 279-288 in l7-admin-help-videos.php
is removing meta boxes from the Post post type, not the l7_help_video post type. The code you have is:
public function remove_ex_box(){
remove_meta_box( 'authordiv','post','normal' ); // Author Metabox
remove_meta_box( 'commentstatusdiv','post','normal' ); // Comments Status Metabox
remove_meta_box( 'commentsdiv','post','normal' ); // Comments Metabox
remove_meta_box( 'postcustom','post','normal' ); // Custom Fields Metabox
remove_meta_box( 'postexcerpt','post','normal' ); // Excerpt Metabox
remove_meta_box( 'revisionsdiv','post','normal' ); // Revisions Metabox
remove_meta_box( 'slugdiv','post','normal' ); // Slug Metabox
remove_meta_box( 'trackbacksdiv','post','normal' ); // Trackback Metabox
}
Please replace that code with:
public function remove_ex_box(){
remove_meta_box( 'authordiv','l7_help_video','normal' ); // Author Metabox
remove_meta_box( 'commentstatusdiv','l7_help_video','normal' ); // Comments Status Metabox
remove_meta_box( 'commentsdiv','l7_help_video','normal' ); // Comments Metabox
remove_meta_box( 'postcustom','l7_help_video','normal' ); // Custom Fields Metabox
remove_meta_box( 'postexcerpt','l7_help_video','normal' ); // Excerpt Metabox
remove_meta_box( 'revisionsdiv','l7_help_video','normal' ); // Revisions Metabox
remove_meta_box( 'slugdiv','l7_help_video','normal' ); // Slug Metabox
remove_meta_box( 'trackbacksdiv','l7_help_video','normal' ); // Trackback Metabox
}
]]>
Very good, but the video is displayed in a very small size. There’s no way to set a larger size to be viewed within the dashboard?
]]>The installation and setup of the plugin went smoothly. When I’m logged in as an admin, everything works. When I log in as a user (I’ll be adding Authors to the site), I don’t see the Help option in the menu. I made sure I have the Author option checked in the settings. Am I missing another setting somewhere which prevents the video help from being displayed?
]]>When I attempt to activate or use, I am getting an error (see below) which is on every page once it begins.
(includes/functions.php): failed to open stream: No such file or directory in /home/taste/public_html/wp-content/plugins/l7-admin-help-videos/includes/options-page.php on line 16
Warning: include_once(): Failed opening ‘includes/functions.php’ for inclusion (include_path=’.:/opt/php54/lib/php’) in /home/taste/public_html/wp-content/plugins/l7-admin-help-videos/includes/options-page.php on line 16
Cannot send session cache limiter – headers already sent (output started at /home/taste/public_html/wp-content/plugins/l7-admin-help-videos/includes/options-page.php:16) in /home/taste/public_html/wp-content/plugins/paid-memberships-pro/paid-memberships-pro.php on line 27
Since client needs the membership plugin, hoping you can suggest something.
Thanks in advance for your help.
Cenay’
]]>