Hi,
You are using a very old version of Download Manager Pro. Could you please install the latest version? The issue may be related to it. You can download the latest version here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
Let me know the status after installing the latest version of WPDM. Also, allow plugin editor access to the temporary user.
Please reply to the forum topic, not in email.
Thanks.
Looks like you have changed the table header color. The following code should work too.
#wpdm-all-packages table thead tr th { background: #2D2D2D !important; }
Hi Lydia,
You can control button colors from the Downloads > Settings > User Interface Tab. The code above was meant for an older version.
Thanks.
Hi,
How do you want to use these with Download Manager? You can copy the package URL and shorten it with any of these services. Or do you want another procedure?
Thanks.
Hi,
Use a template with [file_list]
or [file_list_extended]
template tag to show all attached files with the download button. You can clone the template you are using now and add the tag there.
Let me know if you have any further queries.
Thanks.
You are using the “Call to Action 3” link template there. You have to modify the link template to remove the link from the title.
1 ) Clone “Call to Action 3” from Downloads > Templates > Link Template page.
2 ) The replace <a style="font-weight: 700" href="[page_url]">[title]</a>
with just [title]
and save the custom link template.
3 ) Copy the template id from Link Templates page to use it in your shortcode.
Please send temporary wp-admin login info in private reply to check the issue.
You are checking the profile page. The profile page lists the packages created by the user. You have to create a page with the shortcode I sent above.
You have to use the png version of icons to support IE 11
1 ) Make a copy of /download-manager/tpls/wpdm-all-downloads.php
2 ) Find $ext = $ext.".svg";
and replace it with $ext = $ext.".png";
in this new template.
3 ) Place it in /active-theme/download-manager/wpdm-all-downloads.php
Now this new template with png icons will override the default one.
Please send temporary wp-admin login info in private reply to check the issue.
– Thanks for reporting the issue. Noted for the next release.
– For tags use an array of slugs and for categories use an array of ids.
https://www.evernote.com/l/AUeQ2VwPMmxKIL3A35SYGaZ_Hq5yZ9dXwAYB/image.png
You have to modify the plugin code to replace the original button. Please check the following screenshot, It points to the location of the original button in wpdm-file-cart.php
file.
https://www.evernote.com/l/AUfC-KMsMplKWIpsyL0Yt1HPfWG3AiCaH2AB/image.png
Link and Page templates use [thumb_WxH]
template tag to display featured image ( post thumbnail ). Here W
refers to the image width and H
refers to the image height. An example of this tag is [thumb_500x250]
which will display the featured image at 500x250
dimension. You can set any height and width when using this tag [thumb_WxH]
, so we are creating a copy of the featured image with variable dimensions. That’s why we are calling these “dynamically sized featured images”.
Your “Hybrid Composer” plugin is creating this issue with package settings tabs. Tabs are working as expected when this plugin is deactivated.
Btw, You are using an older version of Download Manager Pro. Please install the latest version to get the latest features and improved performance. You can download it here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
1 ) Slider resizes thumbnails to 100×400 and carousel to 300×200 size. WPDM will do the resizing task to fit the expected dimension.
2 ) Featured images are used in many places like link template, page template using [thumb_WxH]
tag. Based on the requested thumbnail size WPDM resizes the featured image. Are you referring to these dynamic images as auto-generated thumbnail?
3 ) These 2 packages don’t have any featured image. That’s why in the carousel there is nothing for these 2 packages.
Looks like the issue is related to your excel settings or missing font in windows. I have tested the stats CSV in mac preview and in another mac app. Both displayed the texts properly.
https://www.evernote.com/l/AUcV6_TkIYlHRJXfCKLtRgbywMsWU8umSV0B/image.png
Hi,
This is actually a brilliant suggestion ?. We will implement this option as soon as possible. This will help users to understand various use cases of Download Manager Pro.
Thanks.
The OSM plugin is adding some CSS in .tab-content
class but didn’t add any unique prefix. So, it is messing up WPDM CSS as it uses the same class for the attach file area. They could add the CSS with their own class like this .osm-plugin .tab-content
to avoid interfering with third party elements.
https://www.evernote.com/l/AUfj-JR5oW9IgrpyjagVM2a0fyXemGYMylsB/image.png
Please use another link template. You can try the link-template-bsthumnail
Use template
parameter in your package shortcode to define the link template.
example, [wpdm_package id=53 template="link-template-bsthumnail"]
Currently, Dropbox add-on doesn’t support restricted packages when attaching a folder. Allow access option has to be “All Visitors” in case of Folder attachment. Check this demo package https://ferraricontabil.com.br/downloads/dropbox-test/
Please send temporary wp-admin login info in private reply to check the issue.
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.
No, your setting and data won’t be affected by the update.
You can add redirect parameter with login shortcode like the following example.
[wpdm_login_form redirect="https://ferraricontabil.com.br/meus-downloads/"]
One of your plugins or the active theme is injecting irregular <p>
tags in login shortcode content which is breaking the JS http://prntscr.com/pibgak The login issue is coming from there. You can try deactivating other plugins temporarily to check where it is coming from. Let me know the update.
Thanks.
Add the following CSS to Appearance > Customize > Additional CSS. Adjust the color code if you want differernt color.
#wpdm-all-packages tbody { color: #fff; }