Forum Replies Created
Looks like Premium Package add-on is not active there. If you are not using Premium Package then add the following code in your theme’s functions.php file,
function wpdmpp_sanitize_array($array){
foreach ($array as $key ► &$value){
if(is_array($value))
wpdmpp_sanitize_array($value);
else {
$value = strstr($value, "\n")?wp_kses($value, array('strong' ► array(), 'b' ► array(), 'br' ► array(), 'p' ► array(), 'hr' ► array(), 'a' ► array('href' ► array(), 'title' ► array()))):sanitize_text_field($value);
}
$array[$key] = &$value;
}
return $array;
}
Please send me the key in private reply to unlock it.
Hi, Do you want to stop auto-renewal for both orders under your account?
After adding custom fields you have to check the ‘Show in user registration form’ option. Then custom fields will be automatically added to the WPDM signup form ( [wpdm_reg_form] ).
https://www.evernote.com/l/AUfF_fZXuehJVLqA5B5lUVnjqu_zmtdG8SoB/image.png
You get those File Manager menus after installing the File Manager add-on. Those won’t be there if you deactivate the add-on.
About the password, I thought you were not setting the password initially. You can send the password using [#password#] tag when setting password during signup.
Please create the Buckets and folders from Amazon S3 manager page. And use the Edit package screen to upload files or attach files.
Download stats works with all versions and You can install the updated version of S3 add-on now. The settings issue occurs when some install the latest version for the first time. As you are updating from an older version you won’t face it.
Hi Ken, This looks like a plugin conflict. Please create a new support ticket and send temporary wp-admin login info there.
Hi,
Create two columns with publish_date and expire_date heading. Then use date format 2018-11-25 12:00 am to set the dates.
https://www.evernote.com/l/AUeuY5HhstlD_J9FRuSxDRGmpQO6LhRSl2wB/image.png
Thanks.
Yes, it only works with the link and page templates. Because we made the changes in the template. Other views are not controlled by link templates so the changes don’t have any effect on those.
Following only step 1 is not enough. You have to assign the file using step 2. In the following screenshot, only user ‘TESTER’ are allowed to download the file.
https://www.evernote.com/l/AUcSu7NJXxVN979GHdeALzUvvlW24uDUicgB/image.png
I am referring to the Generate Temporary Download Link option,
https://www.evernote.com/l/AUfd8bhJft5O8q5yQC2nSeKLmSARMfHDyeQB/image.png
Please add the following code after line no 154 in /download-manager/libs/class.Package.php file. That should fix the warning.
if( ! isset( $vid ) ) $vid = 'WK8qRNSmhEU';
The issue looks like somehow related to role settings. However, I need to edit some code to run tests. Could you please send FTP info?
You are right. The template is being used partially. But as the page template was empty there was no content render from there. I have added [file_list] tag in your page template to confirm that. Now file list is visible right below the thumb image.
https://www.evernote.com/l/AUf1CPK819FEt761Zq88QxZuA2YX2eS4dUYB/image.png
Actually, you can show a random package from a category using the Download Manager category shortcode. After checking the issue more closely I found that using the following structure you can implement it. Crucial parameters here are toolbar=0 item_per_page=1 order_by="rand" paging="false"
[wpdm_category id="flat-ui," cols="1" toolbar=0 desc=1 item_per_page=1 template="link-template-calltoaction1" order_by="rand" paging="false"]
Sorry, No solution available yet for Digital Ocean Spaces. We have some other cloud storage add-ons like Amazon S3, Dropbox etc. Maybe you could try one of these.
1 ) Use [premium_file_list] template tag in your template to show file list with price
2 ) Replace [download_link] with <a class="btn btn-primary" href="[download_url]" target="_blank">Download</a> to open files in a new tab. Works with unlocked files only.
Hi Daria, Thanks for helping.
Hi Ida, Looks like those strings are missing from pot file. You can send me your .po file, I will send you an updated copy after adding those strings.
You can update the plugin from your plugins page if are logged in to your WPDM account from Downloads Settings Updates page.
Or you can follow this approach 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.
Thanks.
The release date is not fixed yet. It might take some time. We haven’t started working on this yet. But will try to release an update at earliest possible time.
You can add more fields in Email Lock using Advanced Custom Fields add-on https://www.wpdownloadmanager.com/download/advanced-custom-fields/
1 ) Remove the ‘All Visitors’ from Allow Access option of the package N
2 ) Set user A in Select Members option of the package N
3 ) Generate the share URL from All downloads admin page.
Are you always using the Select Members option? In that case, a page with [wpdm_my_downloads] shortcode will list all downloads user have access to.
Please try re-installing the Download Manager. If that doesn’t solve the issue send temporary admin login info in private reply.
Hi,
So, you want to filter your packages using various levels.
I think Archive Page ( https://www.wpdownloadmanager.com/download/wpdm-directory-add-on/ ) sidebar view is what you need. You can create categories and sub-categories to define your levels. Then Archive Page sidebar view allows you to get downloads from a specific level using step by step filter.
You can check the demo here https://demo.wpdownloadmanager.com/wpdmpro/archive-page-sidebar/
https://www.evernote.com/l/AUdYJLvCojpNSZ8i-1jM39yCnK-rKTnMeOEB/image.png
Thanks.