Hi,
This plugin looks very nice and very useful but it doesn’t work on my website : nnly comments relatives dates appear. I see other topics in this forum with the same problem and no answer. Any idea?
Thanks a lot
J
This plugin works fine when we have single subset of time.. like
‘Today’, ‘Yesterday’, ‘2 Days Ago’, ‘2 Weeks Ago’, ‘2 ‘Seconds Ago’, ‘2 Minutes Ago’, ‘2 Hours Ago’
But in my site i need time in 2 subset for example
12 Min & 34 Sec ago
2 Hour & 4 Min ago
2 Days & 9 hrs ago
1 month & 3 days ago
Is there any way to show this ?? please HELP.. ??
]]>Hi
is this plugin have a loop for display any post from custom time?
I have Installed this Plugin and it was not showing date in TIME AGO. There is no change after installing this plugin. Yes but my Comments are showing TIME AGO FORMAT.
So is there any short code available ??? so that i can use that short code in my post loop….
]]>The problems:
– lots and lots of unnecessary repetition. Seriously, the code could have been 1/4 of the size and complexity
– filters are forced and added automatically – the plugin forces itself onto 4 date formats widely used in WordPress. I had to turn them all off manually and then call appropriate functions by hand, as it was messing with existing dates:
// Remove all automatic RelativeDate plugin functions
remove_filter('the_date', 'relative_post_date', 999, 4);
remove_filter('the_time', 'relative_post_time', 999);
remove_filter('get_comment_time', 'relative_comment_time', 999);
remove_filter('get_comment_date', 'relative_comment_date', 999);
– after all this, there is actually no function to convert a given date to relative date on the fly – there is no way to pass anything to the plugin, as it only contains a few prebuilt functions
All of the above is quite upsetting, since I respect you as a developer and you’ve written many plugins. I hope one day you decide to evolve it and take it to the next level.
https://www.ads-software.com/extend/plugins/wp-relativedate/
]]>