-
Search Results
-
Topic: Advanced Access Control
Hi!
Is it possible to allow only selected users to access a specific purchase?
Advanced Access Control help to control user specific access to files and downloads, but I can’t see how to control user specific access to a specific purchase.
Hope this I possible.
Thanks!
JesperTopic: Parent link is not working
Thanks for all your great support. First class service. I would like to launch the site on wed. I need to tidy a few things …
1. Have a look at the attachment – software-link.jpg. The software link (parent link) at the top menu should be hyperlinked to https://ps-cardiagnostics.com/software/ but there seems to be a bug. Can you help pls
2.If you look at the diagnostics page – https://ps-cardiagnostics.com/downloads/diagnostics-software/, you can see at the footer of the site with pagination 1,2,3 next. How can I make this page to show all products rather rather having the pagination? Thanks
I think that’s all for now
On our site, we have multiple roles for employees that have different permissions handling different tasks on our community. We have the Pro version and have a role called “Customer Support” that we want to be able to export the stats but when we are logged in as that role, we can’t see “Stats” (under “Downloads”) in the admin. We are using the plugin “User Role Editor” but no matter what capability I’ve tried adding to the role, they still can’t see that option (and other ones). Can you help me understand why and if it’s possible to change this? I hope this makes sense…let me know.
Thank you in advance for your help!
LeslieTopic: How do I install my license?
I have an existing Download Manager Free plugin installed. How do I add my new Pro license? I don’t see anything under Downloads > Settings about licenses. I did add my wpdownloadmanager.com login to the Updates page. Under “Purchased Add-ons” it shows nothing.
Good Morning,
I have some documents on my website which are linked as documents from Media, i would like to add these to Download Manager so i can track downloads. For example on this page, http://culchethhigh.org.uk/parental/ there are a list of policies and these documents that i want adding.
I have gone through all the Default Template options and cant find one that is suitable as i would like one that when viewed by the public they dont see the file size, downloads and a download button, its is just a text link as i already have.
Would this be a possible option?
Thank you
Topic: Previous Versions of Add-ons
Hi, how can we download previous versions of downloads we’ve purchased?
Specifically at the moment we need PDF Stamper v1.9.1, Amazon s3 v2.6.3 and Advanced Custom Fields v1.7.3.
Thank you.
Topic: Updating 4.9.0 to 4.9.2
Hi
Bit of an odd one that I have never seen before – when updating v4.9.0 it deletes the whole plugin folder and downloads a new folder (called Prosper) with a theme in it!
Please advise.
Mark
All of my downloads are showing as a number, e.g. https://www.hey.nhs.uk/downloads/ers-referral-forms/ shows as 588b540b86a6a
What is happening? 🙁
Hi,
When I use [wpdm_category] it generates a login box (.w3eden div with a #wpdmlogin and a login form) in the header for every download on the page. It works fine while logged in, but visitors see the login boxes and it breaks styling on the page.
I’ve tried other shortcodes such as [wpdm_all_packages] for the same categories and these display fine, the issue only happens with [wpdm_category].
I need to use [wpdm_category] because I need the “AND” operator to display only downloads that fall within 2 categories.
All packages are Allow Access: All Visitors, I’ve even set each category to “All Visitors” and still can’t get the login box to go away.
Shortcode example:
[wpdm_category id="documents, blue" operator="AND" toolbar="0" paging="1" order_by="field name" order="asc or desc" items_per_page="10" template="5c740c312dc7e" cols=2 colspad=2 colsphone=1]Thanks
Topic: Similar downloads
Here is a short code that will show similar posts with thumbnails. Can you let me know what I have to update to include Downloads / All packages in the results too. Or if there is a better way to show similar downloads please let me know.
<?php $orig_post = $post;
global $post;
$tags = wp_get_post_tags($post->ID);
if ($tags) {
$tag_ids = array();
foreach($tags as $individual_tag) $tag_ids[] = $individual_tag->term_id;
$args=array(
‘tag__in’ ► $tag_ids,
‘post__not_in’ ► array($post->ID),
‘posts_per_page’►5, // Number of related posts that will be shown.
‘caller_get_posts’►1
);
$my_query = new wp_query( $args );
if( $my_query->have_posts() ) {echo ‘<div id=”relatedposts”><h3>Related Posts</h3>
- ‘;
- <div class=”relatedthumb”>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_post_thumbnail(); ?></div>
<div class=”relatedcontent”>
<h3>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_title(); ?></h3>
<?php the_time(‘M j, Y’) ?>
</div>
while( $my_query->have_posts() ) {
$my_query->the_post(); ?><? }
echo ‘</div>’;
}
}
$post = $orig_post;
wp_reset_query(); ?>I’m trying to display all of the downloads available and also remove the “Display ## downloads per page” located at the top left and also remove “Previous 1 Next” at the bottom right of the page.
I have added an image and circled in red of what I want removed, but still be able to display all downloads.
- <div class=”relatedthumb”>” rel=”bookmark” title=”<?php the_title(); ?>”><?php the_post_thumbnail(); ?></div>