WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: quick-download-button (Used by 50 domains)

Quick Download Button

πŸ‘€ Abidemi Kusimo πŸ“¦ v1.3.0 πŸ”— Plugin Homepage

Quick Download Button lets you add professional download buttons anywhere on your WordPress site with minimal effort. Whether you are sharing PDFs, music, software, videos, or archives, every aspect of the button β€” style, colour, icon, countdown, and access rules β€” is controlled from a clean settings panel or a single shortcode.

Seven button styles

  • Large β€” full-width panel with prominent icon area
  • Mid β€” compact horizontal layout
  • Small β€” minimal inline style
  • Basic β€” clean, no-frills button
  • Pill β€” modern rounded pill shape
  • Card β€” elevated card with a panel background
  • Ghost β€” outlined transparent style

Countdown timer and popup modal

Set a wait time in seconds before the download starts. During the countdown an animated spinner and optional message keep the visitor informed.

Add a popup modal to display any content while the countdown runs β€” AdSense, banner ads, custom HTML, shortcodes, or any other embed code. You control whether the visitor can dismiss the popup early or whether it stays until the download fires automatically.

Full feature list

  • Works with both the Gutenberg block editor and the Classic Editor via shortcode
  • Button Row block and [quick_download_button_group] shortcode β€” place multiple buttons side by side with gap, alignment, and stack-on-mobile controls
  • Countdown timer β€” configurable wait time in seconds with a custom message
  • Popup modal during countdown β€” show ads or custom HTML/shortcodes while the timer runs; optionally prevent dismissal until the download starts
  • File size display β€” auto-calculated from the WordPress uploads folder, or enter any text manually (works with external URLs too)
  • File type icon β€” automatically detected for common extensions
  • Custom download icons β€” choose from 10 built-in icons or supply your own SVG
  • Custom file size icons β€” same built-in set or custom SVG
  • Icon position β€” left or right of the button label
  • Access control β€” restrict downloads to logged-in users or specific roles
  • External URL support β€” link to files hosted anywhere
  • Hidden download links β€” the real file URL is never exposed in the page source
  • Force download β€” bypasses the browser’s open-in-tab behaviour for supported file types
  • Open in new tab or same window
  • Custom button colour, font colour, border, border-radius, padding, and alignment
  • Panel colour for Card, Pill, and Ghost styles
  • Multisite compatible
  • Optimised loading β€” CSS and JS only enqueue on pages that contain a download button

Supported file types for automatic icon display:

pdf, `mp3`, `mov`, `zip`, `txt`, `doc`, `xml`, `mp4`, `ppt`, `htm`, `html`, `ps`, `tex`, `csv`, `xlsx`, `pptx`, `js`, `css`, `php`, and common images (`png`, `gif`, `jpg`, `jpeg`, `bmp`).

Developer-friendly

The plugin exposes several action and filter hooks so add-on plugins can extend it without editing core files:

  • qdb_editor_localize_data β€” add data to the Gutenberg editor script
  • qdb_localize_script_data β€” add data to the frontend script
  • qdb_shortcode_atts β€” modify parsed shortcode attributes
  • qdb_user_can_access β€” override or extend the access check
  • qdb_button_data_atts β€” inject extra data-* attributes onto the button element
  • qdb_shortcode_output β€” filter the final button HTML before output

Basic Usage

Gutenberg Block

  1. Open the post or page editor and click the Add Block (+) icon.
  2. Search for Download Button (listed under the Media category).
  3. Click the block to set the button title, then click the upload icon to select or upload your file.
  4. Configure colours, countdown, file size, access control, and popup in the block settings sidebar.

Shortcode β€” minimal

[quick_download_button title="Download" url="https://yoursite.com/wp-content/uploads/file.pdf"]

Shortcode β€” external file in a new tab

[quick_download_button title="Download" url_external="https://example.com/file.zip" open_new_window="true"]

Shortcode β€” countdown with wait message

[quick_download_button title="Download" url_external="https://example.com/file.zip" wait="15" msg="Please wait 15 seconds..."]

Shortcode β€” popup modal during countdown

The popup content goes between the opening and closing shortcode tags. It can include HTML, shortcodes, or ad embed code.

[quick_download_button title="Download" url_external="https://example.com/file.zip" wait="15"]

Sponsored by Example Co.

Check out our latest offer.

[/quick_download_button]

To prevent the visitor from closing the popup before the download starts:

[quick_download_button title="Download" url_external="https://example.com/file.zip" wait="15" popup_closable="0"]Ad or message here[/quick_download_button]

Shortcode β€” button group (multiple buttons in a row)

[quick_download_button_group alignment="center" gap="16"]
  [quick_download_button title="Download v1.0" url_external="https://example.com/v1.zip"]
  [quick_download_button title="Download v2.0" url_external="https://example.com/v2.zip"]
[/quick_download_button_group]

More Shortcode Examples

Auto-calculate file size (file must be in your WordPress uploads folder)

[quick_download_button file_size="1" title="Download" url="https://yoursite.com/wp-content/uploads/file.pdf"]

Manual file size (works with any URL, including external)

[quick_download_button file_size="14.5 MB" title="Download" url_external="https://example.com/file.zip"]

Hide the file extension icon

[quick_download_button title="Download" extension="0" url="https://yoursite.com/wp-content/uploads/file.pdf"]

Show file extension icon and text label

[quick_download_button title="Download" extension="1" extension_text="1" url="https://yoursite.com/wp-content/uploads/file.pdf"]

Change button style

[quick_download_button button_type="pill" title="Download Now" url_external="https://example.com/file.zip"]

Available values: large, mid, small, basic, pill, card, ghost

Custom colours

[quick_download_button button_type="ghost" color_bg="#0073aa" color_font="#ffffff" panel_color="#f0f8ff" title="Download Now" url_external="https://example.com/file.zip"]

Custom border

[quick_download_button button_type="small" border_width="2" border_style="solid" border_color="#333333" border_radius="9" title="Download" url_external="https://example.com/file.zip"]

Change icon colour (dark/light)

[quick_download_button button_type="large" color_icon_dark="false" color_bg="#000000" color_font="#ffffff" title="Download" url_external="https://example.com/file.zip"]

Place icon on the right

[quick_download_button icon_position="right" title="Download" url_external="https://example.com/file.zip"]

Restrict to logged-in users

[quick_download_button user_must_be="loggedin" title="Members Only Download" url_external="https://example.com/file.zip"]

Restrict to a specific role

[quick_download_button user_must_be="subscriber" title="Download" url_external="https://example.com/file.zip"]

Countdown with file size and message

[quick_download_button button_type="basic" wait="10" msg="Your download will begin shortly..." file_size="40 MB" title="Download Now" url_external="https://example.com/file.zip"]

Button alignment

[quick_download_button align="center" title="Download" url_external="https://example.com/file.zip"]

Stacked button group, mobile-friendly

[quick_download_button_group layout="stack" alignment="left" gap="8"]
  [quick_download_button title="Windows" url_external="https://example.com/app-win.zip"]
  [quick_download_button title="macOS"   url_external="https://example.com/app-mac.zip"]
  [quick_download_button title="Linux"   url_external="https://example.com/app-linux.tar.gz"]
[/quick_download_button_group]

For Developers: Using in a Theme or Template File

echo do_shortcode('[quick_download_button title="Download" url="https://yoursite.com/wp-content/uploads/file.pdf"]');

Shortcode Attributes Reference

[quick_download_button]

Attribute
Description
Default
Example value

title
Button label text
"Download"
"Download Now"

url
URL of a file in your WordPress uploads folder
β€”
"https://yoursite.com/wp-content/uploads/file.pdf"

url_external
URL of a file hosted outside WordPress
β€”
"https://example.com/file.zip"

file_size
"1" auto-detects size; any other value is displayed as-is
β€”
"1" or "14.5 MB"

extension
Show ("1") or hide ("0") the file type icon
"1"
"0"

extension_text
Also show the extension as text next to the icon
"0"
"1"

open_new_window
Open link in a new tab
"false"
"true"

wait
Seconds before the download starts
0
"15"

msg
Message shown during the countdown
"Please wait..."
"Loading..."

button_type
Button style
"large"
large / mid / small / basic / pill / card / ghost

color_bg
Button background colour
β€”
"#ffc107"

panel_color
Panel/card background colour (pill, card, ghost styles)
β€”
"#f0f8ff"

color_font
Button text colour
β€”
"#ffffff"

color_icon_dark
Use dark icon ("true") or light icon ("false")
"true"
"false"

icon_id
Built-in download icon
"default"
default / cloud / circle / file-dl / inbox / save / bolt / folder / archive / info / chip

file_size_icon_id
Built-in file size icon
"folder"
same set as icon_id

icon_position
Icon side of the button label
"left"
"right"

border_width
Border thickness in pixels
β€”
"2"

border_style
CSS border style
β€”
"solid"

border_color
Border colour
β€”
"#333333"

border_radius
Corner rounding in pixels
β€”
"9"

align
Button alignment on the page
β€”
left / center / right

padding
Vertical padding in pixels
β€”
"12"

user_must_be
Restrict access by role or login
β€”
"loggedin" / "subscriber"

validate_msg
Error message shown when access is denied
β€”
"Members only."

popup_closable
Allow ("1") or prevent ("0") dismissing the popup before countdown ends
"1"
"0"

The popup_content is passed as enclosed shortcode content (between the opening and closing tags), not as an attribute. This allows unrestricted HTML, ad code, and nested shortcodes.

[quick_download_button_group]

Attribute
Description
Default
Example value

layout
"horizontal" (side by side) or "stack" (column)
"horizontal"
"stack"

stack_on_mobile
Automatically stack buttons vertically on small screens
"true"
"false"

alignment
Justify the buttons within the row
"left"
left / center / right

gap
Gap between buttons in pixels
"12"
"20"

Donations

If Quick Download Button saves you time and you’d like to support its development, buy me a coffee. Thank you!

Documentation & Source Code

To report issues or contribute, visit the GitHub repository.

DomainExposuresHeadersLast Checked
m*p*i*o*i*e.cz βœ… F 2026-06-08 16:12:44
o*f*.o*g.uy βœ… F 2026-06-07 18:21:48
g*z*v*s*g*s.com (WP 7.0) βœ… F 2026-06-05 20:19:25
g*z*d*s*i*a*e*.com (WP 7.0) βœ… F 2026-06-05 20:13:57
a*a*t*s*i*-*a*a*v*.c*l*u*e.top (WP 6.2.9) ⚠️ F 2026-06-05 10:28:13
h*f*z*h*e*y*r.com (WP 6.5.5) βœ… F 2026-06-02 17:51:58
v*s*g*s*e*a*a.com (WP 7.0) βœ… F 2026-05-30 01:06:56
t*e*o*k*e*i*g*o*p.com (WP 6.7.5) βœ… F 2026-05-29 23:44:21
v*r*u*l*r*v*4*o*l*r*.com (WP 7.0) βœ… F 2026-05-29 20:46:46
r*y*d*t*n*.app (WP 6.6.2) βœ… F 2026-05-29 06:33:44
c*u*c*a*a*d*s.com βœ… F 2026-05-28 17:58:00
c*r*s*o*h*e*n*e*c*.com (WP 5.7.15) ⚠️ F 2026-05-28 10:41:54
d*s*c*l.com (WP 6.9.4) βœ… F 2026-05-27 08:46:41
e*a*i*.c*.th (WP 6.3.2) ⚠️ F 2026-05-26 23:19:36
l*l*c*.com (WP 6.1.1) ⚠️ F 2026-05-26 00:20:40
c*o*c*l*t*l*d*e*o*r*.com (WP 6.1.1) ⚠️ F 2026-05-25 23:12:15
t*r*s*o.a*t*c*o.com (WP 6.6.5) βœ… F 2026-05-25 22:01:03
b*f*s*r*a*s*p*.com (WP 7.0) βœ… F 2026-05-24 15:06:20
m*r*v*s*y*t.com (WP 6.5.8) βœ… F 2026-05-24 12:24:46
k*o*i*s*r*a*i*n*.com (WP 7.0) βœ… F 2026-05-23 11:48:22
l*a*e*s*i*-*a*.org (WP 7.0) βœ… D 2026-05-22 15:14:21
e*r*f*r*.com (WP 7.0) βœ… F 2026-05-21 19:16:13
f*t*y*i*d*a.com βœ… F 2026-05-21 12:47:22
d*v*d*l*b*r.com βœ… F 2026-05-21 06:08:18
e*p*e*s*r*p*e*v*c*.com (WP 6.9.4) βœ… F 2026-05-21 05:22:21
p*l*g*n.sa (WP 6.9.4) βœ… F 2026-05-20 04:00:47
k*l*h*r*c*t*r*n*.com (WP 6.9.4) βœ… F 2026-05-19 03:19:50
r*f*r*n*k*r*e.com (WP 6.9.4) βœ… F 2026-05-19 01:21:08
o*e*i*l*t*r*c*.u*i*i*.a*.at (WP 6.9.4) βœ… F 2026-05-18 12:24:41
y*n*i*g.com (WP 6.4.8) ⚠️ F 2026-05-18 10:14:34
a*d*s*d*.com βœ… F 2026-05-17 16:48:12
o*e*k*r*u*.c*l*u*e.top (WP 6.2.9) ⚠️ F 2026-05-16 18:40:03
c*l*u*e.top (WP 6.2.9) ⚠️ F 2026-05-16 18:35:56
k*i*g*n*e*m*s*k*r*i*r*e*.de βœ… F 2026-05-16 18:33:34
n*t*f*c*.legal βœ… F 2026-05-16 00:09:21
j*t*l*m*n*e*i*n.com (WP 6.1.10) ⚠️ C 2026-05-15 22:05:32
j*s*u*t*l*m*n.com (WP 6.1.10) ⚠️ C 2026-05-15 02:56:27
t*x*b*r*n*x*e*t.ru βœ… F 2026-05-15 01:45:14
s*y*m*i*a*h*r*.in (WP 6.9.4) βœ… F 2026-05-13 16:14:08
n*t*r*s*a*r*n*h*s*.com (WP 6.9.4) βœ… F 2026-05-12 21:35:09
i*s*a*l*t*e*e*v*c*-*o*r*h*l*a*d.nl (WP 6.9.4) βœ… F 2026-05-11 23:56:02
c*n*o*r*2*2*.l*n*u*p*c*r*e.fr βœ… F 2026-05-11 22:50:55
w*i*e*t*c*f*s*.org (WP 6.3.5) ⚠️ F 2026-05-11 18:13:55
j*z*a*o*r*i*g.com (WP 6.9.4) βœ… F 2026-05-11 03:52:34
n*j*h*e*v*c*s.com (WP 6.2.6) ⚠️ C 2026-05-10 22:13:45
g*a*c*.com (WP 5.6.17) ⚠️ F 2026-05-08 02:15:34
v*m*r*.com (WP 6.9.4) βœ… F 2026-05-06 17:11:05
s*r*a*i*o*.com (WP 6.9.4) βœ… F 2026-05-04 11:08:16
l*v*l*u*g*a*k.vip (WP 6.2.9) ⚠️ F 2026-05-03 23:55:46
w*r*o*r*p*i*n.com (WP 6.9.4) βœ… F 2026-05-03 21:23:01
e*m*a.org βœ… F 2026-05-03 01:25:50
j*t*c*z*n*.com (WP 6.3.1) ⚠️ F 2026-05-02 14:40:29

Top 50 Plugins

Plugin Count
elementor 1,796,741
contact-form-7 1,766,546
elementor-pro 1,047,260
woocommerce 815,042
revslider 616,486
jetpack 466,278
js_composer 431,474
wp-rocket 333,316
essential-addons-for-elementor-lite 293,145
gravityforms 266,592
complianz-gdpr 255,931
cookie-law-info 230,628
instagram-feed 227,636
google-site-kit 221,594
sitepress-multilingual-cms 220,708
google-analytics-for-wordpress 213,613
header-footer-elementor 209,754
elementskit-lite 206,554
bluehost-wordpress-plugin 190,677
gutenberg 162,083
gutenberg-core 159,164
cookie-notice 150,869
the-events-calendar 131,142
litespeed-cache 130,431
wpforms-lite 129,343
gtranslate 127,652
astra-sites 119,407
popup-maker 115,819
woocommerce-payments 112,815
tablepress 108,825
coblocks 99,308
honeypot 97,125
astra-addon 95,116
wp-smushit 93,343
duracelltomi-google-tag-manager 93,328
all-in-one-seo-pack 93,096
LayerSlider 91,463
bb-plugin 90,683
premium-addons-for-elementor 86,707
megamenu 86,279
akismet 85,938
cleantalk-spam-protect 83,757
mailchimp-for-wp 83,585
woocommerce-gateway-stripe 82,978
ml-slider 80,826
fusion-builder 79,481
borlabs-cookie 79,231
ewww-image-optimizer 78,903
wp-pagenavi 78,615
formidable 77,926

Top 50 Themes

Theme Count
hello-elementor 614,199
Divi 509,746
astra 422,824
flatsome 132,849
Avada 124,112
generatepress 119,667
pub 109,731
oceanwp 83,251
kadence 78,264
enfold 71,684
salient 66,622
twentytwentyfour 58,741
h4 56,268
twentyseventeen 56,055
bb-theme 55,201
cocoon-master 52,071
betheme 51,693
blocksy 50,524
dt-the7 46,049
twentytwentyfive 43,672
neve 39,246
Avada-Child-Theme 37,532
gox 33,400
woodmart 33,232
bridge 32,813
twentytwentyone 32,058
lightning 31,414
twentytwenty 29,980
swell 28,566
Impreza 26,363
bricks 25,959
twentytwentythree 23,984
Newspaper 23,408
sydney 23,318
voxel 22,439
twentytwentytwo 19,960
epik-redesign 19,270
uncode 19,069
kubio 18,843
sinatra 18,674
twentysixteen 18,163
storefront 17,841
pro 17,833
Total 14,695
extendable 14,576
yith-wonder 14,035
hello-theme-child-master 13,314
themify-ultra 12,964
factory-templates-4 12,913
yootheme 12,910