From 7daf1e23e865f9695cb6b11584f590cb2df1bc8e Mon Sep 17 00:00:00 2001 From: Mike Letellier Date: Tue, 31 Dec 2024 15:48:52 -0400 Subject: [PATCH 1/2] Include count on Formidble menu item --- classes/controllers/FrmAppController.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/classes/controllers/FrmAppController.php b/classes/controllers/FrmAppController.php index a46dd35dad..d943f488a5 100644 --- a/classes/controllers/FrmAppController.php +++ b/classes/controllers/FrmAppController.php @@ -15,6 +15,11 @@ public static function menu() { } $menu_name = FrmAppHelper::get_menu_name(); + + if ( in_array( $menu_name, array( 'Formidable', 'Forms' ), true ) ) { + $menu_name .= wp_kses_post( FrmInboxController::get_notice_count() ); + } + add_menu_page( 'Formidable', $menu_name, 'frm_view_forms', 'formidable', 'FrmFormsController::route', self::menu_icon(), self::get_menu_position() ); } From 7bc97a4d7cb2778969eb4dc811a940e40eda82d0 Mon Sep 17 00:00:00 2001 From: Mike Letellier Date: Tue, 31 Dec 2024 15:50:08 -0400 Subject: [PATCH 2/2] Typo fix --- changelog.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 9c76303376..c63d3d1cbb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2692,7 +2692,7 @@ * Pro: Fix exporting multiple entries with the bulk CSV export option * Pro: Fix Entry ID filter in views when using a comma separated list of ids * Pro: Fix 3+ level dynamic fields to hide the last field when the first is changed -* Pro: Fix apostraphes in form action logic +* Pro: Fix apostrophes in form action logic = 2.0.03 = * Use frm_clear instead of clear to minimize conflicts