Matt Rittman
Forum Replies Created
-
Okay I think I figured out what the issue was! I had some code in my functions.php file to only show the reCAPTCHA badge on pages with a contact form. Apparently they want the badge on every page of the site. Not exactly sure why. Either way, things are working as they should now! No error message, and my stats are higher, since it’s counting the homepage. π
Yep!
Ooops! Yep sorry here it is haha
Yes, here is both the home page and contact page: https://imgur.com/a/RJ8p6I2
Do you know if the reCAPTCHA badge needs to be on every page of the website? Before, I only had it on pages that contained CF7 forms…
Alrighty thank you Takayuki π
@adamdunnage thatβs excellent news! Thanks so much for the quick reply π Looking forward to the updated dashboard stats.
Yeah, unfortunately these kinds of things can be a headache to pinpoint π
I’ve also got Akismet, Wordfence, recaptcha, and a caching plugin. Like you said, it could even be my web host. At least with the plugin you suggested, I can see what submissions are not coming to my email. Nonetheless, thanks so much again @arcticblue, I really appreciate your help!
Oh that’s quite handy! Thanks so much @arcticblue π
Okay no worries @adamdunnage! I sure appreciate the quick response π
Thanks @adamdunnage, I am just seeing this now that Site Kit doesn’t support displaying GA4 analytics quite yet. However, you mention that clicking the Source: Analytics link should take you to your GA4 dashboard on Google Analytics, but it still links to the old Universal Analytics.
Forum: Plugins
In reply to: [JC Submenu] Output additional taxonomy nameAny update on this? I would be happy to supply more information if need be.
Forum: Developing with WordPress
In reply to: Tag Cloud ShortcodeI don’t really understand the whole echo thing lol. I went ahead and added it to my arguments array, but it didn’t seem to change anything. What does it do that I’m not seeing? Yeah, I have a taxonomy, but I just removed it for the sake of this thread π
Thanks @bcworks!
Forum: Developing with WordPress
In reply to: Tag Cloud ShortcodeNevermind, I think I figured out a solution but using this code instead:
function my_cloud() { if (function_exists('wp_tag_cloud')) return wp_tag_cloud(array( 'smallest' => 9, 'largest' => 20, 'unit' => 'pt', 'number' => 10, 'format' => 'list', 'separator' => "\n", 'orderby' => 'name', 'order' => 'ASC', 'link' => 'view', 'taxonomy' => '', 'show_count' => 0, )); } add_shortcode('popular_tags', 'my_cloud');- This reply was modified 8 years ago by Matt Rittman.
- This reply was modified 8 years ago by Matt Rittman.
Forum: Developing with WordPress
In reply to: Tag Cloud ShortcodeActually you know what, I don’t think the function wp_generate_tag_cloud allows for a custom taxonomy. So how would I edit the code to only pull tags from a specific taxonomy?
Forum: Developing with WordPress
In reply to: Tag Cloud ShortcodeHmmm very strange! Well thanks for letting me know itβs working on your end. It must be something to do with my theme maybe? I have two custom taxonomies and I know Iβm using the right ones. Is there any way to debug it to see where the problem might be?