Forum Replies Created
Hi Tanvir, Thank you for the reply, I think this is a great option for user-specific situations. Sorry for the delayed reply. Currently I don’t offer any kind of user specific access, so I have a few questions. First, the link to Advanced Access Control that you provided goes to a 404 page. So I went looking for it from the Add-ons section and found this demo link – https://try.wpdownloadmanager.com/addons/advanced-access-control/ but that also goes to a 404 page. I don’t see Advanced access in the demo you provided, what specific would I be looking for in the admin area?
All that said – would this allow me to assign one lock option to non-logged in users and a different lock option (or not locked) for logged in users? Ultimately that is what I’m looking for. A way to provide a limited access area a different type of download option… but I don’t want to have to manually apply that setting to every individual.
I appreciate your help!
HI, I have a paid version. I’ve checked my license and readded it to verify it is valid. I am getting an error saying “There is a new version of Download Manager available. View version 4.7.4 details. Automatic update is unavailable for this plugin.” I can’t seem to update plugin – I have in the past… suggestions? I’m currently using 4.7.3
Thank you
Got it!
TinyMce button needed to update and wouldn’t update through admin. So I deleted the plugin and installed the new version and the file list is now showing. 😀
Thank YOU for your help!
Jen
Update: I found the premium packages plugin and disabled that and then I updated Pro to the latest 4.7.1. I’ll try re-activating the premium packages later. 😀
Incase anyone else needs it – I tried the previous options without success. The below code worked for me:
// search filter
function fb_search_filter($query) {
if ( !$query->is_admin && $query->is_search) {
$query->set('post_type', array('downloads','post') ); // id of page or post
}
return $query;
}
add_filter( 'pre_get_posts', 'fb_search_filter' );
Thank you so much Shaon, this worked great!
Anyone reading.. make sure you are editing the functions.php for the plugin.. not your theme. 😀