Forum Replies Created
Use a page/link template with [file_list] template tag. There are lots of built-in template with this tag. For example, you can use the “Single Column, Image Top” page template.
Or if you want you can build your own custom template from Downloads Templates page.
Hi,
In the latest version of the archive page add-on, we moved the category button from top to the left. So, it is not possible to use the old view in the current version without template customization.
But it seems many users including you prefer the old style. So, we are releasing a new version soon after adding the old category button style.
I did reply to your last ticket about this issue here,
Thanks.
There is JS error in console. Please send temporary admin login info in private reply. The issue may be related to the error. Although the publish date works fine in my setup. Did you customize the all downloads table template? There is no built-in support for “download_link_blank”.
Please send me the URL and point out which icon you are referring to. If it is the package icon generated by [icon] tag then the following CSS should control the size,
.w3eden .wpdm_icon { max-width: 48px; }
The current version of Download Manager Pro is 4.9.2. Why are you using v.4.7? Please install the latest version or send admin login info in private reply if you need assistance with the installation process.
Hi,
Unlocked the key from staging site.
Thanks.
The registration form uses invisible captcha and it is working. The verifyemail feature is working too. I got the email but it went to the spam folder. So make sure to check your spam folder for the confirmation email.
Installed the latest version of Advanced Custom Fields add-on.
Hi,
No option in Download Manager yet to keep registration pending.
You can use a role editor plugin and create a custom dummy role without any special permission. Then set “New User Default Role” ( from general settings page ) role to that custom role. Then after review set the proper role.
Thanks.
Add the following code to your active theme’s functions.php file to modify the email subject,
add_filter('user_email_data', 'liveform_modify_email_subject');
function liveform_modify_email_subject( $user_email_data, $form_id, $email_template_data ){
$user_email_data['subject'] = "Thanks for contacting with us";
return $user_email_data;
}
Please send temporary wp-admin login info in private reply to check the issue.
The suggested code works on Sitegorund hosting only. Please send temporary admin login info to check the issue on your site. I will also fix the “Permission Denied Message for Packages” issue ( we already fixed it on our side for the next update ).
Looks like your email client is blocking/removing styles. Are you getting this email from a locked package? Send me the package URL so I can test this using my email.
Please send your license key in private reply.
Here is the change of Download Manager Pro https://www.wpdownloadmanager.com/wordpress-download-manager-change-log/
We are working to fix the file renaming issue when chunk upload is active. Will be available with next release.
Could you please send FTP login info? I have to run some tests to find why it isn’t showing packages. The same scenario works fine in my setup.
Make a custom template for /download-manager/tpls/lock-options/email-lock-form.php and add the following code after line 78. That should close the modal after submitting the email.
setTimeout(function () {
window.parent.hideLockFrame();
}, 1000);
Template file documentation https://www.wpdownloadmanager.com/doc/template-files/ Basically, copy the file and place it in /active-theme/download-manager/lock-options/email-lock-form.php. Then make the necessary changes.
Did you try the [download_link_extended] tag? That should work on IE too. I see you are still using the popup.
Please send login info in private reply. I will add some custom CSS to fix the pagination styling. And if you want I can test the latest versions there and fix any issue related to your custom link template styling.
Looks like you have added the red line under the title. I see that you have marked this topic as resolved. However, Please let me know if you need help with the profile page. – Thanks.
Sorry for the delayed reply.
I have added custom CSS in Appearance Customize Additional CSS option to control the button color. That should fix the issue. Customize the color codes there If you want.
WPDM uses CSS variable to control the color dynamically, I think your IE is not supporting this latest features.
Please let me know if the custom CSS doesn’t fix it.
Thanks.