dunc_sf
Forum Replies Created
-
The one on the bottom image in the link I sent you. This screenshot: https://imgur.com/mr5HEfj
It appears when you Activate the plugin, but it didn’t redirect me here after Upgrade.
If I click the tick-box on the “Notifications” page, everything is fixed – so yeah, that’s your issue.
No problem Jack – here you go: https://imgur.com/a/JpgTd
Ah, you’ve done it already!! You legend ?? That’s phenomenal support.
For anyone visiting this thread in future, you can now use
[current_date]
and[current_time]
which will display in the way that you’ve set WordPress to display dates and times (Settings -> General).Thanks Jack, that would be great. Ideally, just some PHP-esque formatting would be ideal, as per my original post.
Thanks for the quick reply.
No, it seems not to.
It outputs as
2017-08-09 17:35:22
where my WordPress settings as they are at the monet should output9th August 2017, 2:07pm
.I’ve just noticed I’m actually using
[post_date_gmt]
. What’s the difference between the two codes? Should I just be using[post_date]
?Forum: Hacks
In reply to: Adding TinyMCE custom buttons when using teeny_mce_before_initI’ve tried using the following filters to no avail:
function register_tcustom_button($buttons) { array_push($buttons, "|", "highlight"); return $buttons; } function add_tcustom_tinymce_plugin($plugin_array) { $plugin_array['highlight'] = WP_PLUGIN_URL . '/sf-tinyMCE-custom-buttons/mce/min_max_buttons/editor_plugin.js'; return $plugin_array; } add_filter("mce_external_plugins", "add_tcustom_tinymce_plugin"); add_filter('mce_buttons', 'register_tcustom_button');
Anybody know why that won’t work?