diff --git a/classes/controllers/FrmAppController.php b/classes/controllers/FrmAppController.php index b83e1e2ce7..8a90f1e9b2 100644 --- a/classes/controllers/FrmAppController.php +++ b/classes/controllers/FrmAppController.php @@ -1364,8 +1364,20 @@ private static function enqueue_floating_links( $plugin_url, $version ) { * @return bool */ private static function in_our_pages() { - global $current_screen; - return FrmAppHelper::is_formidable_admin() || ( ! empty( $current_screen->post_type ) && 'frm_logs' === $current_screen->post_type ); + global $current_screen, $pagenow; + if ( FrmAppHelper::is_formidable_admin() ) { + return true; + } + + if ( ! empty( $current_screen->post_type ) && 'frm_logs' === $current_screen->post_type ) { + return true; + } + + if ( in_array( $pagenow, array( 'term.php', 'edit-tags.php' ), true ) && 'frm_application' === FrmAppHelper::simple_get( 'taxonomy' ) ) { + return true; + } + + return false; } /**