Forum Replies Created

Viewing 1 replies (of 1 total)
  • I found solution how to fix it.

    Into woocommerce-embed-videos-product-image-gallery.php file into plugin folder
    update these lines of code

    if ( !in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) {
        wp_die( __( '<b>Warning</b> : Install/Activate Woocommerce to activate "Embed Videos To Product Image Gallery" plugin', 'woocommerce' ) );
    }

    on to

    include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
    
    if ( !is_plugin_active( 'woocommerce/woocommerce.php' ) ) {
        wp_die( __( '<b>Warning</b> : Install/Activate Woocommerce to activate "Embed Videos To Product Image Gallery" plugin', 'woocommerce' ) );
    }
Viewing 1 replies (of 1 total)