Forum Replies Created
[pdf_thumb] template tag auto generates an image of the attached PDF file. You can use it directly as [pdf_thumb] or with custom width and height [pdf_thumb_100x300] This tag requires the Imagick installed in your server. It is php add-on.
However, as you are using [thumb_WxH] tag you can increase the value of W and H to increase the image quality. Image quality reduces for lower values of W and H.
Please check your category settings from Downloads Categories page. Maybe users are getting access from there. Uncheck All Visitors from category settings and save the updated option.
https://www.evernote.com/l/AUeNQ2vN-1ZK0qsT4VpXgtusGOnCQDFmV4YB/image.png
Hi,
It should work without selecting the role. As the selected user has special access. Please send login info in private reply to check this issue.
The update is coming within this month.
Thanks.
Hi,
You can use the Default Values add-on ( https://www.wpdownloadmanager.com/download/wpdm-default-values/ ) to set default package settings for new packages. The add-on can also bulk update package settings of old packages.
Thanks.
Unlocked the key from the old domain. Please try now.
The guest order is working now. Please clear the cache if you are still facing the issue.
From your settings, I see that only administrator role can access the file browser. Are you trying with the admin role? We need temporary admin access to further investigate this issue.
Hi,
We have create new templates for the Category Manager add-on file ( /wpdm-catman/tpls/manage-categories.php ) and /download-maanger/tpls/wpdm-add-new-file-front.php file to update those labels.
Copy both files and place those in /active-theme/download-manager/ directory. Then replace all instances of Category with Folder.
That should do the job and your changes won’t be affected by plugin update.
Thanks.
Hi,
The tree view is the best solution for your use case. It is simple and easy to understand for users. Tree view maintains the hierarchy of folders based on category, subcategory.
Here is how you can set this up.
1 ) Replicate your folder structure in Download Manager categories. Category for base folder and subcategory for child folder.
2 ) When creating the package attach the file by browsing from Attach File meta box Browse tab. Then assign the category of the package.
3 ) Place the [wpdm_tree] shortcode in a page to see all packages in a tree view.
I have created a page with the tree shortcode http://visionchristianfamily.org/tree-view-category-hierarchy/ Please check this page to understand how the shortcode works. It is showing you current category structure.
Let me know if you have any further question.
Thanks.
Hi,
Unlocked your license key from the old domain. The key should work on your new domain now.
Thanks.
I have tested this package https://www.complianceupdate.policymed.com/download/september-2018-lsc-update/
Download worked without any issue there. If you encounter file not found error that means the file you attached to the package does not exist anymore. In that case, re-uploading the file should fix the issue.
Please send me a package URL where you have the file not found the error but you think the file is there.
Hi, I have notified the customization team. You will get an email reply soon. – Thanks.
1 ) Please check your wpdm category shortcode. Have you used 0 as value for cols , colspador colsphone? 0 is not allowed as value of these parameters.
2 ) Have you checked if the package has been updated after clicking Save Resource button? There could be 2 scenarios. The save request failed due to a JS error on the page. Or save request was successful but the message was hidden due to a CSS issue. However, I need temporary admin access to check this issue thoroughly. If you can, Please send it in private reply.
Please send temporary wp-admin login info in private reply. I have to run some tests there.
You have to update package settings of all packages by visiting edit package page. Set the allow access to All Visitors and enable email lock.
If you want to bulk update all packages instead of visiting each package use this Add-on https://www.wpdownloadmanager.com/download/wpdm-default-values/
This add-on ha option to update all package with a given setting in a single click.
You can do it easily by restricting downloads only to subscribers. Remove ‘All Visitors’ from package access settings and add ‘Subscriber’ instead. Then only logged in users will be allowed to download the files.
Hi,
There is a usage limit in download link generated for a user. You can increase it from settings if you want. Please set the desired value from the Settings Basic File Download Panel Private Download Links Usage Limit option. Set something greater than 0 as value.
Thanks.
Hi,
Download Notification add-on does not have the template support yet. It sends a plain email. You can edit the email content from Downloads Settings Email Notification Tab.
Thanks.
Are you referring to the folders in [wpdm_tree] shortcode?
Each of these folders represents a category. When there is no package in a category the folder is empty. An example is category 4_08_Medienkonzept
https://www.evernote.com/l/AUeVMEX-2j5AuJ5f3-oXv7hn7g3K_DQtGYMB/image.png
https://www.evernote.com/l/AUdhze6avIhKb6fmINjU7vM9ZPJDL7HbUB4B/image.png
Yes, you can add the add to cart button in your custom link template. Just use the [file_list] template tag on your link template.
You can add the following code to your theme’s functions.php file to change the taxonomy labels.
function wpdm_custom_taxonomy_args( $args, $taxonomy, $object_type ) {
if ( $taxonomy == "wpdmcategory" ) {
$labels = array(
'name' ► __( "Folders" , "download-manager" ),
'singular_name' ► __( "Folder" , "download-manager" ),
'search_items' ► __( "Search Folders" , "download-manager" ),
'all_items' ► __( "All Folders" , "download-manager" ),
'parent_item' ► __( "Parent Folder" , "download-manager" ),
'parent_item_colon' ► __( "Parent Folder:" , "download-manager" ),
'edit_item' ► __( "Edit Folder" , "download-manager" ),
'update_item' ► __( "Update Folder" , "download-manager" ),
'add_new_item' ► __( "Add New Folder" , "download-manager" ),
'new_item_name' ► __( "New Folder Name" , "download-manager" ),
'menu_name' ► __( "Folders" , "download-manager" ),
);
$args['labels'] = $labels;
}
return $args;
}
add_filter( 'register_taxonomy_args', 'wpdm_custom_taxonomy_args', 10, 3 );
You can copy the accordion add-on from here http://www.eltutorial.es/ and use it on your intranet site.
Or add the patch yourself on intranet site.
I’ve added following js code:
$('#accordion-<?php echo $acccount; ?>').collapse({
toggle: true
})
$('#accordion-<?php echo $acccount; ?> .panel-heading a').on('click', function(){
$($(this).attr('href')).collapse('toggle');
});
After jQuery(function($) { to make it work.
and It is working fine now.
Do you want a link to the package details page from the all downloads table? I have replaced title with page_link in all packages shortcode to add the details page link in package title.