Forum Replies Created
Your theme is deactivating the click on the download link. The click is triggered by JS onclick event.
However, there is a workaround. I have created a clone ( Single Column, Flat Clone ) for the page template ( Single Column, Flat ) you are using there. Replaced the [download_link] template tag with <a href="[download_url]" class="btn btn-sm btn-success">[link_label]</a> This uses direct URL instead of JS onclick event to initiate download.
Check the example here https://www.teatimemonkeys.com/download/single-opt-in-mailchimp-english/
This clone template will work with only packages that have no lock. For locked packages use the original ( Single Column, Flat ) template.
If all of your downloads are unlocked, let me know. I will bulk update page template for all packages so you don’t have to update one by one.
It is not possible yet to set currency in Membership add-on. Although it is showing $ in settings, It takes the currency from Premium Package during checkout.
Please send temporary wp-admin login info in private reply to check the issue.
Thanks for reporting the issue. We will fix it in next version.
Hi,
Sorry for the delay
1 ) A user can download it anytime from their dashboard. No option to send it again.
2 ) You can generate a temporary download link from All packages page. Check the download button under each download.
3 ) Which settings are you referring to? Temporary download links can’t be changed, you can set the parameters only when generating the link.
Thanks.
Hi, Installing the Premium Package should fix the issue. Thanks.
Please send temporary wp-admin login info in private reply to check the issue. This looks like some kind of conflict with your theme.
Please install the latest version of Download Manager. That should fix the issue. I can install the updated version for you. Just let me know if I should proceed with the update in that case.
Please send temporary wp-admin login info in private reply to check the issue.
The default page template is located here /download-manager/tpls/page-templates/page-template-default.php
You can copy and place it in /active-theme/download-manager/page-templates/ Then make your modifications to keep the changes even after plugin update.
Or you can use the Default Values add-on to set a different default template for new packages. It also allows you bulk update old package settings.
Works on my test. The issue is related to your browser settings. I think you are blocking popup. But popups must be allowed to start the download automatically.
https://www.evernote.com/l/AUfU6BwXOrVAy4ZXUU2680JKkXpJjHmWl0kB/image.png
Please send temporary wp-admin login info in private reply to check the issue. Everything works fine in our side. Nonces are checked during registration.
The issue may be related to your “File Browser Root:” I tried to update the root but couldn’t save the settings as the WordFence blocking the saving operation. Please ask Word Fence to allow it or disable the Word Fence.
The tree shortcode wpdm_tree is coming from Extended Shortcodes add-on http://www.wpdownloadmanager.com/download/wpdm-extended-short-codes/ Installing it will fix the issue shortcode issue.
You can access the user uploaded files from Frontend Uploader File Manager tab. No need to create another page for that.
– If having an issue with the upload process send login info in private reply.
– You manage actual files using File Manager. To edit package info ( i.e. description, thumbnails etc ) you have to edit package from Frontend Uploader All Items tab.
– Yes, if you want I can add custom CSS to hide New Folder option.
– Upload from add/edit package page and File Manager goes to the same directory in the server which is /uploads/download-manager-files/username/
Hi Paul,
Try uploading files from File Manager Tab. Maybe there is no file uploaded by your user.
The setting tab is actually empty, it is used to add options dynamically using hooks. No need to worry about it.
Please send wp-admin login info in private reply if you want me to take a look there.
Thanks.
Sorry for the delay. Looks like there is an issue with FB login. We are looking into it and will add a patch in the next release to fix it.
Sorry for the delay. Please send wp-admin login info in private reply to check the google login issue. It works on my setup.
Add the following code to your theme’s functions.php file. That should limit the access of media library to own uploads for all roles except administrator,
add_filter( 'ajax_query_attachments_args', 'wpdm_show_current_user_attachments' );
function wpdm_show_current_user_attachments( $query ) {
$user_id = get_current_user_id();
if ( $user_id && !current_user_can('activate_plugins') ) {
$query['author'] = $user_id;
}
return $query;
}
Maybe there are multiple instances of Bootstrap in the page. However, I have to check this issue there to be sure. Please send temporary wp-admin login info in private reply to check the issue.
It is a built-in feature. No add-on is required for that.
Not possible yet. You can show only file icon or thumb.
Remove the marked code,
https://www.evernote.com/l/AUdQEJazKAhL_qlCMOqaQ3U6HWp_QP8ShS4B/image.png
Or just replace the line using the following code,
$zipped = wpdm_zip_files($files, $zipname );