Nayeem Riddhi

Forum Replies Created

Viewing 25 posts - 4,926 through 4,950 (of 20,423 total)
Dec 27, 2023 at 2:17 pm
#192188
Moderator
Nayeem Riddhi
Staff OP

Hello Omar Saber,

Hope you are well. And sorry for the inconvenience. Please let me know if you are using the WPDM plugins and add-ons latest version. please check and let me know

Thank you and regards

Dec 27, 2023 at 6:45 am
#192181
Moderator
Nayeem Riddhi
Staff OP

I think it is not related to WPDM. It can be an issue with your theme/Tab CSS too. Please check and let me know.

Thank you and regards

Dec 26, 2023 at 4:35 am
#192172
Moderator
Nayeem Riddhi
Staff OP

Hello Ali Merchant,

Hope you are well. By disabling auto-renew you will not be able to get updates on plugins and PRO support. However, for disabling auto-renew, please share your order id details, so that I can forward your issues.

Thank you and regards

Dec 26, 2023 at 3:54 am
#192171
Moderator
Nayeem Riddhi
Staff OP

Glad to hear that. However, if you need further help with anything else, then please don’t hesitate to open a new topic. If you get some free moments, can you please give us a 5* here https://wordpress.org/support/plugin/download-manager/reviews/?rate=5#new-post, It will inspire us a lot. Thanks in advance 🙂

Thanks for your appreciation and regards

Dec 25, 2023 at 9:16 am
#192164
Moderator
Nayeem Riddhi
Staff OP

Please check now. I have adjusted your page template from your child-theme directory. please check and let me know

Thank you and regards

Dec 25, 2023 at 5:47 am
#192162
Moderator
Nayeem Riddhi
Staff OP

Hello Jeremiah Castillo,

Hope you are well. Are you searching for these add-ons? please check the details here,

Pre-Paid Credits

WordPress Pro Membership


please check and let me know

Thank you and regards

Dec 25, 2023 at 5:43 am
#192161
Moderator
Nayeem Riddhi
Staff OP
This reply has been marked as private.
Dec 25, 2023 at 5:37 am
#192160
Moderator
Nayeem Riddhi
Staff OP

We have fixed the issue. Please download the WPDM plugin again from the WPDM user dashboard area here, https://www.wpdownloadmanager.com/user-dashboard/?udb_page=purchases, and update the plugin manually. We hope it will work properly then. please check and let us know

Thank you and regards

Dec 24, 2023 at 5:03 pm
#192156
Moderator
Nayeem Riddhi
Staff OP

Sorry for the inconvenience. We are checking the issue and already forwarded the issue to our team authority. thanks for your appreciation.

Thank you again and regards

Dec 24, 2023 at 4:07 pm
#192154
Moderator
Nayeem Riddhi
Staff OP

Hello KOHPMINISTRIES,

Hope you are well. And sorry for the inconvenience. Can you please let me know which WPDM version you are using now? if you are using an older version, please update your plugin version to the latest. please check and let me know.

Thank you and regards

Dec 24, 2023 at 10:39 am
#192148
Moderator
Nayeem Riddhi
Staff OP

It should work as expected, please configure and set your Cron properly. I hope it will work then. please check and let me know

Thank you and regards

Dec 24, 2023 at 8:00 am
#192145
Moderator
Nayeem Riddhi
Staff OP

please check now. I have created a page template called page-template-author in this wp-content\plugins\download-manager\src\Package\views\page-templates directory. Now for the author name with 'floopy', 'wpdm-support' will not show the uploaded by field. For Keeping a backup of the file for the next update, you can check this doc, https://www.wpdownloadmanager.com/doc/template-files. The page template name is Author. please check and let me know if it works for you.

Thank you and regards

Dec 24, 2023 at 6:39 am
#192142
Moderator
Nayeem Riddhi
Staff OP

If possible, please, give your temporary wp-admin login details in a private reply to check the issue.

Thank you and regards

Dec 24, 2023 at 5:41 am
#192140
Moderator
Nayeem Riddhi
Staff OP

Hello Anh Tuyet Ha,

Hope you are well. For collecting the cron URL you can navigate here, Downloads > Settings > Privacy > Cache & Stats > Cron URL as I image attached,

2023-12-24-113445

And for setup cron URL you can check this doc, https://www.wpdownloadmanager.com/mastering-cron-jobs-a-comprehensive-guide-to-creating-cron-jobs-with-cpanel-and-plesk-parallel/

Please check and let me know

Thank you and regards

Dec 24, 2023 at 5:28 am
#192139
Moderator
Nayeem Riddhi
Staff OP

Hello Omar Saber,

Hope you are well. For now, we have no discount for renewal. I hope you have understood.

Thank you and regards

Dec 23, 2023 at 8:07 am
#192130
Moderator
Nayeem Riddhi
Staff OP

Hello Sini,

Hope you are well. Can you please share with me where or you can also share the URL where you have added the translations? Please check and let me know

Thank you and regards

Dec 23, 2023 at 7:30 am
#192129
Moderator
Nayeem Riddhi
Staff OP

Hello Amit,

Hope you are well. To restrict certain files/packages with roles, you can check your File/Package > Package Settings > Allow Access option. For more details, you can check the doc here, https://www.wpdownloadmanager.com/doc/add-new-package/package-settings/allow-access-access-control-option/. And setting login required message You can check Downloads > Settings > Basic > Login Required Message section.
Please check and let me know

Thank you and regards

Dec 23, 2023 at 7:24 am
#192128
Moderator
Nayeem Riddhi
Staff OP

Hello Cathexis Technologies,

Hope you are well. if possible, can you please, give your temporary wp-admin login details in a private reply to check/adjust the issue?

Thank you and regards

Dec 23, 2023 at 6:40 am
#192124
Moderator
Nayeem Riddhi
Staff OP

Hello CIALGAR,

Hope you are well. Thanks for writing to us. You can try this code snippet in your page template to hide the username in the packages that the author is an admin. You have to put the user display name in the $disallowed_names array,

<?php 
  $post_author_name = get_the_author_meta('display_name', get_post_field('post_author', get_the_ID()));
  $disallowed_names = array('admin_name', 'another_author',);
   if (!in_array($post_author_name, $disallowed_names)):
  ?>
 <li class="list-group-item d-flex justify-content-between align-items-center [hide_empty:author_name]">
                [txt=Uploaded by:]
                <span class="badge badge-dark">[author_name]</span>
 </li>
<?php endif; ?>

please check and let me know, if it helps you.

Thank you and regards

Dec 23, 2023 at 5:47 am
#192123
Moderator
Nayeem Riddhi
Staff OP

For specific category showing, you can use the category parameter. However, for the default category showing this feature is still not available now, you can also keep a feature request here, https://www.wpdownloadmanager.com/support/forum/download-manager-pro-feature-request/. I hope you have understood. please check and let me know

Thank you and regards

Dec 23, 2023 at 5:21 am
#192122
Moderator
Nayeem Riddhi
Staff OP

You can check now the download button and publish date are in the same line now. However, for the lining up issue, can you please elaborate on it? For page template, it is a detailed page of download packages, you can check the doc here too, https://www.wpdownloadmanager.com/doc/templates/page-templates/. please check and let me know

Thank you and regards

Dec 21, 2023 at 5:47 pm
#192101
Moderator
Nayeem Riddhi
Staff OP

please check now, I have adjusted some CSS like the below from the Appearance > Customize > Additional CSS section

.w3eden .card-footer .row{ flex-wrap:nowrap;} .w3eden .card-footer .row a.wpdm-download-link { margin-top:0px;}

It is looking better than before. please check and let me know

Thank you and regards

Dec 21, 2023 at 4:21 pm
#192099
Moderator
Nayeem Riddhi
Staff OP

Hello Halo Infusions,

I have checked your issue, your most of the download packages are downloading from the same page here, https://haloinfusions.com/media/. Some of them are opening in the browser. I think those packages are attached from the Media Library option. Choosing from the Select From Media Library/ URL option, By default, it will do so. You can also choose the other option too. When you attach files from the media library/URL as a URL WPDM simply redirects to that URL, when a user clicks on the download button. But when you upload a file directly or attach a file from the server as a server path, WPDM handles the download process and so there it can decide whether the file will open in the browser or force download. So, if your files are already in the media library, and you want them to download instead of open in the browser, please attach those files using the server file browser instead of the media library file selector. And for your spacing issue, can you please elaborate more on it? please check and let me know

Thank you and regards

Dec 21, 2023 at 1:33 pm
#192096
Moderator
Nayeem Riddhi
Staff OP

Hello Brigitte,

Glad to hear that part of your issue has been resolved. However, I would check what was causing the issue for translation. And for your subscription to the newsletter, if none of the suggestions don’t work, you can also take our customization service from here,

Custom Upgrade Service

please check and let me know

Thank you and regards

Dec 21, 2023 at 6:21 am
#192094
Moderator
Nayeem Riddhi
Staff OP

Hello Peter Peck,

Hope you are well. If you are trying to implement a custom post-type and its taxonomy with WPDM and its shortcodes, you may need to take the customization service from here, https://www.wpdownloadmanager.com/download/custom-upgrade-service/. please check and let me know

Thank you and regards

Viewing 25 posts - 4,926 through 4,950 (of 20,423 total)