stoicattempt
Forum Replies Created
-
Thank you!
Forum: Plugins
In reply to: [Multiple Domain] Does the plugin work well with Yoast SEO?Thanks!
Forum: Plugins
In reply to: [Tag Pages] Re-opening topic: Show tags in meta in head?Hi!
Thanks for your reply.
I got the job done with a code snippet from a StackExchange developer called Milo. This is what I’ve added to my child theme’s functions.php file, it is what I’m using to print the tags in my <body> classes:
function add_tags_to_body_class( $classes ) { if( ( is_page() || is_single() ) && $tags = get_the_tags( get_queried_object_id() ) ){ foreach( $tags as $tag ) { $classes[] = $tag->name; // $classes[] = 'tag-' . $tag->name; } } // return the $classes array return $classes; } add_filter( 'body_class', 'add_tags_to_body_class' );Regards,
Forum: Plugins
In reply to: [Contact Form 7 reCAPTCHA Extension] CF7 shortcode not displaying@jberg1 sweet bugfix
Forum: Plugins
In reply to: [WP Booking System - Booking Calendar] AlertsI believe forwarding bookings by email is done by adding an email address to a form from within the WP Booking administration menu.
Hi Cory,
To answer your questions:
– I doublechecked all the paths
– I tried manual browsing to paths
– I checked in 3 different browsers.
– I DO have ad blocking software installedI’ve duplicated the site manually.
Hope you won’t hear about this bug again from other users, sir.
I’ll try the plugin again next year.
Kind regards,
flo
Forum: Plugins
In reply to: [Tumblr Widget] [Plugin: Tumblr Widget] is there any shortcode ? to usehi – I have the same problem
your functions are well defined, but how do I implement it into a page?
after activating the plugin, I create a new WP page and add the code [Tumblr-Widget Your Tumblr=’url……’] to the HTML, but no response – how do we kick off using the plugin?
any example code for us?
many thanks