Hi
Can i use this plugin for custom post type?
Thanks
]]>i try to show future post in the calendar but doesn,t work. The calendar show’s the future post but when i made click in the link, the link is broken.
]]>Hi, plugin works fine whatever the category selected except with “all categories”. In this case no date are displayed and thus no link. Does plugin merge all categories ? Is there a limit of posts by month, I use to publish an average of 400 posts/month. Thanks for your assistance.
https://www.ads-software.com/extend/plugins/calendar-category/
]]>Here I explained how I harcoded the plugin in my functions.php archive.
Now, I want to share with all of you how to make plugin to work with Future Posts.
Just look at this part of the code:
// Get days with posts
$sql = "SELECT DISTINCT DAYOFMONTH(post_date)
FROM $wpdb->posts " . calcat_maybe_single_category_joins( $category ) . "WHERE MONTH(post_date) = '$thismonth'
AND YEAR(post_date) = '$thisyear'" . calcat_maybe_single_category_cat( $category ) . "
AND post_type = 'post' AND post_status = 'publish'
AND post_date < '" . current_time( 'mysql' ) . '\'';
Remove “AND post_date…”. The code have to look like this:
$sql = "SELECT DISTINCT DAYOFMONTH(post_date)
FROM $wpdb->posts " . calcat_maybe_single_category_joins( $category ) . "WHERE MONTH(post_date) = '$thismonth'
AND YEAR(post_date) = '$thisyear'" . calcat_maybe_single_category_cat( $category ) . "
AND post_type = 'post' AND post_status = 'publish'";
I hope it helps you!
ps: sorry for my english.
https://www.ads-software.com/extend/plugins/calendar-category/
]]>Is there a way to use the plugin as a template tag instead of a widget?
Thanks in advance.
https://www.ads-software.com/extend/plugins/calendar-category/
]]>Hello,
The Widget display calendar without link, and without next/prev month links too.
Thanks for help.
Mike
https://www.ads-software.com/extend/plugins/calendar-category/
]]>hi Gary,
I tried your calendar plugin and it is excellent.
i need it to show ONLY posts from specific categories and that is working well but the only thing is that if i click on the month link at the bottom of the calendar [Jan, Feb etc] – it returns a page showing all posts for that month.
Is there any way those month links can only show posts from the selected Category?
thanks
Phil
https://www.ads-software.com/extend/plugins/calendar-category/
]]>How would I make this plugin work with the No Future Posts plugin enabled? With that plugin enabled, the default calendar shows future posts. With yours, it excludes the future posts. Thanks in advance!
https://www.ads-software.com/extend/plugins/calendar-category/
]]>