Hello natalie,
Hope you are well. I have checked that, the link template you have used is not proper link-template ID, 57e4155cda924
, please check from Downloads > Templates > Link Templates
your available link template. I hope it will resolve then.
Thank you and regards
Hello Andrew,
Are you trying to link the download package from the description image src for the same package? please let me know.
Thank you and regards
OK – this is possibly getting confusing – sorry!
What we need to do in the first instance is ‘link’ the image files to the ‘Packages’.
As we know the CVS is OK to the point of adding ‘Packages’ however, the images to download are not linked (therefore, are ‘missing’).
The aim is to upload the CVS and that the related image fils would ‘automatically’ be linked and, therefore, the Packages would be ready to Download the file.
Hope that clarifies things for you?!
regards
Andrew B
This reply has been marked as private.
Hello Callum,
Hope you are well. I have checked your example package link. After downloading the PDF file, it is normally opened from my side. I think it may have an issue with your Adobe Acrobat. please check.
Thank you and regards
This reply has been marked as private.
Hi there,
Please add the below CSS based on your previous reply.
th#post_content,
th#acf_ProductInfo_Resolution {
width: 60px !important;
max-width: 60px !important;
min-width: 60px !important;
}
th#acf_ProductInfo_Artist,
th#acf_ProductInfo_Title {
width: 300px !important;
max-width: 300px !important;
min-width: 300px !important;
}
th#acf_ProductInfo_Version {
width: 400px !important;
max-width: 400px !important;
min-width: 400px !important;
}
th#acf_ProductInfo_BPM,
th#acf_ProductInfo_Year,
th#acf_ProductInfo_Credits {
width: 50px !important;
max-width: 50px !important;
min-width: 50px !important;
}
th#acf_ProductInfo_genre {
width: 130px !important;
max-width: 130px !important;
min-width: 130px !important;
}
th#download_link {
width: 100px !important;
max-width: 100px !important;
min-width: 100px !important;
}
Thanks.
Hi Nayeem – thanks for your reply.
I have made some progress – the CVS file seems to be working, with the exception of the following:
NB. https://imgbb.com/ doesn’t allow me to upload the CSV File?!




1. Most important: the ‘Download File’ whilst the file is identified on the CSV the problem is to ‘link’ the actual image file. I upload the image file as a ‘bulk import’ (files are in a Folder ‘Downloads Test _ CSV 16_3_22’ in the ‘Digital Assets Manager – download-manager-files’ – but this then alters the Title / Description to change to the file name (with no spaces)?
It also removes the Categories and other settings. It does add an ID.
Please see screenshots:-
a) Screenshot: Downloads Manager – All Packages – the first 4 are incorrect as they are using the image file name!
see: Screenshot: Downloads Manager – Title / Description not correct / https://nfpsoccer.co.uk/download/u12-ya_test_1a_copy-png/
b) Screenshot: Downloads Manager – Download OK
https://nfpsoccer.co.uk/download/practice-skills-x/
This show the Package which is fine except that the image file is not linked – so we get “Sorry! File not found!”
There is no ID? Categories are OK.
2. I would like the CSV to ‘remove’ the (Discussion) ‘Allow Comments’ option.
3. Can the CSV include a ‘Media’ image with the ‘Description’ – see screenshot: Downloads Manager – ‘Media’ Image
https://nfpsoccer.co.uk/download/session-1-skill-practice-game/
The page is called “Test Table 2”
I need every column with custom width.
post_content 60px
acf_ProductInfo_Artist 300px
acf_ProductInfo_Title 300px
acf_ProductInfo_Version 400px
acf_ProductInfo_BPM 50px
acf_ProductInfo_genre 130px
acf_ProductInfo_Year 50px
acf_ProductInfo_Resolution 60px
acf_ProductInfo_Credits 50px
download_link 100px (as wide as the download button)
Thank you.
Hello,
Hope you are well.
To enable to preview feature of pdf, you have to use the below addon with wpdm.
WordPress PDF Viewer
And then you can remove the download button by editing link template or page template so only preview will be available.
Thanks
In the file download-manager\src\Admin\Menu\Packages.php
Change this code:
if(file_exists(UPLOAD_DIR.$name) && get_option(‘__wpdm_overwrrite_file’,0)==1){
@unlink(UPLOAD_DIR.$name);
}
if(file_exists(UPLOAD_DIR.$name) && !isset($_REQUEST[“chunks”]))
$filename = time().’wpdm_’.$name;
else
$filename = $name;
/$filename = esc_html($filename);
if(get_option(‘__wpdm_sanitize_filename’, 0) == 1)
$filename = sanitize_file_name($filename);
else {
$filename = str_replace([“/”, “\\”], “_”, $filename);
}
To this:
if(get_option(‘__wpdm_sanitize_filename’, 0) == 1){
$filename = sanitize_file_name($name);
}else {
$filename = str_replace([“/”, “\\”], “_”, $name);
}
if(file_exists(UPLOAD_DIR.$filename) && get_option(‘__wpdm_overwrrite_file’,0)==1){
@unlink(UPLOAD_DIR.$filename);
}
if(file_exists(UPLOAD_DIR.$filename) && !isset($_REQUEST[“chunks”])){
$filename = time().’wpdm_’.$filename;
}
Hello Adams,
You can use custom link-template
within these pages for download packages and remove the download count and file size
section. Thus, It may help you. please check and let me know.
Thank you and regards
Hello Nayeem,
thank you. So it is good.
From my first Post is one thing open.
“– On my Linkpage the Downloads were smaller and smaller. Where can I change it.”
See the first Post please…
Hello Adams,
please try with the below code in your theme Customizer > Additional CSS
.post-22933 .wpdm-download-link.btn {
width: 115px;
margin: 0 auto;
display: flex;
justify-content: center;
}
.post-22937 .wpdm-download-link.btn {
width: 115px;
margin: 0 auto;
display: flex;
justify-content: center;
}
.post-22935 .wpdm-download-link.btn {
width: 115px;
margin: 0 auto;
display: flex;
justify-content: center;
}
I hope it will be worked properly then. please let me know
Thank you and regards
Hello,
For this you have to edit the link template you are using.
Please follow the below doc:
Link Template
If still the problem persists, please also share related page url and admin access in a private reply.
Thanks
I’m using the plugin to simply display downloads, https://pghw.org/document-downloads/.
How can I unlink the document title and force everyone to use the download button? https://s.grcwk.co/bLuKrXWD
Hello @bijdageraad,
Greetings and welcome.
You can change it easily from the page template option in the pro version of WPDM.
For the free version, you have to modify the relevant template.
In this case, you can follow the below documentation,
Template Files
By default, you are using link-template-default.php
for the link template and page-template-default.php
for the page template.
Now copy the files you want to modify from /src/{ComponentDir}/views
dir to /{active-theme}/download-manager/
dir.
And you have to replace [download_link]
with <a href="[download_url]" class="btn btn-primary" target=_blank>[link_label]</a>
in related php file.
Thanks.
This reply has been marked as private.
Hello,
We completely re-worked our website with a new theme, look, feel and functionality. We went live yesterday with the site with the intent of making our Downloads page live after the site changed over.
When I go to import the csv file from the old site, it shows the ‘Uploading’ progress bar, then ‘Importing 1%’ and never progresses any further.
I’m using Divi theme if that makes a difference. I’ll follow up with a reply with credentials and a link to the csv file in a private message.
Thanks,
Brett
Good Morning,

https://www.dxf-downloads.de/downloads/neueste-uploads/
– On my Linkpage the Downloads were smaller and smaller. Where can I change it.
– And the Thumbs show not correctly. I want to show the width 100%.

– On my Page Template. How can I change the Background to transparent btw. white. Not grey. For example after Uploader “Wolfgang968”
Hope anybody can help me. Thanks a lot.
Regards
Hi @Nayeem Riddhi,
I noticed my mistake, I forgot the link/templates folder.
Everything is now more or less how I’d like it (other than the fact downloads still don’t open in a new tab/pop-up and redirect my visitor away from my site to mega.nz).
Final question: How do I use full width on the page-template-default template? It seems to have an empty sidebar “Hot Topics” on the right, I wish to remove this and use full-width so the download’s description isn’t so compact/limited.
I’ve tried WPDM Page Templates but doesn’t work with my theme OceanWP I only have default template (page.php) and Landing Page… my template/theme is set to “Full Width” in settings but Download Manager ignores this as the page isn’t manage by WP (it’s created by Download Manager*).
* If a download “Sample Download” is created via Dashboard > Downloads > Add File the page it creates is mywebsite.com/download/sample-download. The page is handled by Download Manager so isn’t under Dashboard > Pages so i’m unable to set full-width. When I preview the page is Dashboard > Appearance > Customise there is NO sidebar which is telling me Download Manager is adding the sidebar (Hot Topics) itself?
Thanks.
That works for the most part. I do have questions.
How do I do this for the other fields? I just added one called year from a custom field. I couldn’t do it before because nothing was spacing right.
What about the fields that are not from the custom fields? The first and last column for example are directly from the package details. One is the “post_content” and the other is the “download_link”
This reply has been marked as private.
Hello Fredrick,
I have adjusted the font size for your Image Hover Split link-template, from Downloads > Templates > Link-templates > Image Hover Split
CSS section. However, for changing the spinner loading image, you can check the loader.svg
image from
wp-content\plugins\download-manager\assets\images\loader.svg
directory and replace it as your requirements. please check and let me know.
Thank you and regards
I installed extended shortcode add-on for caruosel shortcode, to be able to use this shortcode:
[wpdm_carousel items_per_page=4 template=”fresh_card” wrap=0 items_total=12]
But when I try it, i don´t get the fresh_card template like the example who show the featured image of the package.
Do i have to do something more?
Thks
This is your example where it´s aparently working:
https://try.wpdownloadmanager.com/carousels/
(Also note that in this link, there is an error of spelling in caruosel, instead of carousel…)