by FirelightWP
4.6 (69 reviews)
LightPress Lightbox
Simple, lightweight lightbox plugin for WordPress. Formerly the WP JQuery Lightbox.
Tested up to WP 6.8.3 (Current: 6.9)
v2.3.4
Current Version v2.3.4
Updated 9 months ago
Last Update on 16 Apr, 2025
Synced 7 hours ago
Last Synced on
Rank
#896
—
No change
Active Installs
40K+
-7.5%
KW Avg Position
N/A
—
No change
Downloads
892.2K
+40 today
Support Resolved
0%
—
No change
Rating
92%
Review 4.6 out of 5
4.6
(69 reviews)
Next Milestone 50K
40K+
50K+
83
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 6,694 more installs to reach 50K+
Rank Changes
Current
#896
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
4.6
69 reviews
Overall
92%
5
55
(80%)
4
7
(10%)
3
3
(4%)
2
1
(1%)
1
3
(4%)
Tracked Keywords
Showing 0 of 0| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| No keyword data available yet. | ||||
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
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.3.4
- Last Updated
- Apr 16, 2025
- Requires WP
- 5.0+
- Tested Up To
- 6.8.3
- PHP Version
- 7.0 or higher
- Author
- FirelightWP
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.6
- Reviews
- 69
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,738
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#930
Skyboot Custom Icons for Elementor
200K+ installs
#254
Performance Lab
200K+ installs
#267
Photo Gallery by 10Web – Mobile-Friendly Image Gallery
200K+ installs
#268
Frequently Asked Questions
Common questions about LightPress Lightbox
Make sure your site is not throwing any javascript errors. Use your browsers javascript console to find out.
If you're running a custom theme:
Make sure you have wp_head(); just before the closing </head> tag of your theme, or you will break many plugins, which generally use this hook to reference JavaScript files.
For the same reason, always have wp_footer(); just before the closing </body> tag of your theme.
Many JavaScript optimizers, combiners, minifiers, etc. conflict with wp_localize_script, used to configure this plugin and many others.
If you have problems with jQuery Lightbox; first disable all JavaScript-optimizing plugins. (Optimize Scripts, W3 Total Cache, WP Minify etc)
If you develop JavaScript optimizers for WordPress, please play nice with the default API...
More info about this issue
Lastly:
Disable all other plugins, one at a time. Try the lightbox between each.
Revert to the default theme. Did it help? Fix your theme.
Search the forums for similar symptoms.
Still have problems? Post a link and describe what issue you're having, and tell us what of these steps you've already tried.
Can the lightbox display the image description instead of the title?
WP jQuery Lightbox grabs texts from three different HTML nodes;
title-attribute of link-to-image
img tag's title attribute (if 1 is empty)
img tag's alt attribute (if 1 and 2 is empty)
HTML content of .gallery-caption or .wp-caption-text (in that order)
Look at how the default TwentyTwelve theme uses these in its galleries and set up your theme so it outputs what you need in these places.
I can see elements of my site through the overlay
It's a problem of z-index. Check the z-index property for the problematic elements, and force them to be less than 100. (Thanks dway!)
How do I add images to a post?
Inserting Images into Posts and Pages
How do I create a thumbnail gallery?
Upload images to a post (see previous question) and use WordPress' built-in gallery shortcode: [gallery link="file"]
Note the link="file" - this is crucial! By default the gallery will link your humbnails to a page displaying your image. With link="file" the thumbnails links
directly to the image files - allowing Lightbox to function.
Must fade-in and animation of all *box-scripts be so slow?
WP-jQuery Lightbox lets you configure the animation duration and disable image resizing from the admin panel. Set duration to 0 to disable animations entirely.
For developers:
Always have wp_footer(); just before the closing </body> tag of your theme, or you will break many plugins, which generally use this hook to reference JavaScript files.
Apply lightbox to any content by running jqlb_apply_lightbox($your_content, "any ID"); It returns a string with all image links lightboxed, grouped by "any id".
Many JavaScript optimizers, combiners, minifiers, etc. conflict with wp_localize_script, used to configure this plugin and many others.
If you have problems with jQuery Lightbox; first disable all JavaScript-optimizing plugins. (Optimize Scripts, W3 Total Cache, WP Minify etc)
If you develop JavaScript optimizers for WordPress, please play nice with the default API...
More info about this issue
If you're running a custom theme:
Make sure you have wp_head(); just before the closing </head> tag of your theme, or you will break many plugins, which generally use this hook to reference JavaScript files.
For the same reason, always have wp_footer(); just before the closing </body> tag of your theme.
Many JavaScript optimizers, combiners, minifiers, etc. conflict with wp_localize_script, used to configure this plugin and many others.
If you have problems with jQuery Lightbox; first disable all JavaScript-optimizing plugins. (Optimize Scripts, W3 Total Cache, WP Minify etc)
If you develop JavaScript optimizers for WordPress, please play nice with the default API...
More info about this issue
Lastly:
Disable all other plugins, one at a time. Try the lightbox between each.
Revert to the default theme. Did it help? Fix your theme.
Search the forums for similar symptoms.
Still have problems? Post a link and describe what issue you're having, and tell us what of these steps you've already tried.
Can the lightbox display the image description instead of the title?
WP jQuery Lightbox grabs texts from three different HTML nodes;
title-attribute of link-to-image
img tag's title attribute (if 1 is empty)
img tag's alt attribute (if 1 and 2 is empty)
HTML content of .gallery-caption or .wp-caption-text (in that order)
Look at how the default TwentyTwelve theme uses these in its galleries and set up your theme so it outputs what you need in these places.
I can see elements of my site through the overlay
It's a problem of z-index. Check the z-index property for the problematic elements, and force them to be less than 100. (Thanks dway!)
How do I add images to a post?
Inserting Images into Posts and Pages
How do I create a thumbnail gallery?
Upload images to a post (see previous question) and use WordPress' built-in gallery shortcode: [gallery link="file"]
Note the link="file" - this is crucial! By default the gallery will link your humbnails to a page displaying your image. With link="file" the thumbnails links
directly to the image files - allowing Lightbox to function.
Must fade-in and animation of all *box-scripts be so slow?
WP-jQuery Lightbox lets you configure the animation duration and disable image resizing from the admin panel. Set duration to 0 to disable animations entirely.
For developers:
Always have wp_footer(); just before the closing </body> tag of your theme, or you will break many plugins, which generally use this hook to reference JavaScript files.
Apply lightbox to any content by running jqlb_apply_lightbox($your_content, "any ID"); It returns a string with all image links lightboxed, grouped by "any id".
Many JavaScript optimizers, combiners, minifiers, etc. conflict with wp_localize_script, used to configure this plugin and many others.
If you have problems with jQuery Lightbox; first disable all JavaScript-optimizing plugins. (Optimize Scripts, W3 Total Cache, WP Minify etc)
If you develop JavaScript optimizers for WordPress, please play nice with the default API...
More info about this issue
Translations and help with implementing them would be nice.