Hi Mike,
Sorry for the delays on this ticket.
I don’t have the Mizil demo data. But you can import Attire ( https://www.wpdownloadmanager.com/download/attire-allinone-wordpress-theme/ ) demo data. That should work too.
You can delete the WPDM – File Manager add-on as we will deprecate it soon. All of its features will be implemented in Asset Manager as core WPDM features. Asset Manager already supports all admin features of WPDM – File Manager. And frontend features will be added gradually.
Could you please check your error log to find any info about WPDM – Advanced CSV Importer? Please share the log file if you can find any useful info.
Thanks.
I thought you were referring to the ‘Trash’ link in All Files page. I see now, you are talking about the font awesome trash icon in Attach File meta box. Multiple instances of Font Awesome CSS on your admin area are coming from different plugins which created the conflict. It is not possible to resolve this without code customization.
Anyway, the file is actually removed automatically when you add another file hence the icons doesn’t have much importance. It is better to keep it as is rather than customizing code because changes will be lost during the update.
We will add the fix on our side too before the next release.
I have updated the date format in the custom code to Y-m-d
It seems that did the trick.
You can use wpdm_packages_query_params
filter to modify the search query of [wpdm_search_result]
shortcode. Add the following code to your theme’s functions.php
to limit the search to a single category. Replace my-category
in the code with you actual category slug.
function wpdm_packages_query_params($params){ $params['tax_query'] = array( array ( 'taxonomy' ► 'wpdmcategory', 'field' ► 'slug', 'terms' ► 'my-category', ) ); return $params; } add_filter('wpdm_packages_query_params','wpdm_packages_query_params');
Please check this screenshot http://prntscr.com/paqju0
Looks like email support already responded to your query. Anyway, let me know if having any issue. Thanks.
In the first paragraph I meant, you can use the category shortcode with pagination disabled.
[wpdm_category id="agendas," cols="1" toolbar=1 item_per_page=3 paging=0 template="link-template-panel.php" order_by="publish_date" order="desc"]
The second option is modifying the Extended Shortcodes add-on as I have suggested above in the second paragraph.
Hi,
Provided user doesn’t have the administrator role. So, couldn’t install the latest version.
Please install the latest version to fix the issue. 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.
To fix the auto-update issue, logout and then login again from your Downloads > Settings > Updates tab.
Thanks.
Hi,
You can password lock a package to restrict public downloads. Only users with the password will be able to download a password locked package.
If you want to assign a download only to a specific user then use the Advanced Access Control add-on. Please check details here https://www.wpdownloadmanager.com/download/advanced-access-control/
Best regards.
Please send temporary wp-admin login info in private reply or find the following line in /download-manager/tpls/wpdm-all-downloads.php
file,
$dor = array('publish_date' ► strtotime(get_the_date()), 'create_date' ► strtotime(get_the_date()), 'update_date' ► strtotime(get_the_modified_date('', get_the_ID())));
and replace it with this code,
$dor = array( 'publish_date' ► strtotime( get_the_date('Y-m-d') ), 'create_date' ► strtotime( get_the_date('Y-m-d') ), 'update_date' ► strtotime( get_the_modified_date('Y-m-d') ) );
You need Pro if you want to do this with single shortcode and single package.
1 ) Create a package and add both files. Pro supports multi-file package.
2 ) Create a custom link/page template to get your intended UI.
By default, WPDM uses a table or Box like UI to display multiple files with the same “Download” button label ( http://prntscr.com/panswf )
But we have to create 2 custom template tags in your case to use different button labels for video and quiz links. It is possible using wdm_before_fetch_template
hook.
Gravity Forms work fine with WDPM. This may be related to something else. Please send temporary wp-admin login info in private reply so I can take a closer look.
It actually could happen to anyone. Sometimes we do miss thing in plain sight 🙂
Which shortcode are you using there?
It assigns first image in [file_thumb_0]
, second image in [file_thumb_1]
, third image in [file_thumb_2]
and so on. If no images are found these tags won’t output anything.
So, Download works with the old version but not with the latest? Could you please send temporary wp-admin login info in private reply? I have to check your setup to find out what’s the reason behind this behavior.
Hi,
Amazon S3 Manager is still in beta. Please use the S3 meta box in edit package screen to upload a file or create a bucket. It doesn’t support create dir feature yet. But it is noted for implementation in next release.
Thanks.
Hi,
You can use a custom template for /wpdm-archive=page/tpls/archive-page-extended.php
file to customize the view shown in your screenshot.
Copy this template file and place it in your /active-theme/download-manager/
directory. Then edit this new template to achieve your desired style. Now, this new custom template will be used instead of the default one.
Thanks.
You can use the category shortcode with paging=0
parameter. For each category use one category shortcode. Shortcode doc link https://www.wpdownloadmanager.com/doc/short-codes/wpdm_category-query-all-downloads-from-one-or-more-categories/
Another option is using the tree shortcode you tried but that requires some code customization to limit the number of packages. You have to replace 'posts_per_page' ► 9999
with 'posts_per_page' ► 3
in /plugins/wpdm-extended-shortcodes/wpdm-extended-shortcodes.php
file.
I tested my credentials on your site. It loads all folders of my DB https://prnt.sc/paibru
Just to confirm, Do you see more than 4 folders when you visit the Files Tab in Dropbox?
Just add paging=0
in your shortcode to disable pagination.