Forum Replies Created
You will not be able to download files or preview ( the attached PDF ) files for drafted or pending packages.
wpdm-tag-importer may not be compatible with WPPML, also it shouldn’t cause any big conflict, it just converts old post tags to new wpdm tags.
We are checking the issue in detail. However, if you adding a video file, you can add it using the media library, then it will play everywhere without any trouble.
@mvin10, sorry for the confusion. To allow other users to create new packages, you need to use shortcode [wpdm_frontend], you also can hide a certain section from the upload form using the shortcode parameter, please check details here:
https://www.wpdownloadmanager.com/doc/short-codes/wpdm_frontend-front-end-uploader-ui/
But, if you want to remove a specific field from package settings, you can do that using CSS or editing the template file ( tpls/add-new-file-front ).
Hi,
Here are the answers to your questions:
#1. You can add custom CSS code in the customizer. And if you want to customize the template file, you can create a folder named private-message inside your active theme dir and copy any template file from pm plugins dir to that dir. Also, instead of using PM shortcode at front-end to manage PM, you can show it in WPDM user dashboard when you are using WPDM.
#2. Now clear, may you please elaborate a little more.
#3. Yes, noted for implementation.
#4. Yes, noted for implementation.
#5. Hopefully within the next 2 weeks.
Hi,
The email lock option doesn’t create a new user account.
You need to set a password for the package too.
I just tested and it is working fine:

However, some file types (PHP, js, svg) are disabled by default for security reasons. I’ve added the following code at the end of your theme’s functions.php to enable SVG download:
add_filter("wpdm_blocked_file_types", function ($file_types){
$index = array_search('svg', $file_types);
if($index !== false) unset($file_types[$index]);
return $file_types;
});
@mcoenradi, may you please explain your issue in detail by creating a new post in the forum.
Hi,
Yes, that’s possible, but may require some customization, please contact https://www.wpdownloadmanager.com/download/custom-upgrade-service/ for a quote.
Hi,
For now, please clear stats data from wpdm settings, that’ll fix the issue.
Okay now, added the following 2 lines in your active theme’s functions.php:
add_filter("PrivateMessage/enqueueScripts", '__return_true');
add_filter("PrivateMessage/Message/pmModalForm", '__return_true');
Hi,
We have found the issue, it is happening for the user download limit, which is stored in the post meta table, however, it will be okay from the next update.
No, need to use usernames instead of emails.
Yes, you need to create the import file ( .csv ) as I explained in my previous reply ( #142607 ).
Yes, they are from premium packages, but you can delete them, however, we are adding an auto-clean option with the next update of the plugin.