by Room 34 Creative Services, LLC
4 (4 reviews)
Remove Broken Images
Very simply, uses JavaScript to remove broken images from page display.
Tested up to WP 6.7.5 (Current: 6.9.4)
v1.5.0-beta-1
Current Version v1.5.0-beta-1
Updated 1 year ago
Last Update on 04 Oct, 2024
Refreshed 7 hours ago
Last Refreshed on
Rank
#7,133
—
No change
Active Installs
1K+
—
No change
KW Avg Position
53.5
-1 better
Downloads
14.4K
+6 today
Support Resolved
0%
—
No change
Rating
80%
Review 4 out of 5
4
(4 reviews)
Next Milestone 2K
1K+
2K+
1,830
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 897 more installs to reach 2K+
Rank Changes
Current
#7,133
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.0
4 reviews
Overall
80%
5
3
(75%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
1
(25%)
Tracked Keywords
Showing 4 of 4| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| broken images | 22 | — | Tag | 3 days ago |
| deleted images | 23 | — | Tag | 3 days ago |
| missing images | 43 | — | Tag | 3 days ago |
| remove | 126 | — | Tag | 3 days 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
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.5.0-beta-1
- Last Updated
- Oct 04, 2024
- Requires WP
- 4.9+
- Tested Up To
- 6.7.5
- PHP Version
- N/A
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 4
- Reviews
- 4
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Remove Broken Images
That's it! There is no configuration necessary. The plugin adds a compact bit of JavaScript that detects if an image is returning a 404 error, and removes its HTML code from displaying on the page.
No, version 1 does not make any changes whatsoever to your database. It also does not remove the missing image file's URL from the HTML that is sent to the user's web browser; it removes the tags from the DOM (Document Object Model) after the page has been loaded, using JavaScript, to prevent "broken image" icons, extra white space, and links/captions associated with those missing images from displaying.
The r34rbi_missing_image jQuery hook (added in version 1.4.0) allows you to modify the plugin's behavior with custom code, whenever a missing image is encountered. It is used by the r34rbi_redirect_on_missing_image PHP filter (also added in version 1.4.0) to easily redirect to the home page in this situation, by adding this snippet of PHP code to your theme: add_filter('r34rbi_redirect_on_missing_image', '__return_true'); You can replace '__return_true' with a custom callback function to change the redirect URL to something other than your site's home page.