AaronWebstey
Forum Replies Created
-
Forum: Plugins
In reply to: [Co-Authors Plus] Incorrect author showing up in tag and headerI fixed the co-authors/guest author/Yoast facebook issue. Put this in functions.php or your site plugin.
// Fix guest authors FB issue
add_filter(‘wpseo_opengraph_author_facebook’, ‘my_wpseo_facebook’);function my_wpseo_facebook($fb) {
if(! function_exists(‘get_coauthors’) )
return $fb;$coauthors = get_coauthors($GLOBALS[‘post’]->id);
if (!is_array( $coauthors ) || empty($coauthors))
return $fb;foreach ( $coauthors as $coauthor ) {
if ( ! isset( $coauthor->facebook ) || empty( $coauthor->facebook ) )
continue;
return $coauthor->facebook;
}
return $fb;
}Forum: Plugins
In reply to: [Co-Authors Plus] Incorrect author showing up in tag and headerThis is great, thanks! Solves the author page problem.
Unfortunately, no solution to the FB problem. I feel like enough people use the Yoast plugin that it would make sense to try to fix this.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Have a trouble with js in pluginSame issue here. It’s killing other plugins that rely on js.
Forum: Plugins
In reply to: [DFP Ad Manager] Sidebar widgets not showing upThanks!! I saw the update. Next time I need to add an ad, I’ll try out the widget again (I’m just leaving my text widgets for now, to save time).
Forum: Plugins
In reply to: [DFP Ad Manager] What goes in 'code'?Scratch that, I’m an idiot. As soon as I tried to add more than one ad, that broke. I think I just was impatient waiting for DFP to make my ad live.
In summary, what you said did in fact work for me.
Thanks again!
Forum: Plugins
In reply to: [DFP Ad Manager] What goes in 'code'?FYI, I couldn’t get it to work with that code – I had to use this one.
Forum: Plugins
In reply to: [DFP Ad Manager] target window "_blank" not workingThanks for helping, even though it wasn’t the plugin’s fault. Double-impressed, and much appreciated.
I think my dfp target settings must have just taken a while to propagate through to the site (if that’s even a thing?), because it just magically started working overnight ??
Thanks so much again!
Forum: Plugins
In reply to: [DFP Ad Manager] What goes in 'code'?Thanks very much for the reply – impressive!
Loving the plugin – makes things so much easier. Thank you!!
Forum: Reviews
In reply to: [Fan Victor] I am legitimately a human user of this pluginBoo-urns to spammers. Thanks for letting me know.
Let’s just call it “a website that publishes podcasts, news and articles about triathlon, and also hosts fantasy triathlon, and you can see my name listed on the ‘Resources’ page to verify that I am in fact speaking from experience” ??
Forum: Reviews
In reply to: [Fan Victor] I am legitimately a human user of this pluginThanks! Oh, whoops – are we not supposed to include the URL where we’re using the plugin? Sorry about that.
Forum: Themes and Templates
In reply to: [Zerif Lite] Add captcha to contact formHi! I have recaptcha set up but it seems to be breaking my contact form. No console errors, just ‘an error occurred’ when you click ‘send message’ ??
https://www.webstey.com . I had to disable recaptcha so that people could still get in touch.