Unable to check if plugin is active

Try to check class_exists:

<?php 
     if( class_exists('acf') ) {
        echo "hi";
     }
?>

Leave a Comment