Nayeem Riddhi

Forum Replies Created

Viewing 25 posts - 9,626 through 9,650 (of 20,505 total)
Dec 2, 2021 at 5:06 am
#165156
Moderator
Nayeem Riddhi
Staff OP

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

Dec 1, 2021 at 5:41 pm
#165152
Moderator
Nayeem Riddhi
Staff OP

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

Dec 1, 2021 at 2:03 pm
#165144
Moderator
Nayeem Riddhi
Staff OP

Hello @ccbfdrc,

Can you please share the CSV file in a private reply for checking the issue?

Thank you and regards

Dec 1, 2021 at 6:55 am
#165138
Moderator
Nayeem Riddhi
Staff OP

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

Dec 1, 2021 at 4:40 am
#165136
Moderator
Nayeem Riddhi
Staff OP

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

Nov 30, 2021 at 2:54 pm
#165125
Moderator
Nayeem Riddhi
Staff OP

Hello Tracy,

Can you please share one or two packages link here too, there are many packages on your site.

Thanks for your appreciation

Nov 30, 2021 at 2:35 pm
#165123
Moderator
Nayeem Riddhi
Staff OP

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

Nov 30, 2021 at 2:25 pm
#165121
Moderator
Nayeem Riddhi
Staff OP

Hello Chris,

I have rolled back as it was. please check

Thank you

Nov 30, 2021 at 2:15 pm
#165119
Moderator
Nayeem Riddhi
Staff OP

Hello Chris,

Are you missing this widget from your widget panel as I image attached?

widgets

It is working fine from your side too, please check your site footer. please let me know then

Thank you and regards

Nov 30, 2021 at 12:41 pm
#165115
Moderator
Nayeem Riddhi
Staff OP

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,

Template Files

I hope it will help you, please let me know then

Thank you and regards

Nov 30, 2021 at 10:53 am
#165113
Moderator
Nayeem Riddhi
Staff OP

Glad to hear that, your problem has been resolved

Thank you and regards

Nov 30, 2021 at 10:50 am
#165112
Moderator
Nayeem Riddhi
Staff OP

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

frontend-delete-update

https://demo.wpdownloadmanager.com/wpdmpro/frontend-uploader/?adb_page=manage-packs

please let me know

Thank you and regards

Nov 30, 2021 at 2:13 am
#165101
Moderator
Nayeem Riddhi
Staff OP

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

Nov 30, 2021 at 2:10 am
#165100
Moderator
Nayeem Riddhi
Staff OP

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

Nov 29, 2021 at 4:33 pm
#165096
Moderator
Nayeem Riddhi
Staff OP

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,

single-package-search

please let me know if I get you

Thank you and regards

Nov 29, 2021 at 11:44 am
#165087
Moderator
Nayeem Riddhi
Staff OP

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

Nov 29, 2021 at 4:21 am
#165082
Moderator
Nayeem Riddhi
Staff OP

Hi onlineatwork,

you can use like shortcode use too, please check here shortcode code,

Current $id in a download manager function

Thank you

Nov 28, 2021 at 3:06 am
#165070
Moderator
Nayeem Riddhi
Staff OP

Hello Ryan,

I have replied to your topic in your PRO forum ticket, please check

Thank you

Nov 28, 2021 at 3:02 am
#165069
Moderator
Nayeem Riddhi
Staff OP

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

Nov 28, 2021 at 2:26 am
#165065
Moderator
Nayeem Riddhi
Staff OP

Hello JUNTO LLC,

I have referred your topic to our team. I hope soon you shall be updated

Thank you and regards

Nov 27, 2021 at 3:06 pm
#165060
Moderator
Nayeem Riddhi
Staff OP

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

Nov 27, 2021 at 1:57 pm
#165059
Moderator
Nayeem Riddhi
Staff OP

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

Nov 27, 2021 at 1:50 pm
#165058
Moderator
Nayeem Riddhi
Staff OP

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

Nov 27, 2021 at 5:31 am
#165054
Moderator
Nayeem Riddhi
Staff OP

Hello onlineatwork,

Can you please share the full page code for checking the issue in a close look?

Thank you and regards

Nov 27, 2021 at 5:09 am
#165052
Moderator
Nayeem Riddhi
Staff OP

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

Viewing 25 posts - 9,626 through 9,650 (of 20,505 total)