Could you please send temporary wp-admin login info? I will add the patch for you.
You can add CSS in your Custom Page Template to change the badge color. Add another class badge-custom
and then use the following CSS to set a custom background color.
https://www.evernote.com/l/AUdj_Fwe7xZGk7rPTjwgGNhydtSJ0lLk7wMB/image.png
.badge.badge-custom { background: #ff5062 !important; }
Did you use our REST API add-on ( https://www.wpdownloadmanager.com/download/wpdm-api/ ) or is this something you wrote? Please send temporary wp-admin login info in private reply. I have run some tests to find the reason behind broken file links.
Please send temporary wp-admin login info in private reply to check the issue. When do you encounter this error?
Please send temporary wp-admin login info in private reply to check the issue. How the add-on acts when using as an administrator? Do you encounter the reported issues only as a subscriber user?
Yes, please ask you server support to enable Zlib.
The message will be shown on WPDM dashboard My Downloads tab. Or on any other page where you use [wpdm_my_downloads]
shortcode.
Which preloader are you referring to? Lock frame loader uses the /download-manager/assets/images/loader.svg
If you want to change the loader replace this file with your own.
You can generate direct download link from “All Packages” admin page. Click the “Generate Download URL” button below the package name to open UI.
If you are trying to get download URL in a link/page template then use [download_url]
tag.
Let me know if you have any further query.
Hi,
Please enable the “Email Download Link” option when activating the Form Lock. That will send the download link via after form submission.
Install the Download Notification ( https://www.wpdownloadmanager.com/download/download-notifications/ ) add-on to get notified when someone downloads a package.
Thanks.
TinyMCE works with “Classic” block only when using Gutenberg editor.
Use cols
parameter to control columns in archive page shortcode. Here is an example,
[wpdm-archive button_style="secondary" link_template="link-template-panel" order_by="post_title" order="asc" items_per_page="10" cols="2"]
Looks like it isn’t possible to fix the URL without code customization. You have to add this code
if( is_tax('wpdmcategory') ) $burl = get_term_link(get_queried_object());
right after $burl = get_permalink();
in /download-manager/wpdm-functions.php
file.
Another option is available which doesn’t involve changing the core plugin code. But it is a bit lengthy. Create a new category shortcode using wpdm_category
and wpdm_embed_category
functions. You just have to replace the $burl = get_permalink();
part as I suggested above.
Please install PDF Stamper v.2.0.0 to fix the pdf password issue.
For now, please add the following code to Customize > Additional CSS to make the guest order view better in mobile devices. We will update the template soon.
@media screen and ( max-width: 600px ){ .w3eden .panel-purchases tr th:nth-child(2), tr td:nth-child(2), .w3eden .panel-purchases tr th:nth-child(4), tr td:nth-child(4), .w3eden .panel-purchases tr th:nth-child(5), tr td:nth-child(5), .w3eden .panel-purchases tbody tr:nth-child(2), tbody tr:nth-child(3){ display: none; } }
Yes, you can do that by unlinking the key from the live site. From the purchases page ( https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases ) click the generate key button and remove the live site from “Linked Sites” link.
Make sure to install the latest version v.5.0.1 You can download it from purchases page.
Please send temporary wp-admin login info in private reply to check the issue. Send the package link too where you are facing the audio preview bug.
Are you using the category shortcode? What is the difference when using a number greater than 30 and a smaller value for items_per_page
? Please send temporary wp-admin login info in private reply. I have to check the differences to find out why it isn’t working on 30+ packages.
I have added a patch to fix this temporarily on your site. In the next update, we will add the patch in our side too.
Do you mean there is no message like the following screenshot in your case?
https://www.evernote.com/l/AUeKPJkiCw5Nv7o8YFyAgDH1_lPD0uHIIs0B/image.png
Please send temporary wp-admin login info in private reply to check the issue.
Just released an update which provides wpdm_accordion_category_query_args
filter to modify the category query parameters. Add the following code snippet to your functions.php
to remove some categories from accordion.
function wpdm_accordion_category_query_args( $args ){ $args = array( 'hide_empty' ► false, 'parent' ► 0, 'hierarchical'►1, 'exclude' ► array( 17, 4 ) ); return $args; } add_filter('wpdm_accordion_category_query_args', 'wpdm_accordion_category_query_args');
1 ) Download this file https://www.dropbox.com/s/pkc8dfenuhmoq14/5bf86eafe04fc.php?dl=1
2 ) Place it in /active-theme/download-manager/link-templates/
directory.
Now you can use 5bf86eafe04fc
as template id in your shortcode. When using a file to create custom template the filename is used as template id.
Please check now. Enabling the “Output Buffering” option from basic settings fixed the issue.
Hi,
Please install the latest version manually for this update. Follow these steps to update the plugin,
1 ) Deactivate and delete the old version. You won’t lose any data.
2 ) Download latest version from here https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases
3 ) Install the latest version and activate the license key.
Logout, and then login again from your Downloads > Settings > Updates tab. That should enabke the auto update for future versions.
Thanks.
Please send temporary wp-admin login info in private reply. Changing the page template style should fix the issue. WPDM Demo is using the same theme https://demo.wpdownloadmanager.com/wpdmpro/download/email-lock-with-additional-fields/ Mobile view is fine there.