cefiar
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] TranslateHave you looked at https://translate.time.ly/projects/timely/all-in-one-event-calendar ??
Note: The files for V2.1.4 should work fine with V2.1.5.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Popups make events disappearThis is definitely a theme conflict of some kind.
Related note: If you move the mouse away from the event OVER the mouse-over (rather than away from the event) the event does NOT vanish.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Single event view, too many columnsFollow the documentation on creating a child calendar theme: http://time.ly/document/customize-calendar/create-new-calendar-theme/
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Single event view, too many columnsIf a file isn’t present in a theme, then it falls back to the Vortex theme.
Gamma is a bare-bones theme that simply provides some CSS changes on top of Vortex. The twig files will all be in the twig directory in the Vortex theme.
Note: If you want to override a file in a calendar child theme to do nothing, simply create a blank (0 byte) file with the appropriate name.
eg: If you wanted to remove popups completely, you can create a blank file called event-popup.twig and this will stop the theme falling back to the default file in Vortex.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Single event view, too many columnsYou can either change it using CSS, or you can create a calendar child theme and change it by editing event-single.twig (copy the default version from the vortex theme) to change the behaviour of how it looks.
The default calendar page is just that, the default.
The shortcodes are so you can directly embed a calendar in other pages (ie: not the calendar page).
Note: The “Back to Calendar” button goes back to the default calendar page. If you don’t want to use the default calendar page, then you probably want to disable this button and implement your own button/link.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] ini_set errors killing disk spaceIf it’s working without the ini_set() function on your site, then you could simply try commenting it out.
Note: There is only the one occurrence of ini_set, and it’s on line 81 of all-in-one-event-calendar.php. The line is:
@ini_set( 'unserialize_callback_func', 'spl_autoload_call' );Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Calendar Views Button Says "Array"Note: As per my post on the forum, this doesn’t resolve the problem, but it hides the issue so that web-girl can use the plugin for the moment in a limited way.
It’s a work-around for the issue, which still needs to be addressed by Time.ly. Hopefully that will happen soon, or the underlying bug will be fixed in a later version of Ai1ec.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Internal Server Error on InstallCould you be running low on PHP memory?
You can use a plugin like WP-Memory-Usage to see what your limits and “average” memory usage are. https://wordpress.org/plugins/wp-memory-usage/
If you’ve got <16MB overhead between average memory usage and your memory limit, then I’d raise your memory limit.
This should be the same process as for any blog post using the WP theme you’re using.
You might try enabling the option In Agenda-like views, include all events from last day shown which is in Dashboard->Events->Settings –> Viewing Events tab.
Don’t know if it will help. Events usually expire as soon as they’re past.
One of the most common causes of issues with Ai1ec tends to be memory limits.
Try using something like WP-Memory-Usage to see how much memory is free on your site, and what your memory limits are. As it’s a plugin, it’ll see these limits from the WP/Plugin perspective.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] How to display upcoming widget in pageIf you want to use the Widget in a page, then you need to use a plugin that will allow you to embed a widget in a page like Widgets In Pages.
You can find some detail on installing translations at: http://time.ly/document/customize-calendar/translations/
There is also this manual on how to install translations written by a user (before the other one became available): https://time.ly/forums/topic/translation-install-manual/#post-102177
It’s coming from
.ai1ec-month-view .ai1ec-day-stretcher, which is 94px high. There is 1px of padding that you can also probably get rid of, but I couldn’t easily see where it was defined. So you just need to define the height as 39px to get 40px total.Try:
aside .ai1ec-month-view .ai1ec-day-stretcher { height: 39px; }Also, if you want to hide the date part completely, use this as well:
aside .ai1ec-month-view div.ai1ec-date { height: 0px; display:none; }PS: If you don’t want to hide the date, this is probably where you’d change how it looks.