Biranit
Forum Replies Created
-
Hi Maybellyne,
I strongly urge you guys to provide an option or a filter for limiting sitemaps based on date, so that it includes X new or update posts only. This is how large content websites (NY Times, The Guardian, WashPo, etc) operate, and this is what Google Recommends. Here’s an explanation from them:
“A Sitemap file helps search engines to discover new and updated URLs on your website. In particular, if your website is fairly large, then this can help them to be able to focus on the new & updated content, instead of having to blindly crawl through everything to see if anything has changed. That can result in new content being found much faster, which can be quite noticeable especially if the site is larger or more complex.”
We have close to a million posts from 14 years. The Yoast Sitemap is becoming a hindrance for us rather than being helpful. I am sure there are plenty of other websites using Yoast whose owners are not even aware that their SEO plugin is actually anti-SEO on this point… 🙂
Thank you,Bira
Forum: Plugins
In reply to: [Image Watermark] Watermark only specific image sizeGosh I;m an idiot or blind… please ignore this thread (I’d gladly delete it but can’t) – I found the option :0
Forum: Plugins
In reply to: [WP Super Cache] WPSC recognizes iPad as mobileThank you @donncha ❤️
Forum: Plugins
In reply to: [WP Super Cache] WPSC recognizes iPad as mobileHi @donncha , Good to see you here 🙂
I ended up using MobileESP – which is really great and very accurate – in this manner (in my theme’s functions.php):
if (function_exists('add_cacheaction')) { function rgb_wp_cache_check_mobile($cache_key) { include_once('/path/to/mobile-esp.php'); $ua = new uagent_info; return ( $ua->DetectMobileQuick() ) ? 'mobile' : 'normal'; } add_cacheaction('wp_cache_check_mobile', 'rgb_wp_cache_check_mobile'); }It works very well and solved all my issues. What do you think? Is this a viable workaround?
Thank you 🙂
Forum: Plugins
In reply to: [M Chart] Issue with quotation marks in data setThank you for fixing this, @methnen!
Forum: Plugins
In reply to: [M Chart] Issue with quotation marks in data setHi @methnen I apologize for not responding sooner! I just emailed you back 🙂
Thank you!
Forum: Plugins
In reply to: [M Chart] Issue with quotation marks in data setYes, certainly!
I’ll email you – thank you 🙂
Forum: Plugins
In reply to: [PDF Embedder] Unnecessary enqueue in frontendThank you 🙂
Forum: Plugins
In reply to: [HyperDB] PHP 7.3 compatibility@westi I can confirm this fixes the error notice, and everything else seems to work fine. Thank you 🙂
Forum: Fixing WordPress
In reply to: Facebook Video oEmbed Not Working@inhouse oembed works the same in the admin and the frontend, so it should solve your issue in both places. I am not familiar with ACF, though: perhaps they use a different oembed functionality than the built-in WordPress one. I recommend you contact them on their support forum.
Good luck 🙂
Forum: Fixing WordPress
In reply to: Facebook Video oEmbed Not WorkingI can confirm this is the case with every Facebook oEmbed link – the problem is the oEmbed fetch from Facebook takes longer than the default timeout that WordPress has set.
To fix this (until WordPress does at least), put this code in your functions.php:
function my_increase_oembed_timeout($args) { $args["timeout"] = 30; return $args; } add_filter( 'oembed_remote_get_args', 'my_increase_oembed_timeout');- This reply was modified 7 years, 1 month ago by Biranit.
I actually tried this, putting it in the theme’s functions.php, but it didn’t work. I suspect because ‘plugins_loaded’ was already parsed by wordpress – so I probably need to put this inside a function that is called on ‘init’.
I don’t mind leaving this, but as I said – you need to look into why it constantly returns a 403 forbidden message…
OK, please ignore this post. The problem had nothing to do with Wordfence. (No way to delete this thread). Apologies.
Thanks, Michael.
I fixed this by editing the plugin js file – for now. I assume this will be fixed permanently in the next release, so when I upgrade next it will overwrite my fix, which is fine 🙂
Keep up the great work.
Cheers,
Bira
Forum: Plugins
In reply to: [Custom Post Type UI] Post type page disappears after upgradeHi Michael,
I actually no longer think CPT UI is the culprit – but rather one of the custom taxonomies registered via CPT UI (which is why disabling the plugin “solved” the issue). Upgrading to WordPress 4.2 seems to have caused the issue with that taxonomy.
It is a bit of a wonder why that taxonomy had any effect on post type pages at all, but that’s another story altogether and most certainly not for you to worry about 🙂
Thank you for responding and apologies for the alarm.
Best,
Bira