That is the most basic feature of Download Manager. I am not sure how you missed that! There is a shortcode column on the all packages page. You can copy the shortcode from there or use Advanced TinyMCE add-on to insert the package shortcode using classic editor. You can also use the WPDM Gutenberg Blockd add-on to insert a package anywhere you want.
[wpdm_package id='2145']
https://drive.google.com/uc?id=1zFkQKpV-q0vqEiL3SJJqUg0rjPwidTU3
Hi Mike,
If your free PDF packages require user login then default doc preview won’t work. Default doc preview uses google library to display the PDF but the library can’t access the file when it is restricted.
In this case, the solution is PDF Viewer add-on.
Thanks.
Hi, Canceled the auto-renewal of your order. – Best regards.
It requires custom coding. Maybe we can modify the post_type of all posts to transfer them as Download Manager packages. But a Download Manager package has lots of custom meta like attached files, version, access settings etc. which are not available in a normal WordPress post. Wouldn’t that be a compatibility issue for you?
Please add the following CSS to your Customize > Additional CSS option to hide data table search, pagination etc.
.w3eden .dataTables_length, .w3eden .dataTables_filter, .w3eden .dataTables_paginate, .w3eden .dataTables_info {
display: none;
}
Bulk Import function imports 10 packages in each cycle and until all rows are imported it keeps importing. But it takes time so keep it running until 100% import is done.
Please send temporary wp-admin login info in private reply if import stops in your case after 10 import. Send me your CSV file sample too.
Please send temporary wp-admin login info in private reply to check the issue. Maybe you are editing the wrong template. Please read the template title and ID to know which one is linked to what feature.
Email support is checking the issue. Closing this ticket.
Download Manager page and link templates use [create_date]
template tag to display the package date. Now we can extend this tag to display the time along with the date. Just add the following code to your theme’s functions.php file.
function wpdm_package_date_time($vars){ $vars['create_date'] = get_the_date('F j, Y g:i A', $vars['ID']); $vars['update_date'] = get_post_modified_time('F j, Y g:i A', $vars['ID']); return $vars; } add_filter('wdm_before_fetch_template', 'wpdm_package_date_time');
The solution is pretty lengthy and out of the scope of this ticket. We provide custom upgrade service in cases like this. If you are interested in custom upgrade service please send an email to customize@wpdownloadmanager.com
to get a quote.
If you want a simple solution then use the save_post
hook to send an email notification of package update.
Where did you send it? You can send a private reply from below, just check the “Set as private reply” before submit.
Hi,
Looks like the issue occurs only when the user is downloading as a guest. I have tested several downloads after logging in. All download attempts were successful.
But I encountered issues with some files when tried to download as a guest. And this can be related to the WPENgine caching. Please contact the WP Engine support an ask them to exclude URLs like the following one to exclude from the cache. That should fix the issue for non-logged-in users.
https://podular.co.nz/download/the-stack/?wpdmdl=198&_wpdmkey=5dd83d013a7f1
Thanks.
[wpdm_package_form]
shortcode uses /download-manager/tpls/new-package-form.php
template. To customize this template, make a copy and place it in /active-theme/download-manager/new-package-form.php
location. Then add your customization in this new template.
I have removed the FTP info. When sending login info please create your own ticket to keep it private. Anyway, please follow the instructions above to customize post form.
Please activate the Bootstrap 3 from Settings > User Interface option. Bootstrap 4 version doesnt have the Asset Manager support yet.
1 ) I have removed the limit. Now all lists are available for selection in the dropdown.
2 ) The add-on doesn’t send the quick form to MailChimp. You can access and export those data from Downloads > Subscribers page.
3 ) Mailchimp add-on automatically extracts first and lat name from the input and insert them in corresponding MailChimp user field.
You can use a custom template for Advanced Access Control “All Downloads Table” to change the default sorting.
The Advanced Acces Control downloads table is using /wpdm-custom-access-level/wpdm-my-downloads.php
template. To customize this template, make a copy and place it in /active-theme/download-manager/wpdm-my-downloads.php
location. Then add your customization in this new template. Now, this new template will override the default one. As the file is outside the plugin directory, your customizations won’t be lost during the plugin update.
I have made the template file for you. You can download it here https://www.dropbox.com/s/af8zyrfn323ba66/wpdm-my-downloads.php?dl=1 Just put it in /active-theme/download-manager/wpdm-my-downloads.php
location. This version of table sorts downloads by date.
1 ) Yes, you can modify the email subject and content by customizing email template email-lock
from Downloads > Templates > Email templates Tab.
2 ) The email lock form is using the /download-manager/tpls/lock-options/email-lock-form.php
template. To customize this template, make a copy and place it in /active-theme/download-manager/lock-options/email-lock-form.php
location. Then add your customization in this new template to redirect to a thank you page.
Now, this new template will override the default one. As the file is outside the plugin directory, your customizations won’t be lost during the plugin update.
You just have to add the following line in the marked location http://prntscr.com/q07tv4
location.href = "https://www.impresadievolvere.it/";
Adjust the URL to match your redirect destination.
You can use the wdm_before_fetch_template
filter hook to introduce a new audio player tag. That will require coding knowledge. Please check the related docs here https://www.wpdownloadmanager.com/doc/filter-reference/wdm_before_fetch_template/
In tag and category archive those thumbnails are coming from your theme template file. You can edit theme’s archive templates or use CSS to hide these thumbnails.
I have updated the code. I think this is final thing you are looking for.
It is definitely coming from the WP Mail SMTP side. Because WPDM just using default WordPress function to send emails. The rest are being handled by the SMTP plugin. Also, there has been no change in how we send mails from email lock.
I have updated the code.
1 ) Now both exclude and include tag feature will work. The difference is, use tag slug when including tags, use tag id when excluding tags.
2 ) This is for category shortcode only.
3 ) You have to use 2 separate category shortcodes in that page. Because there is only one tags
parameter in category shortcode.
The email lock modal is using /download-manager/tpls/lock-options/email-lock-form.php
template. To customize this template, make a copy and place it in /active-theme/download-manager/lock-options/email-lock-form.php
location. Then add your customization in this new template.
Now, this new template will override the default one. As the file is outside the plugin directory, your customizations won’t be lost during plugin update.