Forum Replies Created
Please install the latest version of Download Manager to fix the author name issue. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
There is no option to add the edit package link. It is possible to add one but requires code customization.
Another thing is you don’t have to add a separate column for view link. You can replace your title with page_link to link title to the details page in the first column.
Please send temporary wp-admin login info in private reply to check the issue.
Hi,
Only administrator users are given full access to the file browser. The editor gets a partial access to /download-manager-files/username/ directory.
Comment/remove line no 10 in /download-manager/modules/server-file-browser.php if you want to give full file browser access to selected roles.
$root = current_user_can('manage_options')?$root:UPLOAD_DIR.$current_user->user_login.'/';
Thanks.
You have to use package shortcode multiple times in this case. No other option available.
Disabled user signup notification mail by commenting line no 433 in /download-manager/libs/class.Apply.php file,
https://www.evernote.com/l/AUda4wXrqBxAUahkEj5Wev29Oh_dM9zX4P0B/image.png
Disabled membership signup notification mail by commenting line no 226 in /wppromembership/functions.php file,
https://www.evernote.com/l/AUfbDQ9tLRBJKZkrT_MiJ4YGq1iOOZc4Ng4B/image.png
Need FTP login to create the template file. Also, what do you want to use as button text in the register button?
Please try this <a class="pull-left" href="[download_url]" target="_blank">[icon]</a>
Please add the following code to your theme’s functions.php file to exclude download manager packages from site search,
function wpdm_exclude_from_search() {
global $wp_post_types;
if ( post_type_exists( 'wpdmpro' ) ) {
$wp_post_types['wpdmpro']->exclude_from_search = true;
}
}
add_action( 'init', 'wpdm_exclude_from_search', 99 );
Please check if your cache plugin has the option to exclude a specific page from caching. If it is possible, exclude only the cart page from caching. There is nothing could be done from WPDM side in this case.
There is no option yet to hide empty cart. But it is pretty easy to add this feature.
1 ) Add wpdmpp-empty-cart class in /wpdm-premium-packages/includes/widgets/widget-cart.php on line no 161
https://www.evernote.com/l/AUfxunNhKT1PBr1oBcflN00CU8H0W1bI5KEB/image.png
2 ) Add this CSS .wpdmpp-empty-cart{ dispay: none; }in Customizer Additional CSS.
Please deactivate the plugin first, then reactivate it. Send login info in private reply if that doesn’t fix the issue.
1 ) Add the following CSS in your Customizer Additional CSS option to hide the downloads per page dropdown,
.dataTables_length { display: none; }
2 ) You have to use a custom template for /download-manager/tpls/wpdm-all-downloads.php to add the direct download link. Please check the template doc here https://www.wpdownloadmanager.com/doc/template-files/
Alternatively, you can add the package details page link with the title by replacing title with page_link in your shortcode.
Please send temporary wp-admin login info in private reply to check the issue.
Hi,
It is possible to hide the categories user doesn’t have access to. But you have to explicitly define category access from category settings page in this case. And have to make a minor code update as shown below in /download-manager/widgets/class.Categories.php file,
Add the following code after line no 62,
if( wpdm_user_has_access( $category->ID, 'category') )
Thanks.
Hi,
Thanks for your suggestion. It is noted for implementation.
Currently, WPDM Blocks add-on ( https://www.wpdownloadmanager.com/download/gutenberg-blocks/ ) has the search feature. This add-on works with WordPress Gutenberg editor.
Thanks.
1 ) Fixed the download limit issue
2 ) Custom message is shown only when you set a message in the custom field named acf_CustomMessage_message. This custom field was not available in your setup. I have created it and not you can set messages from edit package screen.
Hi,
Currently, it is not possible using a template. But you can copy the direct download link from all downloads page in the admin area. Each package has a button to generate a direct download link.
After copying the link you can attach it to any text you want.
https://www.evernote.com/l/AUdbmPlfkqBNe5QPADxc1TS8BAJi4rSrKWIB/image.png
Thanks.
Please try the [file_list] tag in your custom template instead of [play_list]
It is not possible to use the shortcode in the admin side. But you don’t have to put it in the admin dashboard to limit the access only to logged users. When creating the package just set Subscriber instead of All Visitors in package access settings. Now use the shortcode on any frontend page. Only logged users will be able to download the files.
Download Manager requires PHP version >= 5.4 Please ask your server support to update the PHP. That should fix this issue.
Please check if directory permissions are different for those folders. Also, check your PHP error log to find any related info.
Please send me the URL. But we need temporary admin access to run some testing to find if the issue is related to WPDM. Could you please send that?
Please set Only Block Download Link in Settings Basic Access Settings When a user is not allowed to download: Option. If that doesn’t work send temporary wp-admin login info in private reply.