Before I purchased the WPDM ACF add-on, I read on the add-on page on your website (https://www.wpdownloadmanager.com/download/advanced-custom-fields/) that you can “8. Customize front-end package form
” – but I cannot find any documentation on how this works. I have created field Groups, and fields within those groups. But how do I connect those groups or fields into the Add New Package form on the front-end? I can see screenshots of the outcome of this on the ACF add-on page, but no documentation as to how to do it – please explain how this works. Thanks
How can I create the a page like this one on the demo page?
https://try.wpdownloadmanager.com/downloads/free-downloads/
Does this require the pro version? I don’t mind buying it, but I don’t want to buy it to find out it does not come with this. I need users to land on this page and type in their model number to filter the list to only give them the downloads for their model. Would also like for it to be able to have an argument in the URL to filter by, so we can send them direct links.
Thanks
I need hep for the following issue:
The file that is created using Download Manager has a pdf link. Only registered users are allowed to have access to the download.
The page template is such that, under the Abstract, there is Login button. When the user has to download the pdf file, he has to sign in. The login form is shown as Pop-Up. Ones the user is logged in the Login button gets replaced by Download button.
NOW I want to restrict the access the Download to certain countries. For eg. users from Country A, B & G will not have access to download. For this I purchased AIOS and Login/ signup page was listed for NO ACCESS for those countries. Now if the user is accessing the Login from the Menu, the restriction works. But when the user clicks on Login to Download button , the Login popup is not getting restricted.
Sociability and Dominance: Extraversion’s Competing Subdimensions
Please suggest a solution.
Example: https://livingroomconversations.org/download/communicating-with-care/
I am having a hard time getting the image centered(and would prefer for it to not be in a box)
Here is the template codes, currently:
<div align=”center”>
<div class=”row”>
<div class=”card mb-3 p-3 hide_empty [hide_empty:featured_image]”>[featured_image]</div></div>
<div class=”wpdm-button-area mb-3″>
[download_link]
</div>
</div>
<br>
<p> [description]</p>
<div class=”promo-section”>
If you find this guide valuable, please consider making a donation of $5 to help us continue offering free resources.</p>
</div>
<h3>Included in this download:</h3>
[file_list]
<p></p>
<p>Click here to see all topics</p>
</div>
</div>
</div>
Good afternoon,
I would like to remove the attribute from the button to download the tabs on wpdm. I tried searching in the settings but there is nothing about it. How can I do this? I also tried putting this code in function.php:
add_filter(‘wpdm_link_template’, ‘remove_nofollow_from_wpdm_links’, 10, 2);
function remove_nofollow_from_wpdm_links($template, $package){
// Removes “nofollow” from the rel attribute (double or single quotes, with other values)
$template = preg_replace(‘/\bnofollow\b\s*/i’, ‘’, $template); // removes word
// Se rel="" rimane vuoto dopo la rimozione, toglilo
$template = preg_replace(‘/\s*rel=(["\’])\s*\1/i', ‘’, $template);
return $template;
}
But it doesn’t work!!
My button is built like that:
<div class="pdf-wrapper">
<div class="pdf-text">Scheda tecnica</div>
<i class="fas fa-file-pdf pdf-icon"></i>
[download_link]
</div>
Any idea? Thanks!