Hi,
Are you using a custom template? Built-in templates shouldn’t create any layout issue. Please send me page link to check the pagination issue, I can suggest custom CSS to hide the pagination numbers and only show next/previous buttons in mobile.
Directory add-on default view has changed in the latest version. The old view ( categories above downloads ) is not available anymore. But it is possible to use that view using a custom template.
Thanks.
Sorry, the option is actually “Login Required Message:” Actually, It was there before but your theme is hiding the .panel
class, that’s why the login button was hidden. I have removed the div with .panel
class and updated the “Login Required Message:” option. Now the login button is visible.
Currently login button is linked to the default WP login page. If you want you can create a page with [wpdm_login_form logo="your_logo_url"]
shortcode to use the WPDM login form. Then set that page as login page in Settings Frontend Access Login Page option.
You can use the Default Values Add-on ( https://www.wpdownloadmanager.com/download/wpdm-default-values/ ) to bulk update link template for all packages. The link template option in your first screenshot is meant for a different purpose.
Hello
May i change domain address linked to Download Manager?
Thanks
Pascal
Hello Shariar,
downloads never stopped working. I changed them to display the links to the files inline, after submitting the form . But what we really need is to get those links sent via email to the people that submit the form, which is how it was working before the main plugin update to its latest version.
Can you please check this again? I was out for a couple weeks on vacation, but I have to solve this issue this week.
Eventually, if you can confirm this will work with the paid version of the main plugin, we can purchase it, but I would prefer not to spend time on testing if it won’t work as expected.
Let me know, please. Thanks.
Add the following code to your theme’s functions.php
file. This should delete attached files when deleting the pacakge.
add_action('before_delete_post', 'wpdm_delete_files_on_package_deletion' );
function wpdm_delete_files_on_package_deletion( $post_id ){
if( get_post_type($post_id ) != 'wpdmpro' ) return;
$files = maybe_unserialize(get_post_meta($post_id, '__wpdm_files', true));
if (!is_array($files)) $files = array();
foreach ($files as $id ► $file):
if( file_exists( $file ) )
unlink( $file );
if( file_exists( WP_CONTENT_DIR.'/uploads/download-manager-files/'.$file ) )
unlink(WP_CONTENT_DIR.'/uploads/download-manager-files/'.$file );
endforeach;
}
This reply has been marked as private.
hi,
sorry but I have not received a message notify
i’ve add to .htacces the code
now i can save the option but if i insert the link
<i class=”fa fa-lock”></i> Login
i save the option and if i return in the page, the option disappear…
– in the front end access i’ve atctivated your custom template…but i see the old version…
i need to change all the download settigs of your template automatically because i’ve a lot of download…
i set the new template (but i neet to see only tet link, not the button)
let me know
This reply has been marked as private.
Tested from Chrome too. However, you can use the embedded form instead of popup as you are facing the issue. You have to use a page template with [download_link_extended]
to show the embedded form.
The built-in ” Single Column, Image Top, Extended ” uses the embedded form. Or you can clone the current template and replace [download_link]
with [download_link_extended]
I originally had the linkage usage set and thought this might be the problem, so I cleared the field. I did not realise that it would default to 0.
However the download still does not work for me.
Using Windows Edge, I get the left hand popup, an overlaid progress wheel and then back to the left popup. I have never seen the right hand popup in your figure (possibly because this is Firefox specific?).
I tried deleting all occurrences of my email from the subscribers list but this made no difference.
I tried a different computer and user account and the result was the same
I tried using Internet Explorer 11 and the download popup does not appear (the url is given as http://www.coastalsea.uk/#unlock)
I hope this gives you a bit more to go on.
At first, I got the expired link error because your “Private Download Links Usage Limit:” was set to 0
I have increased it to 10.
https://www.evernote.com/l/AUcPLgjhf7dL8723txj2zlf5ZcXPt7uHanAB/image.png
Now downloads are working fine for me. Please test the download and let me know if still having an issue.
https://www.evernote.com/l/AUcFCVe9CHFF-oOJjTSFH7U7wbzVKHLHMV0B/image.png
Please check the Downloads Templates page to be certain about the missing templates. However, restoring a backup should restore the custom template considering they existed when the backup was created.
Custom templates are saved in wp_options
table under _fm_link_templates
and _fm_page_templates
name. So, you can check those entries in your backup DB in case don’t want to restore the whole site.
1 ) Add the following CSS in Customize Additional CSS to remove uppercase,
.wpdm-cat-link.btn {
text-transform: none;
}
2 ) Use a custom link template with [icon]
tag to show package icon. You can clone the current template and edit on top of it.
3 ) Use [description]
tag in your custom link template to show package details.
Please check this tutorial to understand how to create custom templates https://www.wpdownloadmanager.com/building-a-wordpress-download-manager-link-template-from-scratch/
Hi together,
i’ve a small issue with my download speed. For example:
– 5.75GB File download via http link (or added via http link in the download package) in 20 min
– Same file added via file manager loads in much longer time than 1 hour.
I testet also the download speed module with no entry (leave the field empty) or adding speed parameters like this: 100000000
The only option to get it fast again when a file was added via file explorer at the download package is: resumable downloads
When i deactivate it… its fast again. But then the webbrowser can’t calculate the time is left to get the download finished.
Has anyone an idea to get it better work?
Best regards
Christoph
I have installed the Pro version of Download Manager on your site, you’re using the free version before. Use the package shortcode to show the downloads. You were using the direct download link. Use this [wpdm_package id='10451' template="5c548c4de15c6"]
insted of Curva sofa -3D Files - Download
I also created a custom link template 5c548c4de15c6
to show only title and download button just like your old style. Now you have to add the following message in your “Permission Denied Message for Packages:” settings and save settings.
<a href="https://www.tosconova.com/nuovo/wp-login.php?redirect_to=[this_url]" class="btn btn-danger btn-sm"><i class="fa fa-lock"></i> Login</a>
Side Note: Add the following code in your site .htaccess
file to allow the AJAX saving of WPDM settings. Curenntly your server isn’t allowing the saving operation, that’s why I can’t add the “Permission Denied Message for Packages:”
<IfModule mod_security.c>
SecFilterRemove 001868
</IfModule>
Hi,
You need the Advanced Access Control ( https://www.wpdownloadmanager.com/download/advanced-access-control/ ) add-on to assign a pacakge/download to a single user. When creating the pacakge, an admin will select the user(s). Only those user(s) are allowed to access the download. Keep the ‘Allow Access’ filed empty because that allows access to the role.
https://www.evernote.com/l/AUelpbaq5JJMMoCxKCS4V63rTuPK-DJCpckB/image.png
Create a page with this shortcode [wpdm_my_downloads]
When a user visits this page they will be asked to log in. After login, the user will see downloads assigned to them. One can’t see downloads of other users.
When creating the pacakge you directly upload files to it. Or just link a directory/folder to the package. If you want to create a separate folder for each user and later upload files to the folder that works too. Just attach the user folder when creating the package and later upload files to that folder using FTP or any other means. You can also attach files various cloud storages using our add-ons https://www.wpdownloadmanager.com/downloads/cloud-storage/
Let me know if you have any other query.
Thanks.
AnonymousInactive
Okay, thank you for your answer.
The template tag [download_link_extended] doesn’t use a modal. However, we use the template tag [file_list], too. See attached image. And the single downloads do open a modal, unfortunately.
We absolutely prefer to handle the template styling on our own. And we want to make sure that the styling (and the functionality) keeps unchanged when we update Download Manager. We updated Download Manager three times – and every time we had to adjust our CSS. Now, we even have to re-activate Bootstrap JS/CSS, which breaks our styling completely.
Do you see my point? Do you see any way to make future updates painless? Or is Download Manager simply not the right tool in our case?
Thanks again.
Karl
This reply has been marked as private.
It is possible to use Password lock without Bootstrap JS and CSS. You have to use a template with [download_link_extended]
template tag. This tag uses an embedded lock form instead of a modal. But deactivating Bootstrap CSS will affect your page template style. So, you have to handle the custom template styling on your own.
Dear Sirs and Madames,
Unfortunately I have massive problems with the “WordPress Download Manager”.
To get back support, I have transferred 39 € by PayPal. Now I am again in my area on their homepage, the switch “get to License key” displayed. If I click on the switch, a window opens with the license number and the wrong domain “feg2.schrader-erf.de” The domain must be correct: feg-erfurt.de How can the domain be changed? I always get an error message when I enter the license number on my homepage.
And then there is a big problem. I have made an update to version 5.0.3 of WordPress. Now the Download Manager is no longer displayed – see here: https://www.feg-erfurt.de/predigten/. Here is a link how the page would look like: http://www.feg2.schrader-erf.de/predigten/
Could you please help me?
Yours sincerely
Holger Schrader
Please send me the CSV file and temporary wp-admin login info in private reply. You can send me a download link for the CSV file as it seems upload failed for your attached CSV.
I have purchased the add-on that allows for e-mail lock, and I have been able to receive the generated download link. However, I do not know where I can go as an administrator to see the e-mail addresses which have downloaded the package. If I go to the stats page, I get an IP address as the “user” who downloaded the package. That’s not very helpful. I’d rather have the email address since email lock was enabled.
Can I get an e-mail sent to an admin of the site whenever someone has downloaded a package? I don’t want to add them to something like mailchimp.
I just want a notification via email that a package has been downloaded and the associated e-mail address which downloaded it. How can I get this?
Thanks!
AnonymousInactive
We have been using Download Manager Pro on a client website since 2016:
– The WordPress theme is custom built and does not include Bootstrap.
– We disabled Bootstrap JS/CSS in the Download Manager Settings (because we want our own styles).
– We use a custom Download Manager page template: [file_list] and [download_link_extended]
In version 4.6 everything worked fine. On the downloads page (in the frontend) you entered the password, clicked on the download link and the browser dialog (“Save file as …”) opened.
Since version 4.7 our frontend is broken. When you click on a download link, a Bootstrap modal window (invoked by download-manager/assets/js/front.js) is opened. But as mentioned above, we disabled Bootstrap JS/CSS, so the modal doesn’t work correctly.
My Questions:
1. Is it no longer possible to use Download Manager without Bootstrap?
2. Is there a way to disable the modal?
Thanks a lot.
Karl
This reply has been marked as private.
This reply has been marked as private.