Hi,
I found no issue with the downloaded zip file. Please check this package https://www.mospixel.com/download/test/ I have attached wpdm-rest-api.zip
file in this package and after download, this zip file opens without any issue.
Thanks.
Are you referring to the Attach File meta box? http://prntscr.com/piaprs Please upload your screenshot somewhere else and send me the link.
Please send temporary wp-admin login info in private reply to check the issue. You can try deactivating other plugins temporarily to check if this is coming from another plugin.
Hi Olivia,
Please follow these steps to enable email lock,
1 ) Go to Package Settings meta box when creating/editing the package.
2 ) Enable email lock from the Lock Options tab.
3 ) All collected email addresses will be listed on the Downloads > Subscribers page.
Please send temporary wp-admin login info in private reply if you want me to set up a demo package there.
Thanks.
Hi,
You have to edit the plugin file for that. Replace manage_options
with edit_pages
in download-manager.php
line no 33 and 36
Thanks.
Yes, WPDM Amazon S3 add-on has the features you want. It generates a dynamic temporary download URL for S3 files. And you can restrict download access using Download Manager Pro.
Yes, you can use [wpdm_frontend flaturl=0]
shortcode to allow file uploads from the frontend. You have to set allowed user roles from Downloads > Settings > Frontend Access > Allowed User Roles to Create Package From Front-end option.
Hi, We will add this code in the next update of the add-on so don’t worry about future updates. Thanks.
Just replace the [download_link]
tag with <a class="btn btn-success" href="[download_url]" traget="_blank">[link_label]</a>
in your page/link template.
You have to define the link template in your category shortcode’s template
parameter. i.e. template="5d84af4097eb5"
Please check the shortcode documentation here https://www.wpdownloadmanager.com/doc/short-codes/wpdm_category-query-all-downloads-from-one-or-more-categories/
Hi,
When creating the package assign the user roles in the “Allow Access” option http://prntscr.com/phms9f
Only the users with these roles will be able to download the file.
You can use all packages shortcode to list your downloads in the frontend.
[wpdm_all_packages items_per_page="10" jstable=0 cols="page_link,file_count,download_count|categories|publish_date|download_link" colheads="Title|Categories|Publish Date|Download::155px"]
Thanks.
Hi,
Do you have the latest version of Download Manager Pro ( 5.0.1 ) and Dropbox add-on ( 1.3.2 ) ? What about the old downloads? Are those functional?
Best regards.
Thank you for your great suggestions. Adding those things will indeed make things easier for users and decrease the forum tickets. We will add these features to the demo as soon as possible.
Both slider and carousel use the featured image http://prntscr.com/phmhep So, you have to set package featured images if you want to use these shortcodes.
Most probably there is a JS error on the page. I have to log in to your site to find out the origin of the error. Please send temporary wp-admin login info in private reply.
Please send temporary wp-admin login info in private reply to check the issue.
Please send temporary wp-admin login info in private reply to check the issue.
Hi,
Please install the latest version to fix the issue. Follow these steps 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 and activate the license key.
To fix the auto-update issue, logout and then login again from your Downloads > Settings > Updates tab.
Thanks.
1 ) Yes, you can show the expiration date by overriding /wpdm-premium-packages/templates/user-dashboard/purchase-orders.php
. This template can be overridden by copying it to /active-theme/download-manager/user-dashboard/purchase-orders.php
2 ) It is not possible yet to use multiple expiration period. But noted for implementation. Currently, you can sell those different support options as extra gigs. But have to manage the expiration manually.
1 ) Yes, Download Manager considers this operation as a download and tracks it.
2 ) You can just set a featured image and that will be used as a package thumbnail.
Hi,
You can display image previews using the [file_list_extended]
template tag. Try the built-in ‘Single Column, Image Top, Extended’ page template. To download the selected file you need the File Cart add-on https://www.wpdownloadmanager.com/download/wpdm-file-cart/
Thanks.
Hi,
All packages shortcode doesn’t have a category relation operator. You have to create a custom template for all packages table to add this AND relation between categories. Please check the related doc here https://www.wpdownloadmanager.com/doc/template-files/
Basically, make a copy of /download-manager/tpls/wpdm-all-downloads.php
file and place it in /active-theme/download-manager/wpdm-all-downloads.php
Then add the following code at the top of the new template file ( after if (!defined('ABSPATH')) die();
)
if( isset( $tax_query ) ) $tax_query = array( array( 'taxonomy' ► 'wpdmcategory', 'field' ► 'slug', 'terms' ► $terms, 'operator' ► 'AND', 'include_children' ► false ) );
Best regards.