Forum Replies Created
Please send temporary wp-admin login info in private reply to check the issue.
Replace this 'exclude_from_search' ► (bool)get_option('__wpdm_exclude_from_search', false), using the following code,
'exclude_from_search' ► (bool)get_option('__wpdm_exclude_from_search', true),
in /download-manager/download-manager.php file line 180. That should exclude downloads from the search result.
Please check now. Add the following code on line 801 in /download-manager/wpdm-functions.php file.
unset($params['meta_query']);
There are no major changes in the core functionality of how packages are handled so the issue may be related to a specific package. Try increasing the pacakge number from 90 to 100 gradually to find at which point it breaks.
Or just send login info so I can check this issue.
I need admin access to make changes. However, We are releasing a new version soon. So, please wait until it is available, will be released within next week.
The email shown in your screenshot is sent by the Form Plugin which just sends a predefined “Thank You Message.”
But if you use Form Lock add-on and apply the Form Lock as shown in my screenshot you will get the email shown in my second screenshot. You can customize the email template and email content from Downloads Templates Email Templates page.
Form Lock uses the email-lock template, so edit that email template to customize content. There are some template variables listed on the right sidebar of editor. Those are used to add dynamic values ( e.g. download link, package name etc ) as email content.
Please send temporary wp-admin login info in private reply to check the issue.
Please clear your browser cache. Settings page looks fine from my side,
https://www.evernote.com/l/AUcVDwj37N9P6Iojupw_xSMUEg39hmB7ydQB/image.png
Please try changing the page template from package settings. Also, check your pacakge access settings. Maybe the current user doesn’t have access to the package. However, nothing works send temporary admin login info in private reply.
You have to change the link template in your archive page shortcode ( your first screenshot ). Please send login info in private reply if you need help with that.
Looks like the issue is similar to the one reported here https://www.wpdownloadmanager.com/support/topic/download-link-only-refresh-page/
However, please send temporary wp-admin login info in private reply to check the issue. Or you can try to apply the patch suggested there.
Marking this as resolved. However, let us know if there is any other issue.
Thanks!
I have made some minor changes in your shortcode. Remove the tags and download_link_blank because these aren’t valid parameters. Also changed a left double quote to double quote.
https://hans-josef-fell.de/dokumente_tabelle
You are using an older version of Download Manager there. You should install the latest version to get the latest features.
Hi,
I have installed the Form Lock addon on your site. Using this add-on you can lock a package behind a form. Just enable the Form Lock and select the form when creating or editing the package. Please check the screenshot below.
https://www.evernote.com/l/AUfK_nc67SNO3KTvrpw1EnzF-Fsoot4AhNEB/image.png
After submitting the form you will get an email with download link. The email looks like the following screenshot.
https://www.evernote.com/l/AUelXA6ZXU1EZLWNyrDCiQ7B_xE6rMRcmIUB/image.png
The email template is customizable from Downloads Templates Email Templates page.
Let me know if you have any further query.
Thanks.
Hi!
Add the following code to your theme’s functions.php file. Replace the redirect_url with your download page URL. And set the login page from Settings Frontend Login Page. The redirect will trigger when the user uses the WPDM login page to login to the site.
add_action( 'template_redirect', 'wpdm_login_redirect' );
function wpdm_login_redirect(){
if( is_user_logged_in() && get_the_ID() == get_option('__wpdm_login_url') ):
wp_redirect( "redirect_url" );
exit();
endif;
}
Thanks.
Add this code in Appearance Customize Additional CSS option.
Installed the latest version of WPDM and Advanced Access Control add-on.
I meant to say, are you using locks in your package? How did you get this email from your site?
Please send temporary admin login info in private reply to check the issue.
Made a minor change in the custom template and added the following CSS in Customize Additional CSS. Now the template is showing the full image.
.wpdm-full-thumb img {
max-height: 200px;
width: auto;
}
Please send temporary admin login info in private reply to check the issue.
Please deactivate and delete the old version before uploading the latest one. You won’t lose any data.
Please download the add-on again from https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases We have updated it just now.
Looks like you have already added the patch suggested in another ticket. Purge the cache to generate the page again. After purging cache doc preview working here https://people.bucksfire.gov.uk/download/public-safety-administrator/
Hi,
It is not possible yet to set the “AND” relation between WPDM locks.
You can use Download Notification add-on https://www.wpdownloadmanager.com/download/download-notifications/ This add-on notifies the admin when someone downloads a package from their site.
Thanks.
You can customize this title from Downloads Settings Social Settings page. This title is saved as an option. So, if you want you can directly set the title in your language. In the case of multilanguage, your language plugin must have option translation feature to translate this.