Forum Replies Created
Please check my reply in this ticket https://www.wpdownloadmanager.com/support/topic/filename-comes-with-storage-path/
Do you want to send email to the admin when someone downloads a file? It is possible using the Download Notifications add-on https://www.wpdownloadmanager.com/download/download-notifications/
The procedure I suggested is actually permanent. You can update the option right after activating the plugin.
I will set it up for you if You can send FTP and wp-admin login info in private reply.
User registration is not required when guest order and guest download is active. A customer can download their file from guest download page by providing order id and email address.
My previous suggestion should be enough to set up this guest download process. Let me know if you need help with that. You can send temporary wp-admin login in private reply.
Perform the following 3 operations in file /download-manager/admin/menus/class.Stats.php to add the IP in exported download stats csv.
Replace line 36 with
echo "Package,User ID,User Name,User Email,Order ID,Date,Timestamp, IP\r\n";
Replace line 40 with
echo "{$d->file},{$d->uid},\"{$u->display_name}\",\"{$u->user_email}\",{$d->oid},{$d->year}-{$d->month}-{$d->day},{$d->timestamp},{$d->ip}\r\n";
Replace line 42 with
echo "{$d->file},-,\"-\",\"-\",{$d->oid},{$d->year}-{$d->month}-{$d->day},{$d->timestamp},{$d->ip}\r\n";
Are you using WPDM login form? You can set the login redirect to any page you want. Do you want to redirect to admin dashboard or WPDM User Dashboard page?
Please send temporary wp-admin login info in private reply to check the hidden content issue.
Added the new menu. When you click on the add new menu it will redirect to the add new tab of frontend uploader page.
Hi,
It is possible to set everything up as you explained above.
The most efficient way for your project would be the user registration, not the email lock. Here is the workflow,
1 ) You display all your downloads here http://www.gdacllc.com/project-center/current-bids/ ( There are many ways to show downloads, we will use one that you think best for your users )
2 ) When a user tries to download, the user is asked to signup/login to your site. This is possible using WPDM, I will set it up for you.
3 ) When creating the package you have to select Subscriber user role in Allow Access: option in package settings.
https://www.evernote.com/l/AUfznEhkJ2dD9bOy7Y5xg0e5KK0lVGdXqA8B/image.png
Now, let’s discuss the admin features you want. Using WPDM Frontend uploader the admin ( your client ) can upload and manage packages without going to the admin area.
From your previous replies, I think you need the following extra features, let me know if there is anything else.
1 ) View subscribers list
2 ) View download statistics
We can build these for you as a custom upgrade service. I will let you know how to proceed with customization after getting your reply on this ticket.
Thanks 🙂
You can’t put the whole frontend upload form in user dashboard. Maybe just put a link to the Frontend uploader Add New page. If you need help with that please send wp-admin login info in private reply.
Are you using the frontend upload form? In that case, you add the following code after line no 250 in /download-manager/tpls/wpdm-add-new-file-front.php to notifiy users,
if ( jQuery('input[name="cats[]"]:checked').length == 0 ){
alert('You must select a category for the package!');
return false;
}
Hi,
If you are hosting on Siteground add the following rule in your .htaccess file to fix the saving issue,
<IfModule mod_security.c>
SecFilterRemove 001868
</IfModule>
If that’s not the case please send temporary wp-admin login info in private reply.
Thanks.
Which shortcode are you using to show a list of packages? It might be possible to execute the shortcode in such situation but there could be a performance issue.
You have to add recommended parameter in your shortcode to show this section. Please check this doc link for more info https://www.wpdownloadmanager.com/doc/short-codes/wpdm_user_dashboard-user-dashboard-short-code/
The key was linked to your dev site, that’s why it was showing the error on new site. I have unlocked the key from dev site. Please try now.
1 ) Subscriber should be able to create/edit packages now. I have added the following patch.
Replaced edit_post with upload_files in /download-manager/libs/class.AuthorDashboard.php file ( line no 54 ).
2 ) It is not possible to limit category in this way from [wpdm_frontend] shortcode. File Hosting add-on has a similar feature. It creates a root category for each user and user can create child categories ( shown as folders in UI ) under it.
@inks, Sorry about that. Please try now. It should work this time.
@kabitik, You can generate your license key from order details page. Please check this link https://www.wpdownloadmanager.com/doc/where-is-my-license-key/
Please update the Download Manager too. You are using an old version there. Download the latest version here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
Hi,
Looks like you are hosting on Siteground. Please add the following rule in your .htaccess file to fix the saving issue,
<IfModule mod_security.c>
SecFilterRemove 001868
</IfModule>
Thanks.
All WPDM cookies are temporary means cookies are erased after closing the browser. WPDM does not store cookies for a fixed period of time.
Sorry, my bad. Updated the code, should work this time.
function wpdm_email_template_tags($tags){
global $current_user;
$tags["[#username#]"] = array( 'value' ► $current_user->user_login, 'desc' ► 'Username' );
return $tags;
}
add_filter('wpdm_email_template_tags','wpdm_email_template_tags');
Hi, Unlocked the key from the test site. Please try now. Thanks.