Foxplex
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Change date format in calendar viewI don’t get what you want to change… as written above, we added “Uhr” (which is not a connector) as a :after element in CSS.
If you want to change “um”, try looking into the language files.
In general for such tweaks, I recommend downloading the whole calendar plugin directory and using Notepad++. This editor has a “Find in files” search function which makes it pretty easy to go through lots of files.Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Change date format in calendar viewI just right-clicked the element (in this case, the word “Uhr”) and viewed it in the inspector (Element untersuchen). Then, I looked through the previous elements/divs…
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Change date format in calendar viewTry this:
.ai1ec-popover-content .ai1ec-event-time::after { display: none; }Not sure if this also applies on not-allday events.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Change date format in calendar viewWhat a creative solution 😉
But then, it’s not a big deal to hide the “Uhr” in allday events:.ai1ec-event-time::after { content: "Uhr"; } .ai1ec-allday .ai1ec-event-time::after { display:none; }- This reply was modified 9 years, 3 months ago by Foxplex.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Change date format in calendar viewHi Metasequoia
In my calendar, the word “Uhr” is not shown… so my date looks like this: “1. Januar 2017 um 13:00”. Do you know where this option can be edited?
I tried creating a child theme (there are some tutorials around), but it got deleted after a plugin update… So I guess you have to copy the code every time.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] Change date format in calendar viewHi!
I also wanted to change the format and after a long search, I found the solution:
– Open wp-content/plugins/all-in-one-event-calendar/app/view/event/time.php
– In lines 177-182, the SHORT format is set. If you don’t want to use the short format anyway, just change it according to the PHP standard (http://php.net/manual/de/function.date.php). For the german format “1. Januar 2017” change it to this:public function get_short_date( Ai1ec_Date_Time $time, $add_year = false ) { if ( $add_year ) { return $time->format_i18n( 'j. F Y' ); } return $time->format_i18n( 'j. F Y' ); }The Excluded URL list is empty, and Exclusion Tracking is on. No cache plugins.
The only spikes I have in exclusions are coming from my own IP and from the user roles…Only the following are excluded:
– all user roles
– my own IP (x.x.x.x/32)The special table for excluded visits is activated and works fine.
I went through all my settings, but couldn’t find an option to exclude the home page… where would that feature be?Thanks!
Hi @slickremix, thanks for your fast response.
I saw that function, but I assumed that it would display the event details (date, time, place, …) and not just the wall posts inside the event.I need something like this (http://feedthemsocial.com/facebook-page-events-list/), but only for specific events.
Thanks!
Forum: Themes and Templates
In reply to: [onetone] audio keeps playing when sliders selectedSame here. I don’t use any background video/sound at all, so I solved it by editing the section-youtube-video.php.
Somewhere in that file you’ll find “mute”=>false, just set it on true.Forum: Themes and Templates
In reply to: [Virtue] Flex Slider loading extremely slow(PS: After doing these steps, you have to re-upload “original.jpg” on the server, otherwise WordPress won’t find your image.)
Forum: Themes and Templates
In reply to: [Virtue] Flex Slider loading extremely slowThanks for the speedtest links. I contacted my host and they indeed had a server problem. But today I noticed something which gave another speed boost to my site:
When you upload an image to the WordPress media system, WordPress automatically generates copies of your image on the server, in various sizes (for thumbnails etc.). So if you upload “original.jpg”, it creates “original-80×50.jpg”, “original-150×150.jpg” and so on.
WordPress also created a new image in 1170×400 (my slider size), even if my original file already was cut perfectly. Strange thing is that the auto-generated file size was a lot higher than the original (I really don’t know how this is even possible). So I just copied the names of the auto-generated files, deleted the files, and named my (way smaller) originals after them! And so I gained over 2 seconds!
Forum: Themes and Templates
In reply to: [Virtue] Flex Slider loading extremely slowHi Hannah,
All my images are 1170 x 400 px. I can’t scale them down because they won’t fit into the slider anymore (they don’t stretch). What I did is reduce the quality to 40% (jpg), so one picture only takes about 100kb.
Link: http://web445.132.hosttech.eu/wordpress/ -> notice how the first picture builds from top to bottom (reminds me of the dial-up times…).
Forum: Themes and Templates
In reply to: [Virtue] Image Gallery using Standard WP GalleryOk thanks!
Forum: Themes and Templates
In reply to: [Virtue] Image Gallery using Standard WP GallerySorry, one more thing: When an image opens in the lightbox, it shows below “1 of 2”. Could you tell me where to modify that description? I’d like to change the word “of” to german.