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

Plugin: quick-download-button (Used by 81 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
l*l*c*.com (WP 6.1.1) ⚠️ F 2026-04-25 11:26:13
h*e*o*s*r*.com (WP 6.9.4) βœ… F 2026-04-25 04:58:13
t*r*s*o.aytocdo.com (WP 6.6.5) βœ… F 2026-04-25 03:23:57
c*o*c*l*t*l*d*e*o*r*.com (WP 6.1.1) ⚠️ F 2026-04-24 18:14:13
k*o*i*s*r*a*i*n*.com (WP 6.9.4) βœ… F 2026-04-23 02:12:36
l*a*e*s*i*-*a*.org (WP 6.9.4) βœ… D 2026-04-21 16:59:55
m*r*v*s*y*t.com (WP 6.5.8) βœ… F 2026-04-21 07:14:52
p*l*g*n.sa (WP 6.9.4) βœ… F 2026-04-19 03:45:02
b*f*s*r*a*s*p*.com (WP 6.9.4) βœ… F 2026-04-19 02:56:54
b*l*a*.com (WP 6.9.4) βœ… F 2026-04-18 13:54:19
k*o*u*c*o*g*a*.com βœ… F 2026-04-18 04:22:26
e*r*f*r*.com (WP 6.9.4) βœ… F 2026-04-16 07:45:46
e*p*e*s*r*p*e*v*c*.com (WP 6.9.4) βœ… F 2026-04-15 19:42:15
d*v*d*l*b*r.com βœ… F 2026-04-15 14:26:13
a*a*a*i*.com (WP 6.9.4) βœ… F 2026-04-15 04:56:04
m*s*r*f*i*a.com (WP 6.9.4) βœ… D 2026-04-15 03:13:27
k*l*h*r*c*t*r*n*.com (WP 6.9.4) βœ… F 2026-04-14 08:38:15
f*t*y*i*d*a.com βœ… F 2026-04-13 20:47:25
a*s*h*h*o*n*a*i*n.com (WP 6.9.4) βœ… F 2026-04-12 09:06:56
y*n*i*g.com (WP 6.4.8) ⚠️ F 2026-04-11 22:42:56
i*s*a*l*t*e*e*v*c*-*o*r*h*l*a*d.nl (WP 6.9.4) βœ… F 2026-04-11 21:21:41
j*t*l*m*n*e*i*n.com (WP 6.1.10) ⚠️ C 2026-04-11 17:43:34
j*s*u*t*l*m*n.com (WP 6.1.10) ⚠️ C 2026-04-11 02:32:46
a*l*b*u*f*a*h*n*.com (WP 6.9.4) βœ… F 2026-04-10 14:31:29
d*r*k*g*n*y.com (WP 6.9.4) βœ… F 2026-04-10 02:48:57
a*d*s*d*.com βœ… F 2026-04-01 04:46:05
c*o*y*.org βœ… β€” 2026-03-28 01:04:01
e*m*a.org βœ… β€” 2026-03-25 16:41:12
n*g*a*a.com βœ… β€” 2026-03-08 03:04:30
l*v*l*u*g*a*k.vip βœ… β€” 2025-11-12 06:52:11
d*r*w*b*i*k*.directory βœ… β€” 2025-11-12 03:03:49
1*2*6*0*.io βœ… β€” 2025-11-12 00:29:23
w*a*s*e*i*f*.com βœ… β€” 2025-11-11 11:33:25
w*r*o*r*p*i*n.com βœ… β€” 2025-11-11 10:06:12
v*c*r*n*e.com βœ… β€” 2025-11-11 09:39:38
v*t*l*a*k.com βœ… β€” 2025-11-11 09:09:10
v*t*l*p*c*.com βœ… β€” 2025-11-11 09:07:53
v*s*g*s*e*a*a.com βœ… β€” 2025-11-11 08:56:37
v*r*u*l*r*v*4*o*l*r*.com βœ… β€” 2025-11-11 08:53:23
v*m*r*.com βœ… β€” 2025-11-11 07:37:53
t*e*a*e*r*a*k.com βœ… β€” 2025-11-10 23:13:14
t*e*o*k*e*i*g*o*p.com βœ… β€” 2025-11-10 22:40:41
t*c*n*c*l*n*i*c*.com βœ… β€” 2025-11-10 21:02:37
s*s*b*o*.com βœ… β€” 2025-11-10 10:32:19
s*y*h*y*r*.com βœ… β€” 2025-11-10 08:35:36
s*n*r*f*o*e*.com βœ… β€” 2025-11-10 07:45:42
s*n*n*o*l*b*s*.com βœ… β€” 2025-11-10 07:38:18
s*l*a*y*r*s.com βœ… β€” 2025-11-10 07:23:01
s*-*a*a*.com βœ… β€” 2025-11-10 06:38:43
r*a*d*r*c*f*e*.com βœ… β€” 2025-11-10 06:29:27
p*o*p*c*e*t*v*.com βœ… β€” 2025-11-09 23:02:33
p*o*e*t*a*m*.com βœ… β€” 2025-11-09 22:55:05
p*c*u*e*h*h*g*l*f*.com βœ… β€” 2025-11-09 19:54:38
n*w*a*i*.com βœ… β€” 2025-11-09 11:09:37
n*u*r*l*o*c*o*e*.com βœ… β€” 2025-11-09 10:57:25
n*t*r*s*a*r*n*h*s*.com βœ… β€” 2025-11-09 10:12:40
n*k*o*r*l*t.com βœ… β€” 2025-11-09 09:41:17
n*j*h*e*v*c*s.com βœ… β€” 2025-11-09 09:38:44
l*z*g*d*l*.com βœ… β€” 2025-11-08 23:29:19
l*g*r*-*f*i*i*l.com βœ… β€” 2025-11-08 18:09:23
k*n*i*i*i*n.com βœ… β€” 2025-11-08 17:29:05
j*t*c*z*n*.com βœ… β€” 2025-11-08 11:39:07
j*z*a*o*r*i*g.com βœ… β€” 2025-11-08 11:02:04
i*p*i*e*u*g*.com βœ… β€” 2025-11-08 07:21:50
i*p*r*u*f*o*r*n*.com βœ… β€” 2025-11-08 07:18:47
g*a*c*.com βœ… β€” 2025-11-07 20:17:25
g*w*t*.com βœ… β€” 2025-11-07 20:17:03
g*z*v*s*g*s.com βœ… β€” 2025-11-07 20:14:15
g*z*d*s*i*a*e*.com βœ… β€” 2025-11-07 20:14:15
f*n*i*h*h*s*.com βœ… β€” 2025-11-07 19:12:40
f*e*f*o*t*a*e*e*i*n.com βœ… β€” 2025-11-07 18:25:55
f*r*x*i*i*r*d*n*.com βœ… β€” 2025-11-07 17:41:06
e*o*o*u*m*g*z*n*.com βœ… β€” 2025-11-07 09:29:28
d*s*c*l.com βœ… β€” 2025-11-07 06:03:33
c*u*c*a*a*d*s.com βœ… β€” 2025-11-06 20:57:23
c*r*s*o*h*e*n*e*c*.com βœ… β€” 2025-11-06 20:51:33
c*s*g*o*a*.com βœ… β€” 2025-11-06 18:48:39
c*v*s*c*a.com βœ… β€” 2025-11-06 18:33:27
b*g*t*r*a*j*.com βœ… β€” 2025-11-06 11:39:01
b*c*a*r*n*i.com βœ… β€” 2025-11-06 11:28:22
b*r*s*e*n*a*.com βœ… β€” 2025-11-06 10:32:35

Top 50 Plugins

Plugin Count
elementor 2,763,705
contact-form-7 2,452,730
elementor-pro 1,546,184
woocommerce 1,302,279
revslider 924,221
js_composer 598,061
jetpack 497,596
wp-rocket 434,118
essential-addons-for-elementor-lite 415,356
header-footer-elementor 362,082
gutenberg-core 352,678
elementskit-lite 339,433
instagram-feed 313,147
google-analytics-for-wordpress 312,225
gravityforms 304,500
google-site-kit 301,253
complianz-gdpr 294,888
cookie-law-info 292,598
wpforms-lite 257,097
sitepress-multilingual-cms 254,170
astra-sites 250,354
bluehost-wordpress-plugin 241,097
litespeed-cache 224,187
gtranslate 183,504
coblocks 177,561
cookie-notice 169,990
gutenberg 162,533
the-events-calendar 149,080
popup-maker 140,281
premium-addons-for-elementor 135,669
astra-addon 134,465
bb-plugin 133,678
mailchimp-for-wp 132,167
LayerSlider 128,805
wp-smushit 127,445
custom-fonts 122,509
tablepress 120,972
creame-whatsapp-me 120,412
pro-elements 118,018
click-to-chat-for-whatsapp 115,581
woocommerce-gateway-stripe 112,342
duracelltomi-google-tag-manager 112,338
cleantalk-spam-protect 109,251
smart-slider-3 107,093
akismet 106,186
pixelyoursite 104,954
megamenu 103,736
fusion-builder 103,281
honeypot 102,819
royal-elementor-addons 102,709

Top 50 Themes

Theme Count
hello-elementor 881,464
astra 738,280
Divi 721,754
pub 234,524
generatepress 165,845
flatsome 165,155
Avada 155,165
h4 146,424
oceanwp 121,209
kadence 107,389
enfold 90,891
salient 88,032
bb-theme 85,966
twentytwentyfour 83,177
blocksy 81,531
twentytwentyfive 80,531
cocoon-master 76,912
betheme 72,668
twentyseventeen 70,094
woodmart 61,800
dt-the7 59,456
neve 52,307
twentytwentyone 45,266
bridge 44,342
swell 41,011
Avada-Child-Theme 39,544
twentytwenty 38,803
lightning 38,190
twentytwentythree 37,772
gox 37,336
bricks 31,465
Impreza 31,349
Newspaper 29,587
twentytwentytwo 28,978
epik-redesign 24,437
extendable 23,860
storefront 23,806
pro 23,711
uncode 23,090
yith-wonder 22,986
twentysixteen 22,667
sydney 21,681
themify-ultra 21,308
twentyfifteen 19,591
Total 19,472
porto 17,998
hestia 17,276
thrive-theme 16,469
yootheme 15,971
jupiter 15,762