Nayeem Riddhi

Forum Replies Created

Viewing 25 posts - 726 through 750 (of 19,296 total)
in reply to: Can members upload files? #204315

Nayeem Riddhi
Moderator

Can you please kindly elaborate?

Thank you and regards

in reply to: Can members upload files? #204313

Nayeem Riddhi
Moderator

Do you want any custom appearance? For custom implementation you may have to contact here with your requirements, https://www.wpdownloadmanager.com/download/custom-upgrade-service/

Please kindly check.

Thank you and kind regards

in reply to: Can members upload files? #204311

Nayeem Riddhi
Moderator

Please visit the page where you have used [wpdm_frontend] shortcode. And follow the process instruction. Please kindly check.

Thank you and kind regards

in reply to: Can members upload files? #204309

Nayeem Riddhi
Moderator

Glad to hear that. However, if you need further help with anything else, then please don’t hesitate to open a new topic.

Thank you and kind regards

in reply to: Can members upload files? #204307

Nayeem Riddhi
Moderator

No, dropzone is included within WPDM PRO version the main plugin PRO version. Please kindly check.

Thank you again and kind regards

in reply to: Conflict with Login Logout Menu #204305

Nayeem Riddhi
Moderator

WPDM has one redirect feature after login where it should redirect. But logout features implementation for urgency you can order a custom service request here , https://www.wpdownloadmanager.com/download/custom-upgrade-service/ or keep a feature request here too, https://www.wpdownloadmanager.com/support/forum/download-manager-pro-feature-request/. Please kindly check and let me know.

Thank you and kind regards


Nayeem Riddhi
Moderator

Glad to hear that. However, if you need further help with anything else, then please don’t hesitate to open a new topic.

Thank you and kind regards

in reply to: Will you EVER add support for Post Tags?? #204303

Nayeem Riddhi
Moderator

Ok, please kindly give a brief requirements of your feature, I shall try to forward it to our team thus it may be implemented soon for you. Please kindlly check.

Thnk you and kind regards

in reply to: Can members upload files? #204302

Nayeem Riddhi
Moderator

Hello x472134,

Hope you are well. Thanks for writing to us. For member sharing files to you can check these artcles,

[wpdm_frontend] – Front-end Uploader UI / Author Dashboard

How to Allow Users to Upload Files in WordPress

Please kindly check .

Thank you and kind regards

in reply to: Plugin causing conflict #204292

Nayeem Riddhi
Moderator

I have already forwarded it to our related team authority. Please kindly check and let me know if you have any more queries.

Thank you and kind regards

in reply to: Dissallow Search Engines #204286

Nayeem Riddhi
Moderator

Glad to hear that. However, if you need further help with anything else, then please don’t hesitate to open a new topic.

Thank you and kind regards

in reply to: Will you EVER add support for Post Tags?? #204278

Nayeem Riddhi
Moderator

Ok, thank you for the clarification, for now, please kindly open a feature request here, https://www.wpdownloadmanager.com/support/forum/download-manager-pro-feature-request/. Please kindly check.

Thank you and regards

in reply to: Error on panel page #204277

Nayeem Riddhi
Moderator

Glad to hear that. However, if you need further help with anything else, then please don’t hesitate to open a new topic.

Thank you and kind regards

in reply to: Conflict with Login Logout Menu #204276

Nayeem Riddhi
Moderator

I have just checked now with WPDM login and WordPress Logout with your credentaials. It is working properly as expected. Can you please let me know which logout button causing this issue? Please kindly check and let me know.

Thank you and kind regards

in reply to: Will you EVER add support for Post Tags?? #204271

Nayeem Riddhi
Moderator

For urgency issue, you can contact custom order service section there you can discuss with the pricing too. Please kindly check.

Thank you and kind regards

in reply to: Error on panel page #204270

Nayeem Riddhi
Moderator

Hello x472134,

Hope you are well. And sorry for the inconveneince. I have added some CSS on Customizer > Additional CSS section.

body.sticky-menu{
	position: unset !important;
}
@media (min-width: 1000px) {
	body.sticky-menu{
	  position: unset !important;
    }
}

Now I hope you problem has been resolved. Please kindly check.

Thank you and regards

in reply to: Conflict with Login Logout Menu #204268

Nayeem Riddhi
Moderator

Hello Chelsea Profit,

Hope you are well. And sorry for the inconvenience. Please kindly share the related URL. if possible, can you please, give your temporary wp-admin login details in a private reply to check the issue?

Thank you and regards

in reply to: import export not working #204267

Nayeem Riddhi
Moderator

Your drozone and layout issue maybe resolved now. For dropzone I have adjusted Downloads > Settings > Frontend Access> Author Dashboard Allowed User Roles to Create Package From Front-end & Front-end Administrator Rolesand for layout issue I have added some CSS on Customizer > Additional CSS section. Now for exporting packages issue it is giving critical error while exporting, can you share the PHP error log details or can adjust settings here https://dtctuning.com/wp-admin/index.php PHP Error log thus I can check which error is coming. Please kindly check.

Thank you and regards

in reply to: Will you EVER add support for Post Tags?? #204262

Nayeem Riddhi
Moderator

If it is urgent for you can keep a custom service from here https://www.wpdownloadmanager.com/download/custom-upgrade-service/ or you can also keep a feature request here for future update, https://www.wpdownloadmanager.com/support/forum/download-manager-pro-feature-request/. Please kindly check.

Thank you and regards

in reply to: Dissallow Search Engines #204261

Nayeem Riddhi
Moderator

Please kindly check my attached video download link URL,

https://we.tl/t-OG5ZDbpzWW

It is working properly as expected from my side. Please kindly check.

Thank you and regards

in reply to: CSV bulk import doesn´t work #204259

Nayeem Riddhi
Moderator

Ok, we can make last try with the below, please kindly check,

1. Save the CSV File Correctly
1.1 Use UTF-8 Encoding
– Avoid Excel: Excel often mishandles UTF-8 encoding. Use Notepad++, Sublime Text, or LibreOffice Calc instead.
– For Notepad++:
1. Open the CSV file.
2. Go to Encoding > Encode in UTF-8-BOM.
3. Save the file.

– For LibreOffice Calc:
1. Open the CSV file.
2. Go to File > Save As.
3. Choose CSV (Text) and check ☑ Edit filter settings.
4. Set Character set to Unicode (UTF-8) and ☑ Add BOM character.

# 2. Configure WordPress for UTF-8
2.1 Update wp-config.php
Add these lines to your WordPress root’s wp-config.php :

define('DB_CHARSET', 'utf8mb4');  
define('DB_COLLATE', 'utf8mb4_unicode_ci');  

2.2 Check Database Collation
1. Open phpMyAdmin (via your hosting panel).
2. Select your WordPress database.
3. For all tables, change collation to utf8mb4_unicode_ci (use Operations > Collation).

# 3. Server-Side Fixes
3.1 PHP Configuration
Add these lines to your server’s php.ini or .user.ini

default_charset = "UTF-8"  
mbstring.internal_encoding = UTF-8  
mbstring.http_output = UTF-8  

– If you don’t have access to php.ini, contact your hosting provider to apply these settings.

3.2 Web Server Headers
– For Apache (add to .htaccess in WordPress root):
`AddDefaultCharset UTF-8
<IfModule mod_headers.c>
Header set Content-Type “text/html; charset=UTF-8”
</IfModule>`
`
– For Nginx (add to nginx.conf):
`charset utf-8;
charset_types text/html text/plain text/css application/json application/javascript text/xml application/xml;
`
3.3 MySQL Connection Collation
Add this to wp-config.php to force UTF-8 for database connections:

php
// Force UTF-8 connection  
$mysqli = new mysqli(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);  
$mysqli->set_charset('utf8mb4');  

# 5. Import CSV into WPDM
1. Go to WPDM > Import/Export.
2. Upload your CSV file (ensure it’s saved as UTF-8 with BOM).
3. Map the CSV columns to WPDM fields.
4. Ensure Character Encoding is set to UTF-8 in the import settings.

# 6. Last Resorts
6.1 Manual Import via phpMyAdmin
1. Export your CSV as UTF-8.
2. In phpMyAdmin:
– Select your WordPress database.
– Go to Import > Choose File (select CSV).
– Set Format to CSV and Character set to utf8.

6.2 Contact Hosting Support
If you’re on shared hosting and lack server access, ask them to:
– Confirm PHP/MySQL uses UTF-8.
– Update php.ini and MySQL collation to utf8mb4.

Please kindly check and let me know.

Thank you and kind regards

in reply to: Dissallow Search Engines #204256

Nayeem Riddhi
Moderator

I have checked again now, the download is working properly after removing the Administrator role too. Can you please try with my credentials that you have shared with me? Please kindly check.

Thank you and kind regards

in reply to: Subscription Renewal Email #204254

Nayeem Riddhi
Moderator

Glad to hear that. However, if you need further help with anything else, then please don’t hesitate to open a new topic.

Thank you and kind regards

in reply to: import export not working #204246

Nayeem Riddhi
Moderator

I think it may have a conflict between your plugins or theme. You can disable one by one other plugins for testing if there any conflicts. If you permit me I can also check the issue. Please kindly check.

Thank you and regards

in reply to: import export not working #204244

Nayeem Riddhi
Moderator

Your credentials are not working. Please kindly check.

Thank you and regards

Viewing 25 posts - 726 through 750 (of 19,296 total)