highlandmoss
Forum Replies Created
-
I just would like to second this comment, noticed it in my chained requests and saw that my setup which loads Google Fonts locally was ignored.
I see you havent responded to OP in 8 days. Sorry to say, but if it isn’t worth ironing this out with an update, then it probably isn’t worth us keeping Ditty and being non-compliant (as well as performance optimisations being ignored).Forum: Plugins
In reply to: [GTM Server Side] 1000’s of PHP warningsIs anyone home? I am sure I am not the only one tired of looking at thousands and thousands of lines of this cluttering up logs!
Forum: Plugins
In reply to: [GTM Server Side] 1000’s of PHP warningsI have this same issue. It would be appreciated if a dev could address this please.
Apparently this error can be as simple to solve as removing a bit of whitespace.
Forum: Fixing WordPress
In reply to: Autoloaded options issue in site HealthThis might be useful for some people, it is a little snippet I got chatgpt to write for me. Just tested it and it works fine. I manually went through all my options with Meow Apps DB cleaner and disabled autoload from as many old plugins relics as I could recognise. I also have AAA option optimizer on for a few days to see if it helps find unused options that I can clean up.
Anyway, this would solve the issue you guys have about updates replacing the modified code.
// Add this to your theme's functions.php or a custom plugin
function custom_update_autoloaded_options_size_limit($limit) {
// Set the default custom limit to 999999 bytes (approx. 1MB)
$custom_limit = get_option('custom_autoloaded_options_size_limit', 999999);
// Ensure the limit is within a reasonable range (e.g., between 800KB and 999999 bytes)
if ($custom_limit < 800000) {
$custom_limit = 800000;
} elseif ($custom_limit > 999999) {
$custom_limit = 999999;
}
return $custom_limit;
}
add_filter('site_status_autoloaded_options_size_limit', 'custom_update_autoloaded_options_size_limit');Hi, I made some changes and the numbers seem to have levelled out. Thank you so much for your reply.
The connection error reappeared so I guess that didn’t help. Still seeing loads of actions appear constantly and jetpack logs is the largest file in my options table.
I managed to get the connection issue fixed by completely removing my site from wordpress.com and now it isn’t complaining.
However, Jetpack is still going roque and causing havoc on the site. It is creating thousands and thousands of webhooks called “wc-admin_import_orders”
It is creating far more of these than orders we have ever had.
And now I have found it has created over 250,000 entries in the options table! Just trying to view those caused a critical error on my site.
I am completely removing jetpack for the moment. Unfortunately I do require it for some functionality and especially so we can use the woocommerce app. So I still need a solution if anyone can help.
My action scheduler has had tens of thousands of actions and it looks like Jetpack may be the culrpit.
Extra thanks to Alex and Ksenya for their devotion to helping me customise the plugin further – hugely appreciated!
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] noindex issuesThank you for this!
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] noindex issuesI just added that fixed for shop-2 – so easy! Thank you so much, its the sort of thing that when you know, you know. But so many times I have gone down some deep rabbit hole thinking I need some complex solution to little fixes like this.
Searchanise is going to turn off the mods they did temporarily so we can see if that corrects the duplicate page issue. I will update you once they have done that.
Little bit of a separate thing – but have you considered adding any kind of broken link/broken image checker to the plugin extensions? I did a media cleanup and unfortunately even with a lot of checking it removed some images from my old articles, care guides etc. I have been looking all over for a well coded and reliable broken link checker but haven’t found anything I liked. I am away to see if Jordy Meow has made anything for it as I like his stuff but thought it would be in your wheelhouse and SEO related too.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] noindex issuesHi Sybre,
Thank you so much for your detailed reply.
It looked like a lot of pages were still indexed which is great and I managed to sort the few I found which had dropped off for whatever reason.
However, I did find that my shop-2 page is not indexed, with the message in console being “Page is not indexed:?Alternative page with proper canonical tag”
I am happy to add the trailing slash to the url but I am not sure where to do that – would this be by just updating the slug in the quick edit area?
I will ask Searchanise about the duplicated pages and see if they know whats going on with that.
I can eliminate kadence_elements from indexing, will do that now, thank you – I wasn’t sure if noindexing them would affect the SEO of the pages they are displayed on. These are hooked elements which get called in dynamically.
Thanks again!
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] noindex issuesI really need to hear from you as I saw a sudden drop in sales (other than from local customers) which made me think we had an indexing issue.
When I checked, it looked like everything was indexed and all good – but then when I started checking URLs I could see pretty much everything except our main page is no longer indexed!
I am happy to ask searchanise to undo the changes they made but I would really like you to see if you can see the cause for sure please.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] noindex issuesHi Sybre, I got an update from Searchanise but I am not sure how to check if their fix is effective or works as you suggested, would you mind having a quick look?
The fact is that the page parameter is used in our widgets code in different places, which is why changing it requires rewriting a significant part of the core’s code on our server’s side. Unfortunately, at the moment we cannot fulfill this request, because, technically, we are talking about changing the search logic for this parameter.
However, for our part, we have added a modification that replaces the parameter with paged directly in the URL. The difference is that this happens not at the server request level, but at the frontend. Please check if this solves the SEO issue and kindly let us know.
Searchanise SupportForum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] noindex issuesThank you so much for this, very informative and excellent support.
I unchecked sitelinks and I have approached Searchanise about your suggestions (I have a plan with them where they will customise the plugin for me).
This is what they responded with (I gave them the link to this thread and quote you directly):
“
?Hello Craig,
Thank you for your message.
Do I get it right that you’d like us to change URLs like https://highlandmoss.com/shop-2/?page=1&rb_custom_taxonomy_plant-genus=Begonia to https://highlandmoss.com/shop-2/?paged=1&rb_custom_taxonomy_plant-genus=Begonia ?
Please confirm or elaborate on your query. Thank you!”
I let them know that this particular level of SEO and understanding pagination is beyond my knowledge but I think this is what you meant.
Can you please confirm if this is how the links should be structured? I would prefer this method as you suggested it was better than using a default sitemap.
Thank you!