ronbme
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Events Calendar] What’s wrong with my Event Calendar ?If you have tried ian72’s fix and it didn’t work, check to make sure that your host has cUrl turned on.
If not, you might want to ask your host why these are turned off.
Forum: Plugins
In reply to: [Plugin: Events Calendar] Events List and Big Calendar – problems with bothYour problem is probably the conflict with the cForms plugin. (There is also a conflict with the NextGen Gallery plugin.
You might want to try the new version on Heirem’s site:
http://heirem.fr/Forum: Plugins
In reply to: Events Calendar Error HelpCourtney,
Your host has turned this function off.
You might try the workaround found here:
http://wordpress.org/support/topic/179911This is a workaround using cURL.
Ron
Make sure you have the following in the footer of your theme:
<?php wp_footer(); ?>And also make sure you have the following in the header of your theme:
<?php wp_head(); ?>(If you copy and paste those, don’t forget to remove the ticks at the beginning and end.)
Forum: Plugins
In reply to: [Plugin: Events Calendar] Previous/Next month links appear, but don’t workIt looks like you are using EC3 and not the Events-Calendar. These are two different plugins.
Forum: Plugins
In reply to: [Plugin: Events Calendar] Day Numbers are OffsetYou are missing the following piece of code:
<td colspan=”6″ class=”pad”> </td>
If you use Firefox, you can use the “View Source” and see that this is missing.
That piece of code should be right before this:
<td><span id=”events-calendar-1″>1</span></td>
You might want to download the plugin again and reinstall it. If not, at least clear your browser’s cache.
Ron
Forum: Plugins
In reply to: [Plugin: Events Calendar] Events not showing up in large calendar or widgetMake sure you have the following in your theme.
<?php wp_head(); ?>
That should be before </head> in your header.php file.
You should also have the following:
<?php wp_footer(); ?>
That should be in your footer.php file.
Forum: Plugins
In reply to: [Plugin: Events Calendar] Can’t Activate!In the file “ec_js.class.php”, put slashes before the following:
(on lines 4 and 5)include_once(ABSPATH . ‘wp-includes/capabilities.php’);
include_once(ABSPATH . ‘wp-includes/pluggable.php’);So that it looks like this:
// include_once(ABSPATH . ‘wp-includes/capabilities.php’);
// include_once(ABSPATH . ‘wp-includes/pluggable.php’);Then save the file.
You will probably need to deactivate and then active the plugin.Ron
Forum: Plugins
In reply to: [Plugin: Events Calendar] What’s wrong with my Event Calendar ?gatineau,
It sounds like your host has file_get_contents turned off. Maybe for security reasons.
You can ask your host or you can install the wp-serverinfo plugin and check for yourself.
You could check and see if your host has cURL installed and turned on.
Ron
Forum: Plugins
In reply to: [Plugin: Events Calendar] Not compatible with NextGen GalleryMy guess is that, even though he has a function in there to avoid collisions, it is not working. Obviously the NextGen Gallery and the Events Calendar are colliding over the thickbox function.
Luke might have some ideas as to how to get around this.
Ron
Forum: Fixing WordPress
In reply to: [Plugin: Events Calendar] Events Disappearing/No Tables Created?That code is ok.
There should be another block of code further down that looks like this:
jQuery(function($) { $(document).ready(function() { $('#EC_previousMonthLarge').append("«Apr"); $('#EC_nextMonthLarge').prepend("Jun»"); $('#EC_previousMonthLarge').mouseover(function() { $(this).css('cursor', 'pointer'); }); $('#EC_nextMonthLarge').mouseover(function() { $(this).css('cursor', 'pointer'); });What does your code look like in the blocks that follow the above code?
Forum: Plugins
In reply to: [Plugin: Events Calendar] Not compatible with NextGen GalleryRight, I can understand that you want to keep the thickbox effect. You might also get other plugins that will want to use the thickbox effect. They will probably use the one which came with WP, so you will still have the conflict.
I would think the solution would be to change the NextGen Gallery plugin to use the thickbox which came with WP, but I haven’t gone through all the changes the author put in. Some of those might be needed for his plugin.
You mentioned changes in the thickbox when you had the Events Calendar and the NextGen Gallery both running. What were the changes in the thickbox? That might give a clue.
Ron
Forum: Plugins
In reply to: [Plugin: Events Calendar] Not compatible with NextGen GalleryThe Events Calendar uses the thickbox function which comes with WordPress.
NextGen Gallery is using a modified version of the same thickbox. That is probably why you are having a problem with the NextGen Gallery plugin and the Events Calendar plugin.Forum: Fixing WordPress
In reply to: [Plugin: Events Calendar] Events Disappearing/No Tables Created?isign4jc,
This sounds like a javascript problem, although the previous and next months would not be showing at all if that were the case.
Have you tried clearing your browser cache and made sure that javascript is turned on?
Forum: Fixing WordPress
In reply to: [Plugin: Events Calendar] Events Disappearing/No Tables Created?I’ll see if there is an alternate you can use. You are not getting any errors when you try to go to the next or previous month, are you?
As for your question about seeing the start time without hovering, no, there’s no way to do it right now. What you see in the large calendar are the titles.