Hi,
Download Manager won’t show the full path to the file. The plugin generates dynamic download links like the following one,
www.site.com/download/package-url/?wpdmdl=5209&refresh=5d047e2e822231560575534
If you want you can add this in the download button but not the actual pdf file path.
Thanks.
Hi Jason,
Please install the latest version to fix the issue. Follow these steps to update the plugin,
1 ) Deactivate and delete the old version. You won’t lose any data.
2) Download latest version from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
3 ) Install the latest version and activate the license key.
Thanks.
Assign the ‘Subscriber’ role as ‘Allow Access’ option in package settings meta box. And then set a custom message in “Login Required Message:” option in the “Basic Settings” page. Logged in subscribers will see the download button and non-logged user will see the message. You can set anything in the message, it could be another button too which links to the login url.
Are you just trying to show your packages in the page or want to export files in a csv or xls?
If it is just listing packages with their categories then use all packages table. The table is customizable using various parameters. Here is the demo link: https://demo.wpdownloadmanager.com/wpdmpro/package-list-in-responsive-table/
There is no double opt-in feature for the registration process. You can use the double option on Email Lock feature on MailChimp subscription using this add-on https://www.wpdownloadmanager.com/download/mailchimp-subscription/
It is possible but requires a custom solution.
Please use the following shortcode to order packages by ID,
[wpdm_tree download_link=1 orderby=ID order=asc]
Then just copy the new /download-manager/wpdm.php
file and replace your old file with the new one.
Please send temporary wp-admin login info in private reply to check the issue.
Please send the admin login URL.
Please send temporary wp-admin login info in private reply to check the issue.
Hi,
Add the following code to your theme’s functions.php file to include child category posts too. This code uses the wpdm_embed_category_query_params
filter which allows you to modify any query parameter.
function wpdm_embed_category_query_params( $params ){ $tax_query = $params['tax_query']; $taxonomy = $tax_query[0]['taxonomy']; $terms = $tax_query[0]['terms']; $operator = $tax_query[0]['operator']; $params['tax_query'] = array(array( 'taxonomy' ► $taxonomy, 'field' ► 'slug', 'terms' ► $terms, 'include_children' ► true, 'operator' ► $operator )); return $params; } add_filter('wpdm_embed_category_query_params', 'wpdm_embed_category_query_params');
Best regards.
Currently, It’s not possible to auto open folders.
Please send temporary wp-admin login info in private reply to check the issue.
Please try now.
Where does it say full? In the package details page? The limit works fine in my case. My limit was exceeded on the other day. Today I was able to download again.
Not clear. Please send me the package link where you experienced this issue.
Default Values are being set properly when creating a new package. Why do you think it is not working?
Your global lazy download was disabled and you were using the global option. That’s why it didn’t work. I have activated the lazy download globally. Now it will work for all packages unless you disable lazy download from package settings.
Where is the picture? Maybe you forgot to attach it.
I will try my best to solve all the issues you are facing. Most of these are related to settings. As you new user you do not have the knowledge of all options in the plugin.
Could you please re-upload the pictures or send me a link to the image? I check the download here https://www.ameede.com/download/e0003217/ and it is working.
You can hide the whole download package by setting “Hide Everything” when the user doesn’t have access to the package. Does it work for you or are you just trying to hide a small part of package description?
After a thorough debugging, found the origin of this issue. When trying to resize the preview image WordPress is throwing an error “No editor could be selected.” This a core WordPress error message.
After getting this error I checked the image editor from Media tab to be certain the issue is related to core WordPress. And yes it is. I couldn’t use the image editor in Media library which has nothing to do with Download Manager.
So, the question is why WordPress is throwing the error? Two possible reasons. WordPress uses GD or Imagick library for image editing. Maybe none of these libraries is active in your site.
Please ask your server support to enable these libraries for you. You can enable only Imagick ( this is better ) or both.