fbpx
Want To Add Extra Images Per Product Variation? Download This Free Plugin

remove presentation video from dashboard

Aline Pascal

Hello,
I’ve installed your plugin for woocommerce variations, but I have this presentation video that is automatically added to the dashboard of my client’s site and it’s causing me problems because I’m making a simplified custom dashboard for her and this video is adding too much content.
I’ve tried to make it disappear with a “display: none”, but it still appears, even with the mention !important in the CSS. How can I make it disappear, please?

Thanks !

 

Hakik Zaman

Hi Aline,

Thanks for reaching out to us.

Can you please replicate your issue here:

https://wptestbox.com/illi/wp-admin/

Username: admin

Password: demo

It will help us to inspect it from our side.

Thank you

Hakik Zaman

Hi Aline,

Please try the following snippet using the Code Snippets plugin:

add_action('woo_variation_swatches_settings_loaded', function($Woo_Variation_Swatches_Settings){
if( 'custom-dashboard' !== $_GET['page'] ){
return;
}
remove_action( 'admin_footer', array( $Woo_Variation_Swatches_Settings, 'modal_templates' ) );
}, 10, 1);

Note: Please don’t try the snippet inside your theme’s functions.php file. Use the recommended plugin to add the snippet.

Thank You