The view of search result page is designed by your theme. WPDM doesn’t have authority there. Although your theme search template should link the search result to the details page, not sure why the title is not clickable.
After copying wpdm-all-downloads.php to your theme dir.
To remove the link from title, replace <a class="package-title" href='<?php echo the_permalink(); ?>'><?php the_title(); ?></a> with <?php the_title(); ?>.
And you need to add more columns for show additional values, as they are not part of core wpdm, no wpdm special functions are required there, if you are using our advanced custom fields addon to add custom data, you can use associated php function or template tag to show the relevant data or if you are using WordPress custom field, you need to use get_post_meta function to retrieve and the print the data. WPDM also has a function to retrieve specific package data, that is get_package_data. Doc: https://www.wpdownloadmanager.com/doc/function-reference/get_package_data/ , seems like, this is what you exactly need. However, please let me know if anything is not clear.
If you are are assigning a package to some specific user, you don’t need to create a role for them, you can select users to allow access using AAC as I showed here #62567
As an admin be able to assign either to groups or to individuals and a mix of the two.
— Yes, you can do that.
But, I’m not clear what do you mean by ” NON-AAC user role”.
However, in simple words, all users under assigned roles and individually selected/assigned users using AAC will have access to that package.
with wpdm system for my test. The direct download link needs like 2 minutes before download starts and then the bandwith limitation is not working at all (800Kb instead of 200 Kb in settings).
And finally when download starts, it seems like the count stat are wrong (only counting first download…)
Can you help me with these. I was very happy to found that plugin and now very disapointed 🙁
I just updated to 4.6.9 and the image buttons will no longer work. It simply shows the word “Download” and is a link. How do I get the button to come back?
OK. In the interim I’m using a different plugin to send WPForm data to Zoho from helpforwp.com.
….co.uk/the-adaptive-enterprise/
So using above url…
1. wpdownloadmanager form-lock add-on embeds a WP From into the link template
2. upon submission, user gets an email with download link
3. at the same time helpforwp plugin posts the data to Zoho
However, in step #2, when I submit a download request as a ‘user’, I now get emailed the file link 3 times? Any ideas?
Also is there a way to suppress the ‘Download link sent to your email’ message as I now have 2 confirmation messages, one from WP Forms and wpdownloadmanager.
Thanks
#3. I thought you were using our Zoho CRM addon, which is only compatible with email lock option for now. However, if you are using the Zoho CRM addon for wpform from helpforwp, it should work fine.
# I’m seeing only one notification after form submission
# 3 emails probably becuase of the conflict with other wpform add-ons, however, I’m checking this.
Please use “Single Column, Image Top, Extended” or any custom page template with [download_link_extended] template tag to embed the form in the page. As the popover is not working due to some js errors in your page.
Please disable Load lock options using ajax, that feature is not required to work wpdm properly. However, in link/page template if you use [download_link_extended] instead of [download_link] tag, you will see form embedded in the page.
Hi, I have installed Download manager Pro 4.6.9 and Form Lock 1.5.2. I am trying to use it with Contact Form 7.
After I input all of the fields and submit them, then I got an email notification for administrator with those input data, but no email was sent to the user with Download link.
Hello, I have form lock activated but it only works if I have “Load lock options using ajax” enabled in the settings. It only works if using ajax. I want the form to show when page is loaded though instead of pop up only when download link is clicked. Is showing form on page load possible with this plugin?
Also, when I have the WP Pro Membership plugin activated, it disables the Form Lock completely. Files can be downloaded without showing the form. Form Lock will once again work after I deactivate WP Pro Membership, so there seems to be a conflict with these two plugins.
I have luckily found a workaround to this problem, by requesting that the user be emailed the link instead of directly downloading. However, this is a temporary solution as far as I´m concerned, as I want my users to be able to download instantly and not have to check their emails. I would still like you to fix the issue, and I await your response.
I have in my site one page for downloads that is “/downloads”, so inside this page I’m using some shortcodes to show the downloads. That’s ok and working.
I have some subpages like “/downloads/softwares”, in this case, “softwares” is a page that has the “download” page as the parent. That’s ok and working great.
But when I choose some pack that is listed in any of “downloads” or “softwares” pages, it shows the pack in the URL I’m using inside the Settings/URL Structure, that are “download” for Category URL base and “downbase” for Package URL base.
This is not a problem to have this link, like ” http://my-domain/downbase/winamp-5-666/ “, but when I click on it, inside the page, at the header, below the main manu, it says:
HOME > PACKAGE > WINAMP 5.666
Winamp 5.666
Also, it would not be a problem, except for the link: “PACKAGE” has the link for ” http://my-domain/downbase “, but this is not a page and it give me a 404 error. I want this link to send the user back to the home of downloads ( /downloads ) or the the category/page (they are the same), in this case, “softwares”.
WPDM generate download links are packageurl?wpdmdl=packageid which is not working for strange reason in your server, so I had to change it to homeurl?wpdmdl=packageid.
Changed file: class.Package.php
Old Code:
public static function getDownloadURL($ID, $ext = ''){
if(self::isLocked($ID) && !isset($_SESSION['_wpdm_unlocked_'.$ID])) return '#locked';
if ($ext) $ext = '&' . $ext;
$permalink = get_permalink($ID);
$sap = strpos($permalink, '?')?'&':'?';
return $permalink.$sap."wpdmdl={$ID}{$ext}";
}
Changed Code:
public static function getDownloadURL($ID, $ext = ''){
if(self::isLocked($ID) && !isset($_SESSION['_wpdm_unlocked_'.$ID])) return '#locked';
if ($ext) $ext = '&' . $ext;
$permalink = home_url();
$sap = strpos($permalink, '?')?'&':'?';
return $permalink.$sap."wpdmdl={$ID}{$ext}";
}
when you click on the download link (where the file is attached from Amazon S3), WPDM Amazon S3 creates a temporary download link with 30 mins expiration using API and redirect to it to start download. Please let me know where you facing a problem.
in the same browser session, wpdm counts multiple clicks on the same link as one. If every user uses different browser or close browser after use, then it will count every download. However, we shall add an option in the wpdm settings page to skip the situation on need.
If I have an existing page https://www.wpdownloadmanager.com/ and want to make the Download now link be able to access a link inside Amazon S3 that are not public
I want it to open automatically from the link that I insert not bring up a page that I have to click download on. See attached file.
Or be able to have a PDF viewer open the private file that is stored on Amazon
Author
Search Results
Viewing 25 results - 5,976 through 6,000 (of 9,464 total)