morph3us
Forum Replies Created
-
Just wanted to chime in that I, too, experience the same problem.
Hello, thanks for the quick reply!! Also a big thanks generally for being so generous as to offer a free version of this plugin! I tested around 4 or so and found this one the best!
That said, I am a bit embarrassed… I was so sure that I got the same error message on all the different browsers I have, but actually its just in Vivaldi (a Chromium based browser). Even Chrome itself doesnt have this issue. As it seems to be a niche problem then, I will mark this as solved, as it wouldnt be feasible for you to support every goddam browser that exists! The panorama shows up fine, so no worries.
I am sorry for the disturbance!
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Moved from localhost to live serverOkay, I did what you said and reinstalling did kind of work…
Still, if you visit my website, you can see, that you can click on the left hand arrow, leading you to the next page, where it tells you it doesnt have anything to show you at all.
The right hand one is greyed out, as I only have three events scheduled right now, this is what i would like to see on the left side aswell.Any idea why this is happening?
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Moved from localhost to live serverNow it throws an error when trying to click on the arrows to access future events and has an activated left arrow button, even if there are no older events…
- This reply was modified 7 years, 10 months ago by morph3us.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Moved from localhost to live serverOkay, I was kinda scared to do it (because I feared that I dont know how much of the cache is gonna be rewritten), but was too desperate to not try it and changed the theme back and forth in the backend.
And it seems to work.Thanks!
I personally use Vivaldi, which is an offshoot of Chrome. But thats not the point, as the site is not only for myself.
I do see what you mean, it would be too much of a hassle just for that little bit of text. Too bad, but I will leave it as it is.Thank you for your assistance!
Hey, thanks for the reply!
Although its not the answer I wanted to hear… 🙁
Off the top of your head, do you see any possibility to overwrite it?I have poked around the code for a few solid hours now and must admit its over my knowledge and one ofthe last little things to fix before the site is done.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Layout screwed up after page flipThe customization is done. Everything looks like I want it when I (re)load the page.
It only gets ugly after trying to see the next three events. So the settings for the initial view are different ones than for subsequent pages (even if I go back to look at the first three events)…Thanks for trying to help, I will keep you posted if I find something useful…
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Layout screwed up after page flipThanks for the answer, I do however not understand how this information helps me…
As I stated, yes, I heavily customized the posterboard.twig file.I dont need to get any twig variables. I have everything I need done, as you can see in the upper part of the image, however after clicking the arrows (which are the standard ones that come with the posterboard view, but i deleted the minicalendar in the middle and placed them differently), it gets scrambled up. What does this have to do with any twig variables?
Hey guys,
i’m a little late to the party, sorry. But as I stumbled upon this thread because I had the very same problem and there was no solution available and as I have come up with a (admittedly pretty hacky) workaround, I thought I’d at least give some hints.
It totally works fine for me, though I am using the posterboard layout.Our work is going to be done in the agenda.twig (mine is the “posterboard.twig” located in the “C:\xampp\htdocs\mysite\wp-content\plugins\all-in-one-event-calendar-extended-views\public\themes-ai1ec\vortex\twig” folder, whereas yours would be somewhere at “C:\xampp\htdocs\mysite\wp-content\plugins\all-in-one-event-calendar\public\themes-ai1ec\vortex\twig”. Mind however, that I was dumb enough to edit the provided theme, so your path would be different, still.)
On line 15 you see where the month’ name is called.
It looks like this: <div class=”ai1ec-month”>{{ date_info.month }}</div>You can replace this line with the following code. You might need to edit the if clause according to your language settings.
<div class=”ai1ec-month”>
{% if date_info.month == “Jan” %}
01.
{% endif %}
{% if date_info.month == “Feb” %}
02.
{% endif %}
{% if date_info.month == “Mar” %}
03.
{% endif %}
{% if date_info.month == “Apr” %}
04.
{% endif %}
{% if date_info.month == “May” %}
05.
{% endif %}
{% if date_info.month == “Jun” %}
06.
{% endif %}
{% if date_info.month == “Jul” %}
07.
{% endif %}
{% if date_info.month == “Aug” %}
08.
{% endif %}
{% if date_info.month == “Sep” %}
09.
{% endif %}
{% if date_info.month == “Oct” %}
10.
{% endif %}
{% if date_info.month == “Nov” %}
11.
{% endif %}
{% if date_info.month == “Dec” %}
12.
{% endif %}
</div>- This reply was modified 7 years, 11 months ago by morph3us.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Delete only bottom date picker?No need to apologize! The plugin is very awesome, you could never have guessed how much I want to rape it…
I am not too sure where to search for in the code, though…
In which php (or css?) would I need to look into, to delete only one?Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Delete only bottom date picker?Hey man, thanks for the quick reply!
I had already found this on the old forum, but it deletes the date picker on top AND at the bottom of my posterboard.
I would like to retain the one on the top, though.
Is there a solution to that, too?