The Quintessential Mind
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] PHP warning preg_match()Hi,
One of my developers probably added these 3 lines:
*?tve=true
*?cpo_options=1
*?et_fb=1Do you have any idea what they refer to?
Forum: Plugins
In reply to: [Last Modified Timestamp] Formating of the date and timeThat worked great! Thank you!
Is there also a way to display the whole name of the month instead of the short version?
For instance, I want to display September instead of Sep
Thank you in advance.
Forum: Plugins
In reply to: [Last Modified Timestamp] Formating of the date and timeSo, what I did, was to install your plugin and then I went to content.php and added the following code before the beginning of the post:
<span class="last-update" style="background-color: #fffdd4;">Last updated on </span><span class="update-date" style="background-color: #fffdd4;"><?php echo get_the_last_modified_timestamp() ?></span>
Forum: Plugins
In reply to: [Last Modified Timestamp] Formating of the date and timeThank you so much for that but I do not use the shortcode inside the post but outside, in the admin area, so I need to tweak the php code.
I have used your filter in the functions.php:
function my_lmt_defaults( $d ) { $d['contexts']['messages']['timef'] = 'H:i'; return $d; } add_filter('last_modified_timestamp_defaults','my_lmt_defaults');
Is there a way to add sth there?
You can see here for example: https://thequintessentialmind.com/in-praise-of-indulgence/
Forum: Plugins
In reply to: [Last Modified Timestamp] Formating of the date and timeHi,
Thanks for the guidance but the FAQ section is a bit too complicated for my PHP knowledge.
Is there an easier way to just remove the time?
Thank you in advance. ??
Forum: Plugins
In reply to: [Easy Footnotes] Click instead of hoverIgnore the last one! Fixed it.
hide: ‘unfocus, click’, is the solution. Thank you.
Forum: Plugins
In reply to: [Easy Footnotes] Click instead of hoverI did that but I would also like the bubble to close whenever I click anywhere. How do I combine click and unfocus in the same script?
$(document).ready(function()
{
// Show tooltip on all <a/> elements with title attributes, but only when
// clicked. Clicking again will hide it.
$(‘.easy-footnote a’).qtip({style: {
classes: ‘qtip-bootstrap’
},
show: ‘click’,hide: {
event: ‘unfocus’,
fixed: true
}
});
});When I do that click doesn’t work.
Forum: Plugins
In reply to: [Easy Footnotes] Click instead of hoverThanks so much! You are awesome.