Rhaynon S
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What’s the first thing I should do when I see the WSoDYou could also try disabling the
.htaccessfile by renaming it (e.g.,.htaccess_old) and then check the site again. If that resolves the issue, you can replace the.htaccessfile with the default one from the WordPress Codex to restore proper permalinks and settings. Let me know if that helps or if you need further guidance!Forum: Fixing WordPress
In reply to: Edit button produces errorIt’s possible that the active theme is conflicting with WordPress or some of your plugins. Try switching to a default WordPress theme (like Twenty Twenty-One) temporarily:
Go to Appearance > Themes in the WordPress Admin.
Activate a default theme.
Check if you can edit the page again.If it works after switching the theme, the issue is likely with your original theme.
you could also try this
Open your wp-config.php file and add the following line before the line that says /* That’s all, stop editing! Happy blogging. */:define(‘WP_MEMORY_LIMIT’, ‘256M’);
Save the file and see if this resolves the issue.
Forum: Fixing WordPress
In reply to: I have a critical error on my websiteHi you can try to disable all plugins inside your database if you in your hosting panel and login to Cpanel look for phpmyadmin and find your database here is how
Steps to Disable All Plugins via phpMyAdmin (in cPanel):
Log in to your hosting panel (cPanel).Go to phpMyAdmin under the Databases section.
Select the WordPress database for your site from the left sidebar.
Find and click on the table named wp_options (note: the prefix wp_ might be different depending on your setup).
Locate the row with the option_name active_plugins (usually on the first page).
Click Edit on that row.
In the option_value field, delete all the content, and then click Go to save.
This disables all plugins at once.
Forum: Fixing WordPress
In reply to: Not Posting to Facebook CorrectlyHi can you try the following :
Install/Check Yoast SEO (or your SEO plugin).Set the Facebook image manually under the post’s “Social” tab.
Ensure your featured image is at least 200x200px and public.
Clear your cache (site + Facebook using the debugger).
Use the Facebook Debugger to refresh the post:
https://developers.facebook.com/tools/debug/If using an auto-post plugin, reconnect your Facebook account.
Forum: Fixing WordPress
In reply to: how to remove carousel image from google search results?It is probably because of indexing
Prevent Indexing
Use a SEO plugin (like Yoast SEO or Rank Math):
Open the page with the image.
In Yoast SEO, scroll down and under the Advanced tab, set Allow search engines to show this Page in search results? to No.
If using Rank Math, enable the Noindex option for the page.
Remove from Google Search
Go to Google Search Console:
In the Removals section, enter the URL of the image or page.
Submit the request to temporarily remove it.
Remove Image via Google (if sensitive)
If the image is private or violates someone’s privacy, use Google’s removal tool.
This will stop the image from showing in search results!Forum: Fixing WordPress
In reply to: Images not loading on mobile appHi ,
I have experience this before and this are the steps i did to fix it
Clear Caches: Purge caches from your caching plugin, CDN if you’re using one, and browser. This can often fix loading issues.
Disable Plugins: Temporarily disable caching or image optimization plugins like Smush or WP Super Cache to check if they’re causing the problem.
Test Default Theme: Switch to a default WordPress theme like (Twenty Twenty-One) to see if the issue is theme-related.
Check Mobile-Specific CSS: Look for any mobile-specific CSS rules that might be hiding the images e.g., display: none.
Update Everything: Ensure WordPress, your theme, and all plugins are up to date.