Hello,
Great little plugin.
The first day of the week on the date picker is always Sunday, even though I have the WordPress setting to Monday and a locale where the first day of the week is Monday… and Zebra Datepicker’s code also shows the setting to be 1 (Monday). Any idea why this might be happening?
Thanks
]]>Works fine, but with WP_DEBUG enabled, I get an error in the date range fields:
<b>Notice</b>: Undefined variable: start_date in <b>/wp-content/plugins/posts-date-ranges/main.php</b> on line <b>193</b>
<b>Notice</b>: Undefined variable: end_date in <b>/wp-content/plugins/posts-date-ranges/main.php</b> on line <b>193</b>
should be an easy fix!
]]>Hi,
First of all, thanks for the plugin. It’s the only plugin I found that has flexible date filter.
I’d like to request a feature for filtering by author. This is useful for finding out how many articles an author has produced in a particular period of time.
Thanks
]]>You must add the following hours on line 27 and 32 to correctly choose end date.
$start_date=$_REQUEST['start_date'];
$where .= " AND post_date >='$start_date 00:00:00' ";
}
if(isset($_REQUEST['end_date'])&&!empty($_REQUEST['end_date']))
{
$end_date=$_REQUEST['end_date'];
$where .=" AND post_date <='$end_date 23:59:59' ";
}
Regards
]]>Hi,
I installed the plugin but have no idea where to definie the End Date. The Start Date might be the scheduled Date of the post.