Forum Replies Created
Hi William,
I think now, going straight to the PDF instead of having the Download button is also working as you have set Open in browser from the WPDM basic settings. please let me know
Thank you and regards
Hello @ccbfdrc,
If possible, Can you please share the CSV file for checking in a close look from my testing site? I hope you have understood
Thank you and regards
Hello @ccbfdrc,
Can you please share the CSV file in a private reply for checking the issue?
Thank you and regards
Hello Tracy,
I have checked your issue. And sorry for the inconvenience. The 100% discount for any role with premium packages and download is working fine from my testing side. I think there may have a conflict on your side. can you please enable/disable other plugins for checking, you may also switch theme to another for checking, please let me know then
thank and regards
Hello William,
Hope you are well. Can you please, give your temporary wp-admin login details in a private reply for checking the issue.
Thank you and regards
Hello Tracy,
Can you please share one or two packages link here too, there are many packages on your site.
Thanks for your appreciation
Hello Chris,
I didn’t add other widgets or work with them. I have just worked with one widget, WPDM Packages by Category as you can see in my attach image. please let me know, how can i help you more
Thank youand reagrds
Hello Chris,
I have rolled back as it was. please check
Thank you
Hello mrcbt,
Hope you are well. As per your requirements, please edit the following file,
wp-content\plugins\download-manager\src\AuthorDashboard\views\author-dashboard\list-packages-table.php file line number 82
replace href='<?php echo get_permalink($post->ID); ?>' href content to
<?php echo WPDM()->package->getDownloadURL($post->ID); ?>
and for making backup your file, please follow this doc,
I hope it will help you, please let me know then
Thank you and regards
Glad to hear that, your problem has been resolved
Thank you and regards
Hello mrcbt,
Hope you are well. Have you set up for frontend uploader pages? Are you missing update and delete options for the frontend uploader? please check my attached image
https://demo.wpdownloadmanager.com/wpdmpro/frontend-uploader/?adb_page=manage-packs
please let me know
Thank you and regards
Hello Tracy,
Hope you are well. And sorry for the inconvenience. Can you please share the related package URLs?. if possible, Can you please, give your temporary wp-admin login details in a private reply for checking the issue.
Thank you and regards
Hello Chris,
Hope you are well. And sorry for the inconvenience. WPDM Packages by Category widget is working fine from my side. if possible, Can you please, give your temporary wp-admin login details in a private reply for checking the issue.
Thank you and regards
Hello @admin-itrjuk-org,
I have checked download packages lock options for single file download. I think you are talking about this search field placeholder value issue as I image attached,
please let me know if I get you
Thank you and regards
Glad to hear that your issue has been resolved. If you get some free moments, please give us a 5* here and add your valuable review about our plugin, it will inspire us a lot.
Thank you and Regards
Hi onlineatwork,
you can use like shortcode use too, please check here shortcode code,
Thank you
Hello Ryan,
I have replied to your topic in your PRO forum ticket, please check
Thank you
Hello Ryan,
Have you followed CSV file structure from here,
https://www.wpdownloadmanager.com/wp-content/uploads/2020/06/sample.csv
if possible, please share your CSV file in a private reply for checking the issue
Thank you and regards
Hello JUNTO LLC,
I have referred your topic to our team. I hope soon you shall be updated
Thank you and regards
Hello David,
Our developer should see the issue and update it thereby. Meanwhile please continue with recommended PHP version 7.4. I hope you have understood
Thank you and regards
Hi Trisquelmedia SL,
For total downloads of the sum of all packages, you can use this the below code,
<?php _e( "Total Downloads" , "download-manager" ); ?>
<?php echo $wpdb->get_var("select sum(meta_value) from {$wpdb->prefix}postmeta where meta_key='__wpdm_download_count'"); ?>
And for a certain user, please use this code snippet in your theme functions.php
add_shortcode('UserTotal', 'TotalUserDownload');
function TotalUserDownload() {
global $wpdb, $current_user;
$var = "Total Downloads: ";
$var .= number_format($wpdb->get_var("select count(*) from {$wpdb->prefix}ahm_download_stats where uid = '{$current_user->ID}'"),0,'.',',');
return $var;
}
Use the shortcode [UserTotal]
I hope it will work fine for you now
Thank you and regards
Hello onlineatwork,
I have checked your issue. It is not getting the version metadata because the id for get_package_data() is not package id, it is the related post id. I hope you have understood. For getting the related package version you have to capture the package id too, for running the code properly
Thank you and regards
Hello onlineatwork,
Can you please share the full page code for checking the issue in a close look?
Thank you and regards
Hello Trisquelmedia SL,
You can try this code,
function shortcode_download($attributes) {
$package_id = intval( $attributes['id'] );
$download_count = get_package_data($package_id,'download_count');
return $download_count;
}
add_shortcode('DownloadCounter', 'shortcode_download');
So, the shortcode will be [DownloadCounter id='packageid' ]
please check and let me know
Thank you and regards


