Hunter Nelson
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Repeatedly Prompted To Start SEO Data OptimizationNot that I’m aware of. Beaver Builder creates new layouts on pages and I have noticed when I edit my templates I am re-prompted. There is no custom post type that’s new that’s created though.
Forum: Plugins
In reply to: [Yoast SEO] Error In Uname From Helpscout BeaconI tracked this down to an incompatibility with php 8.1 I worked with my host to get PHP downgraded to 7.4 which resolved the issue.
Forum: Plugins
In reply to: [Yoast SEO] Error In Uname From Helpscout BeaconJust for troubleshooting help, I tried disabling all plugins except yoast and reverting to both 2020 and 2022 theme. The issue still persists after taking all these steps.
Forum: Plugins
In reply to: [Yoast SEO] Error In Uname From Helpscout BeaconI see some filters here in the code that look like you may be able to change a setting, but I’m not sure how to edit it:
protected function filter_settings() { /** * Filter: 'wpseo_helpscout_beacon_settings' - Allows overriding the HelpScout beacon settings. * * @api string - The HelpScout beacon settings. */ $filterable_helpscout_setting = [ 'products' => $this->products, 'pages_ids' => $this->pages_ids, ]; $helpscout_settings = \apply_filters( 'wpseo_helpscout_beacon_settings', $filterable_helpscout_setting ); $this->products = $helpscout_settings['products']; $this->pages_ids = $helpscout_settings['pages_ids']; }
Forum: Plugins
In reply to: [SVG Support] AccessibilityHey there, I also wanted to add a +1 to the accessibility feature. Just FYI, Canada is making it a requirement for businesses to certify accessibility and submit a certification form to the government by June 30. There is going to be a lot more interest in getting accessible SVGs together. We really need to have the alt text translated to a
<title>
element and included with an aria labled by.See this stack overflow answer:https://stackoverflow.com/questions/4697100/accessibility-recommended-alt-text-convention-for-svg-and-mathml
Forum: Plugins
In reply to: [AddToAny Share Buttons] Chrome says about problem with plugin’s cookieRelease date for a fix is 02/04/2020 per:
https://www.chromium.org/updates/same-siteForum: Plugins
In reply to: [WordPress Importer] Failed to import mediaI’m still getting this issue too. Anyone found a resolution?
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Jump / Anchor Links BrokenI had to uninstall the plugin, it wasn’t meeting my needs. Sorry, good luck!
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Jump / Anchor Links BrokenCheck that, it looks like beaver builder (the go daddy website builder) auto converts hrefs to relative on save. It’s a losing battle to keep the links fully qualified. The amp link conversion code needs an update to accommodate the relative URL’s!
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Jump / Anchor Links BrokenI noticed that if the urls in the href are relative that the link is stripped in the amp pages. My site is small enough that this isn’t a huge deal but might want to look at not stripping relative urls e.g. href=”../myLinkedInternalPage”