cefiar
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] How to Remove date on event pleaseThis is part of your WP theme.
You can use the following CSS to hide it appearing on event detail pages:
.single-ai1ec_event .postmetadata { display:none; }Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] What are these and how can I delete them?Very odd. Never seen them before.
Can you provide a link to your site, so I can look through the HTML and see what could be creating them?
Note: If you don’t want to make it public, perhaps you could extract the relevant section of the HTML source that the site produces and paste that instead? Remember to wrap it in code tags.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Shortcode to display a spefic month?You can either:
1. Use shortcode and set the start date to be the 1st of that month. This has only just been added recently, and it seems the shortcode hasn’t been added to the list. The code is:
[ai1ec exact_date='1-10-2014']BTW: I haven’t tried it, so I can’t tell you if it’s dd-mm-yyyy or mm-dd-yyyy (it may even be dependant on your WP date config). A bit of experimentation will reveal that.
2. Change the default for the whole calendar to start with that date by changing the value in Dashboard->Events-Settings –> Viewing Settings next to Default calendar start date (optional).
Look in Dashboard->Events->Settings –> Advanced->Shortcodes for a list of other shortcodes and their options. You can combine shortcode options together – just use
ai1econce, and separate the options by a space.Hope this helps.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] List events form a categorySince 2.0, $ai1ec_events_helper is gone.
2.0 was rewritten from the ground up, so examples using it won’t work.
Try looking through some of the posts in the Time.ly Developer forum at https://time.ly/forums/forum/developer-forum/
There might be something of use for you in there.
If you have all the events in Google already, and you want to use the calendar for everything from now on, you can import them then delete the feed.
When you delete the feed, it will ask you if you want to delete or keep the events, so just select to keep them.
From then on, you can edit everything in the calendar.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Fatal Errors on Upgrade to v2.0.13Can you try 96M then?
BTW: The default for PHP 5.2.1 and above is now 128M. Hosting providers try and limit this in order to squeeze more and more sites onto a specific piece of server hardware. Your hosting provider may find that more and more PHP code out there will require larger amounts of memory than they seem willing to provide.
If you’ve got unused plugins, you might consider turning them off and/or deleting them, as they will use extra memory, even if you don’t seem to be using them. A useful tool for checking memory usage is the WP-Memory-Usage plugin – https://wordpress.org/support/plugin/wp-memory-usage – Once you’ve used it, it’s advisable to disable it, so it doesn’t slow down the admin console (or used a few bytes of precious memory).
Note: PHP is now up to V5.5.17 is out, and PHP 5.6.0 is just around the corner.
PS: I just had a site WITHOUT Ai1ec go from using just under 64M to just over 64M when going from WP 3.9.2 to WP 4.0. YMMV.
Time.ly usual response to this error is the following:
Please change the permission of these two folders: /wp-content/plugins/all-in-one-event-calendar/cache/ and /wp-content/plugins/all-in-one-event-calendar/cache/twig to 775(or 777). This should fix the issue.
(Note: Taken from their own web forum – https://time.ly/forums/topic/fatal-error-on-activating-plugin/ )
It overwrites local changes as there is currently no way to tell if the feed itself has changed (eg: the date/time/details of the event has changed in the feed) as opposed to by someone editing them locally.
This feature has been requested a number of times by a number of people, so it’s on Time.ly’s radar – But other stuff that has been on the radar for longer is getting precedence.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Ai1ec messes up social share iconsThe plugin is not stripping HTML and non-allowed characters from the page title before using it in HTML attribute fields.
Which plugin are you using, as it may have a setting that can help, or there might be another less invasive work-around.
As a work-around, you can edit …../all-in-one-event-calendar/lib/http/response/render/strategy/html.php and comment out line 100 by changing:
$title = '<span class="p-summary">' . $title . '</span>';To:
// $title = '<span class="p-summary">' . $title . '</span>';Note: This breaks support for the Microformats2 spec, but it solves your issue. It also will come back when you upgrade the plugin to the next version, so you’ll need to make the change again and again till the author fixes their plugin.
What version of Ai1ec are you running, as this error is for an older version of the plugin.
If you are using a 1.1.x version of the plugin, edit the file referenced, comment out line 160 and try again.
Note: The error message will stay till you hit the Dismiss button. It will not go away of it’s own accord.
You’ve got 128MB allocated, and the way you’ve got it set up it seems to need more.
Have you tried going to a higher value like 160MB or 192MB?
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Event detail (Not found)You could try saving your permalinks.
Go to Dashboard->Settings->Permalinks and without changing any settings hit the Save Changes button.
Is the other admin using the Visual editor or the Text editor in WordPress (Visual/Text tabs when editing)?
Also, are you using the Visual Composer plugin at all?
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Popups make events disappearThis could either be Javascript or CSS.
What theme are you using on your site?
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Plugin not working on live serverWhite screen usually indicates that you’ve got error messages turned off. A fairly common error that gets hidden this way is running out of PHP memory (eg: your PHP memory limit is too low).
Note: A lot of webhosts reduce the PHP memory limit from the defaults that PHP ships with to allow them to run more websites on their hosts.