noah_eventbrite
Forum Replies Created
-
Hi enbient,
The Dev Team will return from vacation at the end of the week. I’m sure they will provide assistance when they return. In the meantime, does anyone else have any ideas?
Thanks,
– Noah
Forum: Plugins
In reply to: [Plugin: The Events Calendar] template issueHey pankus,
The Dev Team will return from vacation at the end of the week. I’m sure they will provide assistance when they return. In the meantime, does anyone else have any ideas?
Thanks,
– Noah
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Any “Events” views break themeHey valerama,
I’m not sure what is causing this issue. The Dev Team will return from vacation in one week. I’m sure they will provide assistance when they return. In the meantime, does anyone else have any ideas?
Thanks,
– Noah
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Calendar Stretches To FarHey Everyone,
Just a friendly reminder that the Dev Team will return from vacation in one week. I’m sure they will provide assistance when they return. In the meantime, does anyone else have any ideas?
Thanks,
– Noah
Hey Everyone,
Just a friendly reminder that the Dev Team will return from vacation in one week. I’m sure they will provide assistance when they return. In the meantime, does anyone else have any ideas?
Thanks,
– Noah
Hey mattyshack,
Just a friendly reminder that the Dev Team will return from vacation in one week. I’m sure they will provide an answer when they return. In the meantime, does anyone else have any ideas?
Thanks,
– Noah
Forum: Plugins
In reply to: [Plugin: The Events Calendar] RSS Feed for the CalendarHey jaybna,
Just a friendly reminder that the Dev Team will return from vacation in one week. If there is a work-around for this issue, I’m sure they will provide an answer when they return. In the meantime, does anyone else have any ideas?
Thanks,
– Noah
Forum: Plugins
In reply to: [Plugin: The Events Calendar] installationHey inairam,
I was unable to reproduce the issue you are experiencing. Were you able to get it fixed?
– Noah
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Transparent postsHey HorrorUK,
I was unable to find a page with a transparent background via that URL. Are you still experiencing this issue? Could you provide a direct URL to one of these pages with a transparent background?
Thanks,
Noah
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Events for today show up as “past”Hey Everyone,
Just a friendly reminder that the Dev Team will return from vacation in one week. If there is a work-around for this issue, I’m sure they will provide an answer when they return.
Thanks,
– Noah
Forum: Plugins
In reply to: [Plugin: The Events Calendar] How to traslate months?Hey Jiri,
I am not a coder, but I think this may help. I think you can replace the names of the months by editing the-events-calendar.php file. It worked for me to just change the names of the months in the code below:
/**
* Helper method to return an array of month names
*/
public function monthNames( ) {
$months = array( 1 => ‘Jan’, 2 => ‘February’, 3 => ‘March’, 4 => ‘April’, 5 => ‘May’, 6 => ‘June’, 7 => ‘July’, 8 => ‘August’, 9 => ‘September’, 10 => ‘October’, 11 => ‘November’, 12 => ‘December’ );return $months;
}/**
* Helper method to return an array of 1-31 for days
*/– Noah