Forum Replies Created

Viewing 15 replies - 1 through 15 (of 75 total)
  • Forum: Fixing WordPress
    In reply to: Admin bar missing

    I’m glad that i was able to help a little. Thank You

    Forum: Fixing WordPress
    In reply to: Admin bar missing

    Hi @waterval

    That’s great!

    Here are some steps to help resolve this:

    1. Purge All Caches: Cached pages can sometimes interfere with the Admin Bar. Try going to the LiteSpeed Cache menu in your WordPress dashboard and selecting Purge All to clear the cache.
    2. Exclude Admin Pages from Caching: In LiteSpeed Cache settings, navigate to Cache > Cache Excludes and add wp-admin to the Do Not Cache URIs section. This prevents the plugin from caching admin pages.
    3. Disable Minification for Admin Pages: Sometimes, minifying CSS or JavaScript can affect display. Go to LiteSpeed Cache > Page Optimization, and under the CSS and JS settings, try disabling Combine CSS/JS and Minify CSS/JS for logged-in users.
    4. Disable Caching for Logged-In Users: You can prevent caching for logged-in users altogether. Go to LiteSpeed Cache > Cache and enable the option to Disable Cache for Logged-In Users. This ensures the Admin Bar remains visible while you’re logged in.
    5. Clear Browser Cache: If the issue persists, try clearing your browser cache or checking the site in an incognito window, as the browser’s cache can sometimes cause display issues.
    6. Check for Plugin Conflicts: If none of the above resolves the issue, there could be a conflict with another plugin. You can temporarily disable all plugins except LiteSpeed Cache to check if the Admin Bar appears. If it does, re-enable the plugins one by one to identify the conflicting one.

    Let us know if these steps help. Thanks

    Forum: Fixing WordPress
    In reply to: Admin bar missing

    I’m sorry to hear that. Can you share a full screenshot of the Chrome Developer Console? like this: https://prnt.sc/2bvhaHWUgcF4

    wpadminbar <div> should be there. I would also suggest to remove my CSS code for now and deactivate all plugin and see if you can see the Admin bar.

    I think the issue was solved @sterndata . It was showing Critical Error message when I viewed the site.

    Forum: Fixing WordPress
    In reply to: Admin bar missing

    Yes, URL is working. Can you try this CSS code:

    html.n2webp.js {
    margin-top: 0 !important;
    }

    You can add this to Appearance -> Customize -> Advanced CSS: https://prnt.sc/Z9hThlvS8lz3

    Let me know if this works. Thanks

    Hi @berry12

    You need to enable debug mode in WordPress, follow these steps:

    1. Access your website files via FTP or your hosting File Manager.
    2. Open the wp-config.php file located in the root directory of your WordPress installation.
    3. Look for the line that says define( 'WP_DEBUG', false );.
    4. Replace the code with this code below:
    define( 'WP_DEBUG', true )
    define( 'WP_DEBUG_LOG', true );
    define( 'WP_DEBUG_DISPLAY', true );
    @ini_set( 'display_errors', 1 );

    4: Save the file and reload your site. Error messages should now be displayed on the page.

    Remember to disable this after troubleshooting by setting WP_DEBUG and WP_DEBUG_DISPLAY back to false, as displaying errors publicly can expose sensitive information.

    Let me know how it goes. Thanks

    Forum: Fixing WordPress
    In reply to: Admin bar missing

    Thank you for sharing the Google Drive URL but it seems the files is not shared publicly:
    https://prnt.sc/aQDaWLPoKmTc
    Make sure the file is Public. Thanks again

    Forum: Fixing WordPress
    In reply to: Admin bar missing

    Thank You for the information. Can you share a screenshot of the white space you are seeing? Because I’m not logged in, I’m seeing this: https://prnt.sc/x6U9EFHJonbF

    Forum: Fixing WordPress
    In reply to: Admin bar missing

    Hi @waterval

    Can you make sure that Show Toolbar when viewing site option from Profile is Checked?

    https://prnt.sc/SkQD4ueh949g

    Admin bar will be hidden if this option is not checked. Let me know how it goes. Thanks

    Moin Uddin Ahmed

    (@moinrrahmed)

    HI @blackstar1991

    Can you please share your website URL? Thanks

    Hi @captionlabs1

    I can you are using Custom JS to override the default Scrollbar? Or Custom Scrollbar coming the Theme you are using?

    Here are some CSS code which will have the current Scrollbar like Default Scrollbar:

    ::-webkit-scrollbar {
    width: auto;
    }
    ::-webkit-scrollbar-track {
    -webkit-box-shadow: auto;
    -webkit-border-radius: auto;
    border-radius: auto;
    background:auto;
    }
    ::-webkit-scrollbar-thumb {
    -webkit-border-radius:auto;
    border-radius:auto;
    background:auto;
    -webkit-box-shadow:auto;
    }
    ::-webkit-scrollbar-thumb:window-inactive {
    background: auto;
    }

    Let me know how it goes. Thanks

    Hi @mpowellifc

    I’m sorry to hear that. Here are some steps you can follow and see if this helps.

    • Review Wordfence Settings: check settings, especially the Firewall and Scan options. Ensure that there are no rules that might delete files or block updates. You could temporarily disable Wordfence and see if the problem persists.
    • Other Security Plugin: If you have any other security plugins installed, check their settings. Sometimes, multiple security plugins can conflict and cause unexpected behavior.
    • Server Security : Since your hosting provider suggested it’s not a server issue, ask them to check their security logs for any actions taken on your plugin files. There might be some automated script or security measure that’s removing the files.
    • Test on a Stating site: If possible, replicate your multisite setup on a staging environment and try to reproduce the issue. This can help isolate whether it’s a server or configuration issue.
    • Custom Code or Functions: If you have custom code in your theme’s functions.php or any custom plugins, review it to ensure there’s nothing that could inadvertently delete plugin files.
    • Activate Default Theme: You can activate a WordPress default Theme & deactivate all plugin except the one which is missing files. Check if you still see missing file error while Default Theme & single plugin is activated.

    Let me know how it goes. Thanks

    Hi @christirush123

    I can see you are using a Custom Theme called Glacial Theme . I would suggest to contact the Theme Developer and share the issue.

    We can still help you but can you please elaborate on it a bit more or share some details with screenshots for better understanding? Thanks

    You can simply use this CSS code:

    ul.wp-block-list{
    list-style-position: inside;
    }

    Now the Bullets should be aligned with the Text itself: https://prnt.sc/VQsFyWMxFhYt

    Let me know how it goes. Thanks

    You can contact your Hosting support with following message:

    Hi [Hosting Provider’s Support Team],

    I’m encountering a "403 Forbidden" error when trying to access /wp-admin. The error message reads:

    Forbidden
    You don’t have permission to access this resource.


    Could you please help investigate any server-side settings, such as IP restrictions, firewall rules, or ModSecurity configurations, that might be causing this issue? Also if there are any file permissions, .htaccess rules, and disabled security plugins issue?

Viewing 15 replies - 1 through 15 (of 75 total)