Nayeem Riddhi

Forum Replies Created

Viewing 25 posts - 1,176 through 1,200 (of 20,378 total)
Jun 10, 2025 at 1:54 pm
#207078
Moderator
Nayeem Riddhi
Staff OP

Can I check the the process again? Please kindly let me know.

Thank you

Jun 10, 2025 at 1:53 pm
#207077
Moderator
Nayeem Riddhi
Staff OP

Sorry for the inconvenience. Please follow my above instructions. I hope your issue may be resolved then. Please kindly check.

Thank you and regards.

Jun 10, 2025 at 1:50 pm
#207075
Moderator
Nayeem Riddhi
Staff OP

I have not access to this mail. You can provide the credentials here in private reply. Please kindly check.

Thank you and regards

Jun 10, 2025 at 1:48 pm
#207073
Moderator
Nayeem Riddhi
Staff OP

Hello Pinnacle Webmaster,

Hope you are well. For cancelling auto-renew please send an order note from this Page by following This. Also, please let us know which feature we can add/improve or support we can give you. Please check and let me know if you have any queries.

Thank you and kind regards

Jun 10, 2025 at 11:18 am
#207067
Moderator
Nayeem Riddhi
Staff OP

If plugin conflict you can check those plugins settings, if adjusting those resolve the issue. Also you can contact their plugin support for the issue. Please kindly check.

Thank you and regards

Jun 10, 2025 at 4:36 am
#207064
Moderator
Nayeem Riddhi
Staff OP

I have back with information from our team that, It has been fixed with v3.9.6. Please kindly check now.

Thank you and regards

Jun 10, 2025 at 4:30 am
#207063
Moderator
Nayeem Riddhi
Staff OP

I have back information from our team that, update is available now. Please kindly check now.

Thank you and regards

Jun 10, 2025 at 1:41 am
#207059
Moderator
Nayeem Riddhi
Staff OP

Which email you are sending the access, you can paste the link here too in the private reply. Please kindly check.

Thank you and kind regards

Jun 10, 2025 at 1:39 am
#207058
Moderator
Nayeem Riddhi
Staff OP

Sorry for the inconveneince. I have again forwarded your concern. Please kindly check .

Thank you

Jun 9, 2025 at 3:06 pm
#207052
Moderator
Nayeem Riddhi
Staff OP

Can you please kindly elaborate more on your issue. If possible please kindly share the related URL.

Thank you and regards

Jun 9, 2025 at 3:04 pm
#207051
Moderator
Nayeem Riddhi
Staff OP

Hello chuckbergman,

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

Thank you and regards

Jun 9, 2025 at 8:59 am
#207048
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…

Thank you again and regards

Jun 9, 2025 at 4:06 am
#207046
Moderator
Nayeem Riddhi
Staff OP

Hello Peelle Door,

Hope you are well. Are you using this shortcode and with this shortcode restrict search result only Download Manager packages?

https://www.wpdownloadmanager.com/doc/short-codes/wpdm_search_result-shows-search-form/

Please kindly check and let me know.

Thank you and kind regards

Jun 7, 2025 at 3:47 pm
#207044
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…

Thank you again and regards

Jun 7, 2025 at 3:45 pm
#207042
Moderator
Nayeem Riddhi
Staff OP

Please kindly check my attached image,

Screenshot-from-2025-06-07-21-41-11-png

Please kindly check.

Thank you and regards

Jun 7, 2025 at 3:23 pm
#207039
Moderator
Nayeem Riddhi
Staff OP

It is residing on <body class=""> attribute of html. Please kindly check.

Thank you and regards

Jun 7, 2025 at 2:52 pm
#207037
Moderator
Nayeem Riddhi
Staff OP

Please kindly check and let me know if it works for you.

Thank you and regards

Jun 7, 2025 at 2:17 pm
#207035
Moderator
Nayeem Riddhi
Staff OP

You can target

body.error404 .google advertisment {
display: none;
}

like this.

Please kindly check and let me know.

Thank you and regards

Jun 7, 2025 at 1:43 pm
#207032
Moderator
Nayeem Riddhi
Staff OP

Please kindly share the related URL.

Thank you

Jun 7, 2025 at 10:53 am
#207030
Moderator
Nayeem Riddhi
Staff OP

I think it may have a conflict between your plugins or theme. Am i able to disable one by one other plugins for testing if there any conflicts. May i also can switch theme to another for checking for sometime? Please kindly check and let me know.

Thank you and kind regards

Jun 7, 2025 at 10:47 am
#207029
Moderator
Nayeem Riddhi
Staff OP

Hello kiddo worksheets,

Hope you are well. Can you please kindly let me know does this issue related to WPDM or its services. Please kindly check and let me know.

Thank you and regards

Jun 7, 2025 at 10:43 am
#207028
Moderator
Nayeem Riddhi
Staff OP

Hello,

Can you please try this on your active theme’s functions.php file the below code,

function disable_captcha_for_wpdm_pages() {
    // Check if we're on WPDM registration or login pages
    if (is_page() || is_admin()) {
        global $wp;
        $current_url = home_url($wp->request);
        
        // Define the URLs where CAPTCHA should be disabled
        $excluded_pages = array(
            '/register-for-downloads/',
            '/my-downloads/',
            '/login' // Add any other WPDM related URLs
        );
        
        // Check if current page matches any excluded pages
        foreach ($excluded_pages as $page) {
            if (strpos($current_url, $page) !== false) {
                return false; // Disable CAPTCHA
            }
        }
    }
    
    // Check for specific WPDM actions or parameters
    if (isset($_POST['wpdm_reg']) || isset($_POST['wpdm_login']) || 
        isset($_GET['wpdm-reg']) || isset($_GET['wpdm-login'])) {
        return false; // Disable CAPTCHA for WPDM forms
    }
    
    // Check if it's an AJAX request from WPDM
    if (defined('DOING_AJAX') && DOING_AJAX) {
        if (isset($_POST['action']) && 
            (strpos($_POST['action'], 'wpdm') !== false || 
             strpos($_POST['action'], 'download') !== false)) {
            return false; // Disable CAPTCHA for WPDM AJAX requests
        }
    }
    
    return true; // Keep CAPTCHA enabled for other pages
}

// Apply the filter to disable CAPTCHA when needed
add_filter('wordfence_ls_require_captcha', 'disable_captcha_for_wpdm_pages');

Please kindly check and let me know.

Thank you and kind regards

Jun 6, 2025 at 3:36 pm
#207022
Moderator
Nayeem Riddhi
Staff OP

Sorry for the inconveneince. I have again forwarded your concern. Please kindly check .

Thank you

Jun 6, 2025 at 1:54 pm
#207019
Moderator
Nayeem Riddhi
Staff OP

Can you please elaborate more on your information? please kindly check.

Thank you and regards

Jun 6, 2025 at 4:41 am
#207015
Moderator
Nayeem Riddhi
Staff OP

Yes, you can use a custom page for waiting, you can also customize the page as per your requirements please check the features of add-on, also can check the demo. Please kindly check.

Thank you and kind regards

Viewing 25 posts - 1,176 through 1,200 (of 20,378 total)