Moin Uddin Ahmed
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Admin bar missingI’m glad that i was able to help a little. Thank You
Forum: Fixing WordPress
In reply to: Admin bar missingHi @waterval
That’s great!
Here are some steps to help resolve this:
- 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.
- 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. - 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.
- 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.
- 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.
- 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 missingI’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.Forum: Fixing WordPress
In reply to: My WordPress Dashboard Not WorkI 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 missingYes, 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
Forum: Fixing WordPress
In reply to: My WordPress Dashboard Not WorkHi @berry12
You need to enable debug mode in WordPress, follow these steps:
- Access your website files via FTP or your hosting File Manager.
- Open the
wp-config.php
file located in the root directory of your WordPress installation. - Look for the line that says
define( 'WP_DEBUG', false );
. - 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
andWP_DEBUG_DISPLAY
back tofalse
, as displaying errors publicly can expose sensitive information.Let me know how it goes. Thanks
Forum: Fixing WordPress
In reply to: Admin bar missingThank 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- This reply was modified 1 week, 6 days ago by Moin Uddin Ahmed.
Forum: Fixing WordPress
In reply to: Admin bar missingThank 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 missingHi @waterval
Can you make sure that
Show Toolbar when viewing site
option fromProfile
is Checked?Admin bar will be hidden if this option is not checked. Let me know how it goes. Thanks
Forum: Fixing WordPress
In reply to: Incorrect scaling of the template headerCan you please share your website URL? Thanks
Forum: Everything else WordPress
In reply to: Remove Custom Scroll BarI 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
Forum: Fixing WordPress
In reply to: can’t edit homepageI 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
Forum: Fixing WordPress
In reply to: Issue with post bullet point always aligned to centerYou 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
Forum: Fixing WordPress
In reply to: Can’t Access Admin PageYou 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?