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

Plugin: quick-download-button (Used by 49 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
c*u*c*a*a*d*s.com πŸ‘€ F 2026-07-25 14:58:46
d*s*c*l.com (WP 7.0.2) πŸ‘€ F 2026-07-23 23:29:11
e*a*i*.c*.th (WP 6.3.2) ⚠️ F 2026-07-23 12:51:41
l*l*c*.com (WP 6.1.1) ⚠️ F 2026-07-22 11:40:36
c*o*c*l*t*l*d*e*o*r*.com (WP 6.1.1) ⚠️ F 2026-07-22 10:26:16
b*f*s*r*a*s*p*.com (WP 7.0.2) πŸ‘€ F 2026-07-21 00:55:19
m*r*v*s*y*t.com (WP 6.5.8) βœ… F 2026-07-20 22:02:57
b*l*a*.com (WP 7.0.2) βœ… F 2026-07-20 08:41:11
k*o*i*s*r*a*i*n*.com (WP 7.0.2) βœ… F 2026-07-19 19:57:24
l*a*e*s*i*-*a*.org (WP 7.0.2) βœ… D 2026-07-18 23:49:58
e*r*f*r*.com (WP 7.0.2) πŸ‘€ F 2026-07-18 05:28:21
f*t*y*i*d*a.com βœ… F 2026-07-17 23:24:15
d*v*d*l*b*r.com πŸ‘€ F 2026-07-17 17:38:25
e*p*e*s*r*p*e*v*c*.com (WP 7.0.1) βœ… F 2026-07-17 16:59:47
p*l*g*n.sa (WP 7.0.1) πŸ‘€ F 2026-07-16 18:20:04
r*f*r*n*k*r*e.com (WP 7.0.1) βœ… F 2026-07-15 16:56:47
y*n*i*g.com (WP 6.4.8) ⚠️ F 2026-07-15 02:09:41
a*d*s*d*.com βœ… F 2026-07-14 09:06:42
s*e*h*a*l.com (WP 6.0.3) ⚠️ F 2026-07-14 05:20:22
c*l*u*e.top (WP 6.2.9) ⚠️ πŸ‘€ F 2026-07-13 12:02:28
n*t*f*c*.legal βœ… F 2026-07-12 18:57:58
j*t*l*m*n*e*i*n.com (WP 6.1.10) ⚠️ πŸ‘€ C 2026-07-12 17:02:21
a*s*h*h*o*n*a*i*n.com (WP 6.9.4) πŸ‘€ F 2026-07-12 04:55:06
j*s*u*t*l*m*n.com (WP 6.1.10) ⚠️ πŸ‘€ C 2026-07-11 23:32:41
t*x*b*r*n*x*e*t.ru βœ… F 2026-07-11 22:25:35
s*y*m*i*a*h*r*.in (WP 6.9.4) πŸ‘€ F 2026-07-10 14:34:12
i*s*a*l*t*e*e*v*c*-*o*r*h*l*a*d.nl (WP 7.0) πŸ‘€ F 2026-07-09 00:01:09
w*i*e*t*c*f*s*.org (WP 6.3.5) ⚠️ πŸ‘€ F 2026-07-08 18:37:38
j*z*a*o*r*i*g.com (WP 6.9.4) πŸ‘€ F 2026-07-08 05:02:16
d*s*a*t.sk (WP 7.0) πŸ‘€ F 2026-07-05 16:05:30
e*o*o*u*m*g*z*n*.com (WP 5.2.4) ⚠️ F 2026-07-05 15:24:47
g*a*c*.com (WP 5.6.17) ⚠️ F 2026-07-05 00:46:42
a*t*e*i*t*o*m*n*r*a*.org (WP 6.9.4) πŸ‘€ D 2026-07-04 23:10:16
v*m*r*.com (WP 7.0) πŸ‘€ F 2026-07-03 17:04:57
i*p*r*u*f*o*r*n*.com βœ… D 2026-07-02 09:59:13
s*r*a*i*o*.com (WP 7.0) πŸ‘€ F 2026-07-02 03:51:53
l*v*l*u*g*a*k.vip (WP 6.2.9) ⚠️ F 2026-07-01 15:57:24
w*r*o*r*p*i*n.com (WP 7.0) πŸ‘€ F 2026-07-01 12:56:49
w*d*n.be βœ… F 2026-06-29 15:52:50
s*s*c*.eu (WP 5.5.18) ⚠️ πŸ‘€ F 2026-06-13 02:48:19
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
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

Top 50 Plugins

Plugin Count
elementor 1,785,060
contact-form-7 1,769,562
elementor-pro 1,058,206
woocommerce 819,771
revslider 614,568
jetpack 460,717
js_composer 424,461
wp-rocket 341,988
essential-addons-for-elementor-lite 267,768
complianz-gdpr 260,954
gravityforms 258,025
google-site-kit 232,366
cookie-law-info 231,344
instagram-feed 227,249
sitepress-multilingual-cms 212,529
header-footer-elementor 209,451
google-analytics-for-wordpress 208,128
bluehost-wordpress-plugin 193,296
elementskit-lite 182,857
gutenberg 167,430
cookie-notice 151,062
litespeed-cache 142,724
gtranslate 126,629
wpforms-lite 126,201
the-events-calendar 123,516
gutenberg-core 121,761
astra-sites 115,393
popup-maker 111,022
woocommerce-payments 110,846
tablepress 102,699
honeypot 98,277
astra-addon 94,821
wp-smushit 91,887
duracelltomi-google-tag-manager 91,135
layerslider 90,368
all-in-one-seo-pack 90,325
coblocks 90,053
bb-plugin 86,911
akismet 85,544
premium-addons-for-elementor 85,431
cleantalk-spam-protect 83,524
ml-slider 83,069
mailchimp-for-wp 82,767
megamenu 81,059
woocommerce-gateway-stripe 80,305
fusion-builder 77,966
jet-engine 77,786
ewww-image-optimizer 77,287
wp-pagenavi 77,000
smart-slider-3 76,992

Top 50 Themes

Theme Count
hello-elementor 624,626
Divi 501,637
astra 419,486
flatsome 136,845
Avada 122,485
generatepress 115,808
pub 84,815
oceanwp 81,606
kadence 79,580
enfold 69,690
salient 65,787
twentyseventeen 54,790
bb-theme 53,022
betheme 52,693
twentytwentyfour 52,641
blocksy 51,410
cocoon-master 50,064
dt-the7 45,837
twentytwentyfive 45,047
h4 42,308
woodmart 41,010
neve 38,606
Avada-Child-Theme 37,195
gox 36,255
bridge 31,778
twentytwentyone 30,648
lightning 30,251
twentytwenty 29,019
swell 28,406
bricks 26,552
Impreza 26,292
Newspaper 24,354
twentytwentythree 22,363
epik-redesign 19,287
twentytwentytwo 19,003
uncode 18,731
twentysixteen 17,753
pro 17,600
sydney 16,725
storefront 16,504
Total 14,593
hello-theme-child-master 14,065
factory-templates-4 13,741
extendable 13,397
themify-ultra 13,074
hestia 12,721
yootheme 12,665
yith-wonder 12,547
porto 12,093
jupiter 11,716