cefiar
Forum Replies Created
-
There is a memory requirements section in http://time.ly/document/user-guide/getting-started/pre-sale-questions/ but IMO it really needs it’s own page in the troubleshooting area, rather than being part of the pre-sale questions.
There’s also a lot of things that could go in there that might prove useful (eg: pointing at possible theme or plugin conflicts if you still get out of memory errors no matter how large you set the memory, etc).
Q: I don’t really care about the dashboards, but the annoying warning that comes up on every admin page saying:
Failed to fetch the new data from Google Analytics. Please reauthenticate on the settings page!
… is quite annoying and has got me a few questions from the other admin users on one site.
Would it be possible to have a tickbox somewhere to turn off the dashboard entirely, so that it doesn’t even bother to show the Dashboard (disable Dashboard entirely) if you don’t want it? I currently use a Manual UA only, so if this was even a tickbox that wasn’t available till the manual UA was entered, then I’d be happy with that.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Afraid to upgrade from 2.1.5 to 2.1.9You could try the following:
Edit …../all-in-one-event-calendar/app/config/constants.php
On lines 371-376, you should see the following code:
if ( ! defined( 'AI1EC_REDIRECTION_SERVICE' ) ) { define( 'AI1EC_REDIRECTION_SERVICE', 'http://aggregator.time.ly/ticket_redirect/' ); }Comment out all those lines (put
//in front of each line).I think this should stop the redirections to the aggregator being created. Note that it may only apply to new or edited events, so YMMV.
Hope this helps.
Same thing for me when updating to 5.2.4 (from 5.2.3, which works fine).
Rolling back the plugin files gets me operational for the moment.
People who can’t roll back their own updates (eg: using a backup) might want to delete the directory google-analytics-for-wordpress (using FTP/cPanel) and then install 5.2.3 by uploading the .ZIP file.
You can find 5.2.3 (and older versions) at: https://wordpress.org/plugins/google-analytics-for-wordpress/developers/
Forum: Plugins
In reply to: [Social] Minimise CSS/JSAlready is. π
Anyway, just thought I’d mention it.
In the meantime I’ll either just replace them or just override it in my child theme to point to the minified versions.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Widget: switching from @ toYou probably want to try replacing it with
<br />(line break means nothing in HTML).If not, you really want to look into making a custom child calendar theme and copying …../all-in-one-event-calendar/public/themes-ai1ec/vortex/twig/agenda-widget.twig into the twig directory in your child calendar theme (if the twig dir doesn’t exist, create it).
In 2.1.5, you want to look for the following 4 lines:
{% if show_location_in_title and event.get( 'venue' ) is not empty %} <span class="ai1ec-event-location" >{{ text_venue_separator | format( event.get( 'venue' ) ) }}</span> {% endif %}Here you can directly alter the output and remove the separator.
You might want something like:
{% if show_location_in_title and event.get( 'venue' ) is not empty %} <span class="ai1ec-event-location" ><br />{{ format( event.get( 'venue' ) ) }}</span> {% endif %}Note: The
{{and}}denote twig code/calls. You want any html to be outside these. There’s a primer on twig at http://twig.sensiolabs.org/documentation (particularly Twig for Template designers).Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Print to PDF option?The Agenda view has a print button on it (and that works by itself), but none of the other views do.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] How to remove warning new version?BTW: Expect the Facebook exports to stop working in March or April 2015, when Facebook turn off the API which this version is using for everyone (not just new users as they’ve already done).
You might try changing the
u_cron()function in app/controllers/class-ai1ec-settings-controller.php that starts on line 261 and try changing it to this:function u_cron() { update_option( 'ai1ec_update_available', 0 ); update_option( 'ai1ec_update_message', '' ); update_option( 'ai1ec_package_url', '' ); }Basically: Delete lines 265 through to 287.
This should break the update check cycle.
Note: Make a backup of the file BEFORE you edit it, in case I’ve made a mistake. I’ve not tried this and I am not installing 1.10.x to test it either.
Same happens with Google Calendar FWIW, and I’ve had similar discussions with people complaining it’s not in “their” calendar.
This is a bug in either your theme, or a plugin. I’d be guessing the issue is with the theme.
See my post at https://time.ly/forums/topic/classp-summary-in-event-title/#post-147055 – It details the problem and a work-around till your theme can be fixed.
I don’t work for Time.ly, but as far as I’m aware, this is a limitation in Outlook.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Folders "time_limit" overloading the hostThese sound like you’re using a WP cache plugin of some sort.
It’s probably best to avoid caching any of the Ai1ec paths, as they’re all created by code and related to date. In effect, they link to each other infinitely, so a cache can never properly cache everything.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Calendar showing up as htmlWhich version of Extended Views do you have installed?
Core V2.1.5 needs Extended Views V1.1.0, as there was a change to the API that the add-ons used during V2.1 of Core.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Calendar showing up as htmlSomething is reformatting the output from the calendar.
It’s adding
</p> and
` tags after every line, even when it’s in the middle of another HTML tag.eg:
<div data-term="278"<br /> ><br /> <a class="ai1ec-load-view ai1ec-category"<br /> data-type="jsonp"<br /> href="http://new.onc.org/calendar/action~stream/cat_ids~278/"><br /> <span class="ai1ec-color-swatch-empty"></span><br /> 1-Ski<br /> </a> </div>This should be:
<div data-term="278" > <a class="ai1ec-load-view ai1ec-category" data-type="jsonp" href="http://new.onc.org/calendar/action~stream/cat_ids~278/"> <span class="ai1ec-color-swatch-empty"></span> 1-Ski </a> </div>This is either a plugin that reformats your pages for you that is not doing it’s job, or a theme conflict of some kind.
I’d work my way through the troubleshooting steps and see if you have a them or plugin conflict: http://time.ly/document/troubleshooting/first-troubleshooting-step/
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Custom Details PageThis depends what you mean.
There are two ways to put the calendar on a page.
1. Select it as the default calendar page. This adds the calendar to the end of the page defined. You just need to select the page you want in the calendar settings and it should be added after whatever text is on that page. If there’s no text on that page, then it will be the only thing on the page. Any settings you configure as the defaults will apply to this page.
2. You can embed it using shortcode to display the calendar on another page of your choosing. It won’t be the default calendar, but it will be viewable. You can also set different options to the above defaults, so that they display different things/views/etc.
Notes:
The Upcoming Event Widget can be added to widget areas but isn’t available as a shortcode. If you want to embed the widget in a non-widget area, you need to use a WP plugin like Widgets on Pages to do so.
You can use CSS to turn off various parts of the calendar (eg: the view selection pull-down, the date navigation bar, the category and/or tag selection pull-downs) to customise the way it looks. This is very useful when providing different groups of events on different pages. You need to key the CSS to the page in question, but this usually isn’t hard to do, and people here (or on the Time.ly forum) will happily help if you provide a link to your site.