Sorry, file count option is available when attaching directory. It counts the number of files in attached files meta box. And in case of directory attach value is set to as default.
Can you group your users? Or are the accessible packages different for each user?
If you can group user, there is an option. We have WP Pro Memberbership add-on. Using it you can create as many levels as you want and then select which level has access to a specific level. There is payment option in the add-on but you can skip it as it is not necessary for your case.
So, in this case, just assign the membership level ( all packages the new user have access to will be under this level ) to the user after registration instead of assigning lots of packages.
Looks like there is an issue when filename has an accent. Will fix it next release of the add-on. You will be notified in admin dashboard when the update is available.
Sorry, Not possible yet. But noted for implementation.
Unlocked the key. Please try now.
Yes, you can. Make a custom template file to modify the button label and link. Here is the related documentation https://www.wpdownloadmanager.com/doc/template-files/
Subscribers info are stored in {$wpdb->prefix}ahm_emails table.
Glad to know 🙂 So I guess, the multisite was not the issue here.
You can add the following CSS to maximize font size.
UL.jqueryFileTree A{fint-size:20px;}
Changing the folder icon requires add-on file replacement and other code changes. So, that’s not possible :/
Please send temporary login info if it is possible. Maybe a plugin or theme issue on that page. Are you using a custom link template there?
There are no Download Manager scripts in the page source. That means the page is showing cached content as it should contain WPDM scripts as the plugin is active.
Could you please send temporary admin login info, so I can take a closer look?
Maybe a cache issue. Try clearing cache. Or add the code directly to child theme’s style.css file.
The profile page is for authors, so each author can control their public profile view. And allowed users ( which is controlled from Downloads Frontend page ) have access to the frontend uploader page.
The lock is working in package details page https://www.recyclart.org/download/pdf-guide-18-homemade-glue-recipes/
Looks like the issue is related to Archive Page ( Directory Add-on ). Which version of Archive Page are you using there? The lock worked in my installation. I have the Archive Page v.2.9.0
You can check the changelog here https://www.wpdownloadmanager.com/wordpress-download-manager-change-log/
No, not the whole file. You just need to copy the code inside function ( Table or Box )
Sorry, there is not a direct option yet to remove the div. But if you are just trying to use the download link inside a paragraph then generate the direct download link from all packages page and use this URL with any text you want.
https://www.evernote.com/l/AUfQQhOl9RxLt7bHn2pKwRYvwUkodJ4H3DIB/image.png
A user must log in after registration. If you set the login page in Downloads Settings Frontend page then the user will be redirected to the login page.
And the login shortcode has redirect parameter [wpdm_login_form redirect="http://localhost/wpdm/dashboard/"] You can use it to redirect the user to the downloads page.
You can use the embed code instead of the direct URL. To covert the direct URL to enbed please add the following code in your theme’s functions.php file,
add_filter('the_content','wpdm_do_oembeds');
function wpdm_do_oembeds( $content ) {
global $wp_embed;
$content = $wp_embed->autoembed( $content );
return $content;
}
Please try now. Unlocked your keys.
Could you please share the URL to check the issue?
WPDM Frontend ( [wpdm_frontend flaturl=0] ) page has a Edit Public Profile tab. You can set profile options ( Banner, Background etc ) there.
You have to use this shortcode [wpdm_my_downloads] to list packages assigned to a user. The profile page show packages created by the user.