Title: Foxplex's Replies | WordPress.org

---

# Foxplex

  [  ](https://wordpress.org/support/users/foxplex/)

 *   [Profile](https://wordpress.org/support/users/foxplex/)
 *   [Topics Started](https://wordpress.org/support/users/foxplex/topics/)
 *   [Replies Created](https://wordpress.org/support/users/foxplex/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/foxplex/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/foxplex/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/foxplex/engagements/)
 *   [Favorites](https://wordpress.org/support/users/foxplex/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/foxplex/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/foxplex/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timely All-in-One Events Calendar] Change date format in calendar view](https://wordpress.org/support/topic/change-date-format-in-calendar-view/)
 *  [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/change-date-format-in-calendar-view/#post-8875601)
 * I 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timely All-in-One Events Calendar] Change date format in calendar view](https://wordpress.org/support/topic/change-date-format-in-calendar-view/)
 *  [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/change-date-format-in-calendar-view/#post-8840682)
 * I 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timely All-in-One Events Calendar] Change date format in calendar view](https://wordpress.org/support/topic/change-date-format-in-calendar-view/)
 *  [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/change-date-format-in-calendar-view/#post-8840036)
 * Try this:
 *     ```
       .ai1ec-popover-content .ai1ec-event-time::after {
       display: none;
       }
       ```
   
 * Not sure if this also applies on not-allday events.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timely All-in-One Events Calendar] Change date format in calendar view](https://wordpress.org/support/topic/change-date-format-in-calendar-view/)
 *  [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/change-date-format-in-calendar-view/#post-8839736)
 * What 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](https://wordpress.org/support/users/foxplex/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timely All-in-One Events Calendar] Change date format in calendar view](https://wordpress.org/support/topic/change-date-format-in-calendar-view/)
 *  [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/change-date-format-in-calendar-view/#post-8838812)
 * Hi 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Timely All-in-One Events Calendar] Change date format in calendar view](https://wordpress.org/support/topic/change-date-format-in-calendar-view/)
 *  [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/change-date-format-in-calendar-view/#post-8815829)
 * Hi!
 * 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](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' );
       	}
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Statistics – Simple, privacy-friendly Google Analytics alternative] Homepage (latest posts) not included](https://wordpress.org/support/topic/homepage-latest-posts-not-included/)
 *  Thread Starter [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/homepage-latest-posts-not-included/#post-8220449)
 * 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…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Statistics – Simple, privacy-friendly Google Analytics alternative] Homepage (latest posts) not included](https://wordpress.org/support/topic/homepage-latest-posts-not-included/)
 *  Thread Starter [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/homepage-latest-posts-not-included/#post-8218499)
 * 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!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Feed Them Social - Social Media Feeds, Video, and Photo Galleries] Display one specific event](https://wordpress.org/support/topic/display-one-specific-event/)
 *  Thread Starter [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/display-one-specific-event/#post-8210565)
 * Hi [@slickremix](https://wordpress.org/support/users/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/](http://feedthemsocial.com/facebook-page-events-list/)),
   but only for specific events.
 * Thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[onetone] audio keeps playing when sliders selected](https://wordpress.org/support/topic/audio-keeps-playing-when-sliders-selected/)
 *  [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/audio-keeps-playing-when-sliders-selected/#post-7286605)
 * Same 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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Virtue] Flex Slider loading extremely slow](https://wordpress.org/support/topic/flex-slider-loading-extremely-slow/)
 *  Thread Starter [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/flex-slider-loading-extremely-slow/#post-6637262)
 * (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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Virtue] Flex Slider loading extremely slow](https://wordpress.org/support/topic/flex-slider-loading-extremely-slow/)
 *  Thread Starter [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/flex-slider-loading-extremely-slow/#post-6637261)
 * Thanks 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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Virtue] Flex Slider loading extremely slow](https://wordpress.org/support/topic/flex-slider-loading-extremely-slow/)
 *  Thread Starter [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/flex-slider-loading-extremely-slow/#post-6637137)
 * Hi 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/](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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Virtue] Image Gallery using Standard WP Gallery](https://wordpress.org/support/topic/image-gallery-using-standard-wp-gallery/)
 *  Thread Starter [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/image-gallery-using-standard-wp-gallery/#post-6516781)
 * Ok thanks!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Virtue] Image Gallery using Standard WP Gallery](https://wordpress.org/support/topic/image-gallery-using-standard-wp-gallery/)
 *  Thread Starter [Foxplex](https://wordpress.org/support/users/foxplex/)
 * (@foxplex)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/image-gallery-using-standard-wp-gallery/#post-6516778)
 * Sorry, 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.

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/users/foxplex/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/foxplex/replies/page/2/?output_format=md)