kiwihawk
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Photo Gallery] Photo Details Page Title>> I was thinking that H1 entry-class should include <album name> instead of just the text Photo Detail
Has this ever been resolved or does someone know how it can be done. In particular I would like to change the color of the title and as above if the album name can be added then all the better.
Forum: Plugins
In reply to: [Social Media Share Buttons] Error 403 Access DeniedI tried turning off all the plugins – but the error is still there.
Forum: Plugins
In reply to: [(Simply) Guest Author Name] Author URLThank you. Its the only place I need this to happen, so I am quite happy to wait and see if you can sort it in a future version. Not really that important, I just put a link inside the post instead.
Forum: Plugins
In reply to: [WP User Activity] [Feature Request] Button to clear all activity logsForum: Plugins
In reply to: [Social Auto Poster] Will not postAny chance of any support for this or is it best to just change to a different plugin?
Forum: Plugins
In reply to: [Social Auto Poster] Will not postThere is nothing showing in the log file either.
Forum: Fixing WordPress
In reply to: Edit LanguageThank you, that worked a treat. And it got me to thinking about adding a little bit of magic to it.
function howdy_message($translated_text, $text, $domain) { $message = public_holiday(); $new_message = str_replace('Howdy', $message, $text); return $new_message; } add_filter('gettext', 'howdy_message', 10, 3); // function public_holiday() { $date = date('d-m'); switch($date) { case '01-01': $message = 'Happy New Years'; break; case '21-06': $message = 'Happy Yule'; break; case '21-12': $message = 'Happy Summer Solstice'; break; case '25-12': $message = 'Merry Christmas'; break; default: $message = 'Kia ora'; } return $message; }