by David Jensen
5 (12 reviews)
Light Modal Block
Lightweight, customizable modal block for the WordPress block editor
Compatible with WP 6.9.4
v1.9.0
Current Version v1.9.0
Updated 1 month ago
Last Update on 23 Feb, 2026
Refreshed 6 hours ago
Last Refreshed on
Rank
#5,086
—
No change
Active Installs
2K+
-7.7%
KW Avg Position
102.2
-0.6 better
Downloads
14.8K
+16 today
Support Resolved
100%
—
No change
Rating
100%
Review 5 out of 5
5
(12 reviews)
Next Milestone 3K
2K+
3K+
728
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 710 more installs to reach 3K+
Rank Changes
Current
#5,086
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
12 reviews
Overall
100%
5
12
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 5 of 5| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| modal | 27 | — | Tag | 1 week ago |
| lightbox | 42 | — | Tag | 1 week ago |
| popup | 109 | — | Tag | 1 week ago |
| block | 135 | — | Tag | 1 week ago |
| gutenberg | 198 | — | Tag | 1 week ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Resolved
Unresolved
1
Total Threads
1
Resolved
0
Unresolved
100%
Resolution Rate
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.9.0
- Last Updated
- Feb 23, 2026
- Requires WP
- 6.6+
- Tested Up To
- 6.9.4
- PHP Version
- 7.0 or higher
- Author
- David Jensen
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 12
- Support Threads
- 1
- Resolved
- 100%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Light Modal Block
Each modal is given a unique ID, which can be found inside the inspector controls of the block settings. It will look something like: Mk6I8L4haJB To open a modal: window.lightModalBlocks.get('modal-id-here').showModal(true); To close a modal: window.lightModalBlocks.get('modal-id-here').closeModal();
Paste the following code in your child themes functions.php file or similar: /** * Prevents the light modal block from focusing on a specific element when it opens. * * @return void */ add_action( 'wp_enqueue_scripts', function () { wp_add_inline_script( 'cloudcatch-light-modal-block-view-script', 'window.lmbFocusableElements = "";', 'before' ); } );
The class lmb-open is added to the <body> of the page when a modal is open. You can use the following CSS to prevent scrolling .lmb-open { overflow: hidden; }