We have a gated download available after a user provides their name and email address. upon submittal they are presented with a screen that contains download button and an email is sent with a link as well. If the user selects to download using the button, then the download link in the email does not work (show “Invalid Download” error)…and vise versa.
The download button and the email link both use the same auto generated unique url (ex. https://decisivmarketplace.com/download/decisiv-commercial-vehicle-service-analysis-report-q1-2023/?wpdmdl=47231&_wpdmkey=652053e205c7a&subscriber=EKuC93DYZJBmptiLwj7miORMHYHqVgSa0LHc-RoRVF-WxU0xUv_ARxSS0MFerUw6s-eeGPFAAXMJ6FO8w6Aqeg)
The package download limit is 999/user
The Email Lock Options are:
Ask for visitors name: SELECTED
Download Instantly: SELECTED
Do Not Mail Download Link: NOT SELECTED
Any help is appreciated.
I just updated the plugin to 6.4, and this shortcode is no longer working:
[wpdm_all_packages jstable=1 cols="page_link,file_count|categories|download_link" colheads="Title|Categories|Download"] – had no issues on 6.3.6.
I have my site set so that downloads are only available to logged in users – if you visit https://wptest.wprnd.net/downloads-index while NOT logged in, you can see one download in the list. This download allows access to all visitors. All others are limited to certain user roles, and are not displayed. However, when I am logged in, no downloads are listed (should be a large list, plus the one w/ access to all visitors).
All was fine on 6.3.6. Please let me know if you have questions, or when an update is released. Tks
First, I apologize for starting a WPDM Pro discussion in the Free WPDM forum.
I’m planning to purchase WPDM Pro to handle our website download workflow. I Tried to use WPDM Pro Bulk Import Feature with this link https://try.wpdownloadmanager.com/wp-admin/edit.php?post_type=wpdmpro&page=importable-files
menu says import complete. But no new package entries are added from my csv file. No error message is displayed. Obviously I did this with your tutorial, but it hasn’t worked.
Is there a feature to allow registered user to view video instead of download them.
i do not wan the user to store my videos on their pc, they can take my video to distribute elsewhere. (prevent piracy)
is there a way to allow them to play on my website only? and disallow them to use hotlinks to download.
hello
in the ‘packages’ area , i use the icon to create the download URL. This one I link to the download-button. I keep getting the ‘you have no authorization to download ‘. I can’t find where to change the permissions.
Thank you
I have a password-protected freebie library where I display the free downloads on my site. I formatted a link and used that link in the category tree widget to create a grid of the freebie category. It is 3 columns, and recently the formatting has been placing the first package correctly in the first column and then adding all the rest of the packages on the page into the 2nd column. I can see from inspecting the page that it appears to be missing some </div> tags. This is new, as it used to display correctly. It also displays correctly on the back end of the wordpress editor and displays correctly on page 2 of the cateogry tree.
I have tried replacing the category tree with the package list and the problem persists.
I will send the login information as well as the password for the protected page in the next comment. Please help.
I have a set up that’s not working on Chrome but works in Safari. I will post a link to the example privately.
There are multiple pages using this code and all of them are broken in Chrome (see side menu on page to navigate between them).
Page shortcode:
[wpdm_category id="meat" operator="IN" title="1" desc="1" toolbar="0" paging="1" orderby="field name" order="asc" items_per_page="50" template="card_preview_link__single_downloads" cols=1 colspad=1 colsphone=1 async=1]
Template code:
<div class=”link-template-default card mb-2″> <div class=”card-body”> <div><h3>[file_list]</h3></div> <p>[description]</p> </div> </div>
We have a site that uses the plugin “WP-Filebase Pro.” We are trying to get all documents transitioned over to Download Manager.
We’ve done testing with the WP-Filebase Data Importer and it looks to be successfully importing the existing documents into Download Manager. However, all document links on the site are referencing the WP-Filebase Pro using the shortcode feature. Has there been any solution developed that would also aid in updating the document links on the site so that they point to the Download Manager documents instead? Or is there a feature that would apply the same shortcodes to the documents in Download Manager?
Thank you!
Hi! hope you doing good, how can show the download button on the post tamlate?
I am using ‘rehub’ theme , and the theme have custom post layout tamplate so I am thinking that if I can display the download button on the theme post template without dwpmpro page template it would be better for me . I tried it throght php but it does not work. here is the sample
<?php
$package_id = get_post_meta(get_the_ID(), 'package_id_meta_key', true); // Replace with your meta key
if (class_exists('WPDM\Package')) {
echo \WPDM\Package::downloadLink($package_id);
} else {
echo 'WPDMPro plugin is not active.';
}
?>
<?php
// Get the current post's ID
$post_id = get_the_ID();
// Check if the WPDMPro plugin is active
if (class_exists('WPDM\Package')) {
// Get the package ID associated with the post
$package_id = get_post_meta($post_id, 'package_id_meta_key', true);
// Check if a package ID is available
if (!empty($package_id)) {
// Get the download URL for the package
$download_url = \WPDM\Package::get($package_id)->fileURL();
// Check if a download URL is available
if (!empty($download_url)) {
// Display the download link
echo '<a href="' . esc_url($download_url) . '">Download</a>';
} else {
echo 'Download link not available.';
}
} else {
echo 'Package ID not found for this post.';
}
}
?>
[download_link]