Forum Replies Created
Added redirect parameter in login shortcode to redirect to the dashboard page.
[wpdm_login_form redirect="https://wirtschaftundethik.ch/publikationen-download-center/"]
No option to show all downloads in user dashboard. Code customization is required to implement this feature.
Please take a look at Archive Page add-on https://demo.wpdownloadmanager.com/wpdmpro/archive-page-default/ It has category filtering feature. Archive Page has some other views too, check all views in Directory Add-on menu dropdown. You can use shortcodes to show these views anywhere you want.
Hi,
Download Manager requires PHP version >= 5.4 Please ask your server support to upgrade PHP version to fix this issue.
Thanks.
No way to automate this. Most probably those files were attached from a location where they don’t exist anymore.
Could you please re-check the login info? Not working for me. Btw, The -1 could appear when the user is logged out of the WordPress.
Hi,
Unlocked the key from the test server. Please try now.
Thanks.
Hi,
We will complete the customization within 24 hours of payment. You can request any minor changes after the work is done. We do not ask for extra payments for these changes/revisions.
Yes, it does include setting up the login, register etc pages.
No, it does not include bulk import users option. But there are some plugins ( e.g. https://wordpress.org/plugins/import-users-from-csv-with-meta/ ) that can perform this operation.
Thanks.
The issue may be related to a plugin conflict. Please try deactivating other plugins to pinpoint where it is coming from.
I have created a demo package here ( https://demo.wpdownloadmanager.com/wpdmpro/download/book/ ) with same lock feature and it worked fine in IE 11.
Hi,
Sorry for the delayed reply. It seems there is nothing to do from WPDM side as wget uses the URL to name the file. WPDM download links are dynamic, it doesn’t contain the exact file name which wget can use to name the file.
But there is an option to set the file name and the download URL contains the package name. So, I think your users can utilize it.
Thanks.
Sorry for the delayed reply.
Could you please send temporary wp-admin and FTP info? I will add some custom code to check if that fixes the issue you are facing with individual downloads.
This is not a template file. So, you can’t create a copy of it. The only option, for now, is editing this file after each update :(.
1 ) The download limit of a member is calculated by summing up limits of all member plans. In your example, the limit is 40.
2 ) Membership plans are independent. No option yet to create sub-membership. Although, it seems same as creating another membership plan.
Permission settings in WPDM categories are saved as options, not custom fields. Maybe WPML duplicate option is not available for options.
Please check now. I have added the file. There was an error in the code above. The Deutschland category is showing the image I set from category settings.
Are you using Download Limit add-on? The limit exceeded notice is coming from there or your package settings. However, Please send temporary wp-admin login info if you want me to check that.
Install and Activate Premium Package add-on to sell packages. After activation, you a new tab with pricing options will appear in packages settings meta box.
WPDM uses server time. No option yet to change the timezone unless you do it from server settings. However, we will adjust this feature soo to sync timezone with WordPress settings.
Yes, we can add the subscribers and stats in frontend uploader dashboard or anywhere in the frontend. That would require 4 hours of customization. Total customization would be $300 only.
It is possible but requires plugin customization. Add the following code after line 26 to get the category icon. Then include the variable as shown in the screenshot ( marked 2 )
$category_obj = get_term($term->term_id); $category_metadata = maybe_unserialize( get_option( "__wpdmcategory" ) ); $category_image_url = isset( $category_metadata[ $category_obj->term_id ][ 'icon' ] ) ? $category_metadata[ $category_obj->term_id ][ 'icon' ] : ''; $cat_icon = $category_image_url != '' ? '' : '';
https://www.evernote.com/l/AUe5midDEhlM47lbBsgABfOpNQyeBWS5F_MB/image.png
If you want to keep your changes unaffected by plugin update then copy the customized file and place it in /active-theme/download-manager/ directory.
You have to modify the plugin file for that. No option to implement it from the shortcode. All required changes are marked in the screenshot below,
https://www.evernote.com/l/AUd-iq_jzPBAr5U8PvglqEH9oZZ5NUD_YQ4B/image.png
Hi,
It is possible to keep the package download button open in the same session once the package is unlocked. You can add the following code after line 193 in /download-manager/libs/class.PackageLocks.php to apply it,
if( isset( $_SESSION[ '_wpdm_unlocked_'.$package['ID'] ] ) == 1 ) {
$download_url = \WPDM\Package::expirableDownloadLink( $package['ID'] );
$link_label = get_post_meta($package['ID'], '__wpdm_link_label', true);
$link_label = trim($link_label) != '' ? $link_label : __('Download', 'wpdmpro');
$data = "";
}
But it will require very lengthy modification to unlock single file links. For now, use this modification. We will consider what you proposed for the future release of WPDM.
Thanks.
Hi,
Using Newsletter add-on ( https://www.wpdownloadmanager.com/download/wordpress-newsletters-autoresponder-plugin/ ) you can do it but that requires users to subscribe to your list first.
Thanks.
I have removed the previous attachment and attached the FR file again. The download is working now. If you find similar cases you can try this approach.
Yes, it is possible. To remove the Edit Profile and Settings Tab a custom template is required. Here is how you can do it,
1 ) Copy the /download-manager/tpls/author-dashboard.php
2 ) Put the file in this dir /active-theme/download-manager/author-dashboard.php
3 ) Remove line 23 and 25 from the template file
Let me know if you have further questions.
Hi,
cURL is not active or installed or not functioning properly in your server. Please ask your server support to enable cURL. That should fix the license verification issue.
Thanks.
Hi,
Font Awesome is not from Google fonts.
WPDM does load google fonts in some pages. There is no option to disable google fonts. If you want to remove Google fonts you have to do it manually. Remove the line no 1 from /download-manager/assets/css/front.css file.
Thanks.