Hi,
Fixed all reported issues. I have changed the WPDM page template for this pacakge https://tesolplanner.com/download/assertiveness-unit-student-packet/ to make it look like the demo. If you want you can revert back to your old template or use this one for your other packages.
If you want to use the homepage like the demo, then set “Homepage ( Prime )” as page template for the frontpage. Set the homepage options from Appearance > Customize > Homepage ( Prime )
Please check everything and let me know if missed anything else.
Thanks.
Please send temporary wp-admin login and FTP info in private reply to check your installation. Or just send me the error log file, it should indicate the origin of this issue.
Could you please re-install the v.4.9.8? Please send temporary wp-admin login info in private reply if that doesn’t fix it. Although everything is working on my setup.
Sorry, it’s not possible. You can’t create a folder for another user. User must create their own folders.
[wpdm_frontend]
shortcode has this option, although might not be useful in your case. When using frontend upload all user uploaded files are stored in their own auto-generated folder.
Anyway, the option you mentioned could be useful as an admin feature and noted for implementation. Admin can create users folder an share it with them, WHich reduces the folder creation step for the user.
Registration form creates new users just like the normal WordPress signup form. The shortcode is made for that purpose.
WPDM subscribers come from email lock. When you email-lock a download/package, users must provide an email address to access the download. Download Manager saves all these email addresses in the subscribers list.
Requires code customization to open files in a new tab by clicking the single file download button. The file list is rendered by /download-manager/libs/class.FileLIst.php
file. You have to add target="_blank"
attribute with a tag.
Please let us know if you have further query.
Please try the following CSS. You can add it to Appearance > Customize > Additional CSS to make it safe from theme update.
.w3eden .btn { height: auto; line-height: 15px; padding: 11px 15px; }
Maybe a Bootstrap JS conflict issue. You can deactivate WPDM Bootstrap from User Interface Settings. Please send temporary wp-admin login info in private reply if that doesn’t solve the issue.
Hi,
Thanks for reporting the issue. There is a bug in the AJAX request we are sending to generate the URL. It is always sending 3 ( Usage Limit ) & 60 ( Expire After ). Adding a patch in next release to fix this. Next version is coming pretty soon.
Best regards.
Hi,
We are releasing complete asset manager with the next version of WPDM which will do all the work File Manager does and more. You won’t need the File Manager add-on anymore. The next version is coming within the next week.
Thanks.
Hi,
If you are changing the domain, unlock the key from the old domain. You can do that from your WPDM dashboard or just send me the order id. I will unlock the key.
If you are getting the error without moving the license to another domain, 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.
Hi,
It is possible but requires code customization https://www.wpdownloadmanager.com/download/custom-upgrade-service/
If you want to proceed please send exact specifications to get a quote. Please mail specifications to customize@wpdownloadmanager.com
Thanks.
Replace $template['subject']
with htmlspecialchars_decode( $template['subject'] )
in /libs/class.Email.php
line 193. That should fix the package title too.
Please send temporary wp-admin login info in private reply to check the issue.
Let me add a useful link. This post explains the template customization https://www.wpdownloadmanager.com/building-a-wordpress-download-manager-link-template-from-scratch/
1 ) Yes, I created a custom field named version
in the example. You can add as many fields as you want.
2 ) You can add a custom download period expiration message from the /plugins/wpdm-download-period/wpdm-download-period.php
file.
1 ) Bootstrap CSS was inactive on your site. I have activated it from WPDM UI Interface option. Now the uploader page looks fine.
2 ) You need the File Hosting add-on to use the [wpdm-file-browser]
shortcode.
3 ) Where did you add the code? It should be added at the bottom of your active theme’s functions.php
file.
Works fine on Chrome ( Windows 10 ) too. Maybe it was the page options issue from Frontend access settings.
Hi, We have added a patch to fix the master link issue. It will be released with the next version which is coming within 1 week. Thanks.
By default, AAC shows “X Downloads are shared with you” message. You can edit this message from /wpdm-custom-access-level/wpdm-my-downloads.php
file.
Please check my reply here https://www.wpdownloadmanager.com/support/topic/package-restriction-for-particular-user/
Please rewrite the wpdm_cal_category_query_params
function in wpdm-custom-access-level.php
file with the following code. That should fix the pagination issue. Send temporary wp-admin login info in private reply if you need help with this.
function wpdm_cal_category_query_params($params){ global $current_user; $params['meta_query'][] = array( 'key' ► '__wpdm_user_access', 'value' ► $current_user->user_login, 'compare' ► 'LIKE' ); return $params; }