Boost Medical
Forum Replies Created
-
Forum: Plugins
In reply to: [Broken Link Checker] 503 Service UnavailableAny fixes yet? Google map links keep breaking every hour on all sites. Very annoying. Might have to switch plugins because of this.
Screenshot here: https://jumpshare.com/v/797844QxuXiSpBUQ9xcX?b=3WHZzefy2mAcpw03GnnA
This has been an ongoing issue for us. Constantly pending… I am using WP-Rocket caching plugin and have excluded the sitemaps from caching. Also my sitemaps have 0 errors.
Forum: Fixing WordPress
In reply to: RSS Feed BrokenOk, nevermind… We figured out we can pull individual feeds for each categories and so we set the general overall limit back to 10. And here is function to override general limit.
function custom_rss_limits($limits) { if (is_feed() && is_category(‘category-slug’)) { // target a specific feed category and set a unique limit return "LIMIT 0, 20"; } else { // It's not a feed; leave the normal LIMIT in place. return $limits; } } add_filter('post_limits', 'custom_rss_limits');Hopefully that helps someone.
Forum: Plugins
In reply to: [Analyticator] Google Universal Analytics Support?Wondering about any updates on this?