Bruce
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
I’ve had this same problem with the default products page not displaying my Yoast SEO settings – This simple solution worked for me:
Go to (Yoast) “SEO” > “Titles & Meta’s”
Click on the “Post Types” Tab
Scroll to the bottom and find “Custom Post Type Archives” and enter your SEO title and SEO Description under the Products fieldsYour products landing page will now show the correct SEO info – This hack doesn’t affect my other single product pages and product category pages, and worked perfect for me.
I presume this oversight is intentional from Yoast as there is a “PREMIUM” Yoast WooCommerce SEO that fixes this “perfectly” hmmmmm 😉
Forum: Plugins
In reply to: [Author Bio Box] Google Authorshipforeach ( $social as $key => $value ) { $rel = ''; if ('googleplus' === $key) $rel = ' rel="author"'; if ( ! empty( $value ) ) $html .= '<a target="_blank" href="' . esc_url( $value ) . '" class="bio-icon bio-icon-' . $key . '"' . $rel . '></a>'; }Forum: Plugins
In reply to: [Author Bio Box] Google Authorshiprel=”author” needs to be placed on the G+ icon anchor tag – not on the author title where it currently is…
<div id="author-bio-box"> <h3><a href="http://wordpress.com/author/name/" title="" rel="author">Author Name</a></h3> <div class="bio-gravatar"><img alt='' src='' class='avatar avatar-70 photo' height='70' width='70' /></div> <a target="_blank" href="https://www.facebook.com" class="bio-icon bio-icon-facebook"></a> <a target="_blank" href="https://twitter.com" class="bio-icon bio-icon-twitter"></a> <a target="_blank" href="https://plus.google.com/+AuthorName" class="bio-icon bio-icon-googleplus"></a> <!-- // Should be in G+ anchor // --> <p class="bio-description">...</p> </div>
Viewing 3 replies - 1 through 3 (of 3 total)