Check whether WooCommerce plugin is activated or not
<?php
if ( ! function_exists( 'is_woocommerce_activated' ) ) {
/**
* Check whether WooCommerce plugin is activated or not
* @return bool
*/
function is_woocommerce_activated() {
if ( class_exists( 'WooCommerce' ) ) {
return true;
} else {
return false;
}
}
}