Shaikot Ahmed
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images being shrunk down to 1600 pixels widthHi,
This usually happens when a theme or server setting “hijacks” the WordPress scaling process.
- Disable Scaling (The Quick Fix)
WordPress defaults to 2560px, but your theme may have lowered this limit. Add this to your functions.php:
add_filter( ‘big_image_size_threshold’, ‘__return_false’ );
Upload the image again after adding this.- Check for “Invisible” CDNs
Jetpack: If you have it, disable “Site Accelerator” (Performance settings). It caps images at the edge.
Cloudflare: Disable “Polish” or “Mirage” if active.
- Why the metadata is wrong. WordPress requested a 2560px version, but a server-side limit (or theme filter) forced it to save at 1600px instead. WordPress recorded the intended size, but the server saved the restricted size.
Check your theme: Search your theme files for 1600. It’s likely a hardcoded limit in your theme’s functions.
Forum: Fixing WordPress
In reply to: page list cannot retrieve pages wordpressSince you mentioned that this happens specifically with Block Themes, the issue is likely related to how your server or database handles the REST API, which Block Themes rely on heavily to load the interface.
Here is a step-by-step checklist to troubleshoot and fix this:
- Flush Your Permalinks
This is the “magic fix” for many loading issues in WordPress.
Go to Settings > Permalinks.
Don’t change anything, just click Save Changes at the bottom.
Do this twice. This forces WordPress to regenerate its URL structure.
- Check the Site Health Tool
WordPress has a built-in diagnostic tool that can tell you exactly what’s broken.
Go to Tools > Site Health.
Look for errors related to the REST API or Loopback Requests. If the REST API is blocked by your hosting or a security plugin, the Pages and Posts lists won’t be able to “talk” to the database to display content.
- Increase PHP Memory Limit
Block themes are more resource-intensive than classic themes. If your server memory is too low, the process might be timing out.
Access your site via FTP or File Manager.
Edit your wp-config.php file and add this line before the “That’s all, stop editing!” comment:
define(‘WP_MEMORY_LIMIT’, ‘256M’);- Check for Plugin Conflicts
A plugin designed for older “Classic” themes might be clashing with the new Block Theme architecture.
Deactivate all plugins.
If the Pages/Posts start showing up, reactivate them one by one to find the culprit.
- Inspect the Browser Console
If the screen is just blank or spinning:
Right-click on the page and select Inspect.
Click the Console tab.
If you see red error messages (like 403 Forbidden or 500 Internal Server Error), share them here. It will help us pinpoint if it’s a server permission issue.
A quick question to help us further: Are you using a local environment (like XAMPP or LocalWP)?
Forum: Fixing WordPress
In reply to: My website appearance has totally konked out – why?Hi,
This is cache issue.- Deactive Cache plugin. I checked, you are using wp rocket plugin.
- Then go to Elementor Settings, then clear Elementor Cache and run Sync Library
I hope it will worked.
Forum: Fixing WordPress
In reply to: Irregular page rendering with missing picturesHi,
This page isn’t loading CSS for some reason. As you can see in the screenshot, when I inspect and paste the CSS manually, the design looks correct.
This kind of issue sometimes happens with Elementor. There’s an option called “Elementor Cache, Sync Library”, running that usually fixes the problem by generating the correct styles again.
Since you’re using the Getwid plugin, there’s no direct option like that. You can try a few things:
- Dashboard > Settings > Getwid. In general tab, check all checkbox and save.
- Go to page edit > click Styles on top right > click three dot on style, “Reset Styles”
- If you’re using any caching plugin, please clear the cache from there.
- Pro tip (if none of the above works): Open the page in edit mode, make a small change (like adding a space), and click Update again. This forces Gutenberg to re-save the full HTML and CSS of the page in the database.
I hope one of these solutions works. If not, please let us know.
Forum: Fixing WordPress
In reply to: White menu on the phoneIt’s a issue of Coaching Center Theme.
You can try this:
Dashboard > Appearance > Editor > Select the menu and open the Settings of the menu.
Then toggle Overlay Menu / Change options 2-3 times, (Off, Mobile, Always) and save.
Check now.
Forum: Fixing WordPress
In reply to: Menu icon doesn’t open overlay in iPhoneThis isn’t a cache issue. iPhone 7=old Safari (iOS ~15 max), and that browser is not forgiving.
Something in your markup, CSS, or JS is breaking the click/tap behavior.
Have you tried using the Google Chrome browser?
Hi,
Did you change Page Layout from Post Settings?Try this option-

- This reply was modified 1 month, 1 week ago by Shaikot Ahmed.


I’ve tested the page on multiple devices (desktop, Android, iPhone, and iPad) and everything displays correctly.
It’s likely a local cache or Safari rendering issue — please clear your browser cache or test in a private tab.- This reply was modified 7 months, 4 weeks ago by Shaikot Ahmed.
Forum: Plugins
In reply to: [Happy Addons for Elementor] Image grid not working properly in FirefoxYou are welcome.
It’s future proof, if you use all (3) snippets.
I’m also glad to hear it’s working fine.
Have a good day.
Forum: Plugins
In reply to: [Happy Addons for Elementor] Image grid not working properly in FirefoxHi,
there is a little problem with content width. Only 1px width reduction can solve this problem.
I attached a screenshot for simplify this problem. Under link I write some CSS, add this CSS in your theme.
Scnreenshot: https://prnt.sc/cRpI-zcQaR2e
.elementor-widget-container .ha-image-grid__item { width: calc(33% - 1px) !important; } @media (max-width: 1024px) .elementor-widget-container .ha-image-grid__item { width: calc(50% - 1px) !important; } @media (max-width: 575px) .elementor-widget-container .ha-image-grid__item { width: calc(100% - 1px) !important; }Please, let me know update.
- Disable Scaling (The Quick Fix)