is_plugin_active() not properly returning true

Per the WP Codex, you need to be sure you are passing the directory and file:

<?php
   If (is_plugin_active('plugin-directory/plugin-file.php')) {
     //plugin is activated
  }
?>