-
Search Results
-
Topic: Questions
I have the following questions:
1. On my site there are links to download files .. Other sites post my links for downloading files .. how to make sure that my links to download files do not work on other people’s sites! How to do this for new files that I will add through Download Manager Pro?
2. Where are the files that I add using the Download Manager Pro plugin stored? And how to change this path for storing files?
3. Is it possible to include Russian in Download Manager Pro?Hello,
How do I customize the logo for the download link pop-up (for example, it’s used for file lock)? Currently it’s empty.
Thanks,
SharonHi,
I would like to change download button from text style to image style. I tried to used the code below; however, it only change the label of the button rather than entire button. Is there any solution to this?
The code I tried.
add_filter(‘wpdm_button_image’,’my_btn_image’,10,2);
function my_btn_image($link_label,$package){
$link_label = “
“;
return $link_label;
}Topic: Page Template Help
Hello,
I need a little help regarding page template modifications here https://texturehub.co.uk/download/foliage-texture-20/
You can see there are upsell items but they are in the second column instead of going in the next row. How can I get them in the next row?
`<div style=”float: left; width: 50%;”>
<div style=”padding: 5px; border:0px solid #aaa”>
[thumb]
<br style=”clear:both”/>
</div>
</div>
<div style=”float: left; width: 49%”>
<div style=”padding: 5px;”>
<br style=”clear:both”/>
<h3 class=”mt-0″>[title]</h3>
[description]
<ul class=”list-group ml-0 mb-2″>
<li class=”list-group-item d-flex justify-content-between align-items-center [hide_empty:version]”>
[txt=Version]
<span class=”badge”>[version]</span><li class=”list-group-item d-flex justify-content-between align-items-center [hide_empty:download_count]”>
[txt=Download]
<span class=”badge”>[download_count]</span><li class=”list-group-item d-flex justify-content-between align-items-center [hide_empty:file_size]”>
[txt=File Size]
<span class=”badge”>[file_size]</span><li class=”list-group-item d-flex justify-content-between align-items-center [hide_empty:file_count]”>
[txt=File Count]
<span class=”badge”>[file_count]</span><li class=”list-group-item d-flex justify-content-between align-items-center [hide_empty:create_date]”>
[txt=Create Date]
<span class=”badge”>[create_date]</span><li class=”list-group-item d-flex justify-content-between align-items-center”>
[txt=Category]
<span>[categories]</span><div class=”wpdm-button-area mb-3 p-3 card”>
[download_link]
</div></br>
[upsell_items]We recently started testing version 5.0.7 and noticed that after updating, our link templates stop displaying correctly. While running on version 4.9.6, the downloads properly display like this.

After we update to 5.0.7, the view is not styled correctly and looks like this:

We have done thorough testing of the following:
1) Deactivating and deleting the download manager and uploading the new version, both through the admin console and through FTP
2) Deactivating all plugins and determining if the issue is resolved (it is not)
3) Switching to the 2019 theme to see if the issue is resolved (the lines came back, but the layout did not).Can someone help us troubleshoot why the link templates aren’t working properly? The Shortcodes we are using are formed like this:
[wpdm_category id="md-crutch-sales-resources" toolbar="1" order_by="field name" order="asc or desc" item_per_page="25" template="link-template-extended" cols=1 colspad=1 colsphone=1]
Thank you for any help you can provide. We can provide access to a staging environment for your testing.
–Sean
I am very frustrated.
I downloaded this plugin so the visitor cant go to the wordpress link.
I use password protection for the file.
Whenever i click download, it goes directly to the file link instead of downloading it automatically.
Please help
Thanks.I found numerous topics for this exact same issue, but you have not posted how to resolve it. See here:
Password: egbdf
You get the invalid download link.
If I turn off the password protect it works fine.
Topic: Simple download link
Is it possible to configure a download link that opens the download popup when clicked?
I use wpdm archive page in order to show all categories and downloads in a single page.
https://www.wpdownloadmanager.com/docsfor/wpdm-archive-page-2/I correctly set a template.
Now, I would like to set the same template for the category page, showing the list of all packages of a single category (or tag) with the same layout of the archive page.
I use
taxonomy-wpdmcategory.phpNow this file is the copy of
archive.phpAm I supposed to use this code of wpdm archive in the
taxonomy-wpdmcategory.phpfile?<?php echo do_shortcode('[wpdm-archive cat_view="compact" button_style="primary" link_template="5b0869632bbb6" items_per_page="5" wpdm_package template="5b09e3cfb0b50"]'); ?>Here https://www.wpdownloadmanager.com/doc/template-files/
the “category page demo” is linking to add-ons, have you examples of category page demo?Topic: Please fix
I was debuging that the single file links weren’t showing for Mulit-file pakages ([downlown-link] for zip was working) in the [file-list] short code and I think the logic is wrong
Please check wp-content/plugins/download-manager/libs/class.FileList.php ln 79
if($noaccess === 0) {
if ($pwdlock && $idvdl) $pwdcol = “<th>” . __(“Password”, “download-manager”) . “</th>”;
if ($idvdl && $pwdlock) {
$dlcol = “<th>” . __(“Action”, “download-manager”) . “</th>”;
$swl = 1;
}
}
Should be this with “! $pwdlock” on the secound if
if($noaccess === 0) {if ($pwdlock && $idvdl) $pwdcol = “<th>” . __(“Password”, “download-manager”) . “</th>”;
if ($idvdl && ! $pwdlock) {
$dlcol = “<th>” . __(“Action”, “download-manager”) . “</th>”;
$swl = 1;
}
}props to pbearne
