springboard-seo
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Last Modified Info] Blog Archives Are Ordered by Last Modified by DefaultI just upgraded and it seems to be fixed, thanks Sayan!
- This reply was modified 4 years, 1 month ago by springboard-seo.
- This reply was modified 4 years, 1 month ago by springboard-seo.
Forum: Plugins
In reply to: [WP Last Modified Info] Blog Archives Are Ordered by Last Modified by Default*Bump*
Forum: Plugins
In reply to: [Breadcrumb NavXT] Structured Data Testing Tool Error@mtekk Incredibly (and I swear I’ve changed nothing) the Structured data testing tool no longer is giving me the errors. I wonder if they’ve changed/fixed the tool in the last day or so?
I’ve now requested Google Search Console to validate the “fix” although I’ve not changed anything. Hopefully GSC will also be clear of errors.
- This reply was modified 5 years, 2 months ago by springboard-seo.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Structured Data Testing Tool Error@mtekk These are my settings:
Page Template:
<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>
Page Template (Unlinked)
<span property="itemListElement" typeof="ListItem"><span property="name">%htitle%</span><meta property="position" content="%position%"></span>
I’m using version 6.3.0 if that matters?
- This reply was modified 5 years, 2 months ago by springboard-seo.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Structured Data Testing Tool Error@mtekk Could you suggest how I can keep the last item unlinked without errors? I’m really confused at this point.
I see you have it working on your site without errors: https://mtekk.us/code/breadcrumb-navxt/
If I need to edit my NavXT Post Template Settings, could you give me the code?
thanks,
-Matt
- This reply was modified 5 years, 2 months ago by springboard-seo.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Structured Data Testing Tool Error@mtekk If the current breadcrumb item is wrapped in a span, e.g., <span property=”name”>Auto Insurance</span>, can’t the missing attributes just be added in there?
Google Search Console just added an additional error today:
Missing field “id”
In addition to the original one of: Missing field “item”
- This reply was modified 5 years, 2 months ago by springboard-seo.
- This reply was modified 5 years, 2 months ago by springboard-seo.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Structured Data Testing Tool ErrorAnd NavXT Post Template Settings:
<span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to %title%." href="%link%" class="%type%"><span property="name">%htitle%</span></a><meta property="position" content="%position%"></span>
- This reply was modified 5 years, 2 months ago by springboard-seo.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Structured Data Testing Tool ErrorGibberish.
Yesterday I receive an error notice in search console related to the broken breadcrumbs:
and here’s the error in Google Structured Data Testing Tool:
Here’s a source example of the breadcrumb markup:
<div class="breadcrumbs" typeof="BreadcrumbList" vocab="https://schema.org/"> <span property="itemListElement" typeof="ListItem"><a property="item" typeof="WebPage" title="Go to Mitchell & Whale Ltd.." href="https://mysite.com" class="home"><span property="name">Home</span></a><meta property="position" content="1"></span> > <span property="itemListElement" typeof="ListItem"><span property="name">Auto Insurance</span><meta property="position" content="2"></span></div>
- This reply was modified 5 years, 2 months ago by springboard-seo.
Forum: Plugins
In reply to: [Autoptimize] Danger?My mistake – it’s at the top of every page in the WP editor https://imgur.com/a/3baeEpY
Forum: Plugins
In reply to: [Termly - GDPR/CCPA Cookie Consent Banner] Cookie Expiry 30 days??
I’m asking if the Cookie Expiry section of Cookie Consent refers to the app’s own cookie or Google Analytics cookies.
Forum: Plugins
In reply to: [WPRS Shortcodes] Have been emailing support for over a monthI paid for the WPRichSnippets plugin, which this addon is for. I’ve been in touch with him via email in the past, which is supposed to be a part of “high class support”. Thanks for your help, Jan.
- This reply was modified 6 years, 10 months ago by springboard-seo.
- This reply was modified 6 years, 10 months ago by springboard-seo.
Forum: Plugins
In reply to: [Plugin Organizer] Enable plugin for custom archiveThat worked – was I blind?
You’re plugin is pure awesomeness. Anytime I’m asked which WP plugins I wouldn’t want to live without, this is the first in line.
Much, much thanks.
- This reply was modified 7 years, 2 months ago by springboard-seo.
- This reply was modified 7 years, 2 months ago by springboard-seo.
Forum: Plugins
In reply to: [Plugin Organizer] Enable plugin for custom archiveIn other words, I want to be able to use Plugin Organizer to allow selective plugin loading for post archives.
- This reply was modified 7 years, 2 months ago by springboard-seo.
Only one test computer displayed this error for me, and the error messaged disappeared after I made two changes – but not sure which of the two was responsible. I have WP Rocket installed, but my fix didn’t involve making any changes to WP Rocket settings.
What I did to fix the error:
1. Disabled AJAX Submission
2. Made an exception in my custom functions.php JS defer script for form-submission-helpers.min.js, allowing it to load without deferring. The error then disappeared on the problem computer. I added this custom script because WP Rocket’s functionality was giving me problems when I first set up WP Rocket.
– Before exception:
<script type='text/javascript' src='https://mitchellwhale.com/wp-content/plugins/yikes-inc-easy-mailchimp-extender/public/js/form-submission-helpers.min.js' defer='defer'></script>
– After exception:
<script type='text/javascript' src='https://mitchellwhale.com/wp-content/plugins/yikes-inc-easy-mailchimp-extender/public/js/form-submission-helpers.min.js'></script>
Before the above steps, I cleared WP Rocket’s cache, but it didn’t fix the error message.
add_filter('aioseop_canonical_url','nocanonicalonnoindex', 10, 1); function nocanonicalonnoindex($url){ global $post; if( get_post_meta($post->ID,'_aioseop_noindex', true)){ return false; } return $url; }
This didn’t work for me. Still seeing the canonical:
<meta name="robots" content="noindex,follow" /> <link rel='next' href='https://myurl.com/category/auto-and-vehicle-insurance/page/2/' /> <link rel="canonical" href="https://myurl.com/category/auto-and-vehicle-insurance/" />
- This reply was modified 7 years, 11 months ago by springboard-seo. Reason: Improved formatting
- This reply was modified 7 years, 11 months ago by springboard-seo. Reason: Added details