• Resolved mbthne

    (@maifromcamelo)


    I can’t access the Settings of the plugin EazyDocs. Please view the attached image: https://imgur.com/a/NYYMKkZ

    But when I tried deactivating Docy theme and using another theme, I can access EazyDocs settings. So I figure this could be Docy conflicting with EazyDocs. Can you take a look into this?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Sajjad Hossain

    (@codersajjad)

    Hello,

    Thank you for bringing this to our attention. The issue you’re encountering indeed seems to be related to a conflict between the Docy theme and the EazyDocs plugin.

    To address this, you can try implementing a code snippet in the theme’s functions.php file. This code aims to fix the conflict. Below is the code snippet you can add to the functions.php file:

    function fix_asset_urls($url) {
        return str_replace('/bitnami/wordpress/wp-content/themes/docy/', '/', $url);
    }
    
    add_filter('style_loader_src', 'fix_asset_urls');
    add_filter('script_loader_src', 'fix_asset_urls');
    

    Please ensure to add this code below all existing code in the functions.php file. After adding the code snippet, save the changes, and then try accessing the EazyDocs settings again while using the Docy theme.

    If the issue persists or if you need further assistance, please don’t hesitate to let us know. We’re here to help.

    Best regards,
    Sajjad
    EazyDocs support team

Viewing 1 replies (of 1 total)
  • The topic ‘Can’t access EazyDocs Settings’ is closed to new replies.