jzo
Forum Replies Created
-
Forum: Plugins
In reply to: Future Posts on a page?Many thanks
Forum: Fixing WordPress
In reply to: Creating an “if exists” for custom field keysGood stuff,
Thank you guys.
Forum: Requests and Feedback
In reply to: [Plugin: Events Calendar] Link to existing postI did some more poking around and found the bit of code that builds the large calendar. It’s in ec_js.class.php:` <script type=”text/javascript”>
jQuery(function($) {
$(document).ready(function() {
$(‘#events-calendar-<?php echo $d;?>Large’).append(“<span id=\”events-calendar-<?php echo $id;?>Large\”><?php echo $title;?></span>
“);
$(‘#events-calendar-<?php echo $id;?>Large’).attr(‘title’, ‘<?php echo $output;?>’);
$(‘#events-calendar-<?php echo $id;?>Large’).mouseover(function() {
$(this).css(‘cursor’, ‘pointer’);
});
$(‘#events-calendar-<?php echo $id;?>Large’).Tooltip({
delay:0,
track:true
});
});
});
</script>`Forum: Requests and Feedback
In reply to: My profile in this forumDitto!
Forum: Requests and Feedback
In reply to: [Plugin: Events Calendar] Link to existing post*bump*
Yes, I agree… I think the sidebar calendar works great what with the pop-up events and all but the large calendar just doesn’t do it for me.
At this point the Events Calendar will add a post to the DB but it is inserted as unpublished… If events could be posted as published posts then it would only be necessary to link events in the large calendar to the corresponding post ID or whatnot. Right?