Michael

Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • Michael
    Participant

    Dear Andreas

    Thanks for your efforts trying to help me.

    However I have still the same problem.

    I try to import following iCAL-Link:https://member.etg-bb.ch/ical/?user=2569c33f7da1aa50c50102e94bafa79d&egs=30

    This works, however I have still 2 hours time difference (so event 1 and event 2 starts at 11:15.

    I have already activated the box “Use the local timezones for each event.”

    Is there anything else I have to change or is it possible to arrange a Teamviewer-Meeting to solve this problem?

    In my Calendar software I have no options to change the time Zone.

    Thx for any support,

    in reply to: Adapting Widget "Events list" #1257622
    Michael
    Participant

    Hi Trisha,

    Thanks for for helping me! I tried to remove the mentioned lines, however it does not solve the problem.

    Can you tell me in which foleer I can find the custom.css?

    Is it possible that I have used a widget from “The Events Calendar” instaed of the written “The Events calendar Pro”?

    Here are the programming lines of list-widget.php:

    <?php
    /**
    * Events List Widget Template
    * This is the template for the output of the events list widget.
    * All the items are turned on and off through the widget admin.
    * There is currently no default styling, which is needed.
    *
    * This view contains the filters required to create an effective events list widget view.
    *
    * You can recreate an ENTIRELY new events list widget view by doing a template override,
    * and placing a list-widget.php file in a tribe-events/widgets/ directory
    * within your theme directory, which will override the /views/widgets/list-widget.php.
    *
    * You can use any or all filters included in this file or create your own filters in
    * your functions.php. In order to modify or extend a single filter, please see our
    * readme on templates hooks and filters (TO-DO)
    *
    * @version 4.4
    * @return string
    *
    * @package TribeEventsCalendar
    *
    */
    if ( ! defined( ‘ABSPATH’ ) ) {
    die( ‘-1’ );
    }

    $events_label_plural = tribe_get_event_label_plural();
    $events_label_plural_lowercase = tribe_get_event_label_plural_lowercase();

    $posts = tribe_get_list_widget_events();

    // Check if any event posts are found.
    if ( $posts ) : ?>

      <?php
      // Setup the post data for each event.
      foreach ( $posts as $post ) :
      setup_postdata( $post );
      ?>
      <li class=”tribe-events-list-widget-events <?php tribe_events_event_classes() ?>”>
      <?php
      if (
      tribe( ‘tec.featured_events’ )->is_featured( get_the_ID() )
      && get_post_thumbnail_id( $post )
      ) {
      /**
      * Fire an action before the list widget featured image
      */
      do_action( ‘tribe_events_list_widget_before_the_event_image’ );

      /**
      * Allow the default post thumbnail size to be filtered
      *
      * @param $size
      */
      $thumbnail_size = apply_filters( ‘tribe_events_list_widget_thumbnail_size’, ‘post-thumbnail’ );
      ?>
      <div class=”tribe-event-image”>
      <?php the_post_thumbnail( $thumbnail_size ); ?>
      </div>
      <?php

      /**
      * Fire an action after the list widget featured image
      */
      do_action( ‘tribe_events_list_widget_after_the_event_image’ );
      }
      ?>

      <?php do_action( ‘tribe_events_list_widget_before_the_event_title’ ); ?>
      <!– Event Title –>

      ” rel=”bookmark”><?php the_title(); ?>

      <?php do_action( ‘tribe_events_list_widget_after_the_event_title’ ); ?>
      <!– Event Time –>

      <?php do_action( ‘tribe_events_list_widget_before_the_meta’ ) ?>

      <div class=”tribe-event-duration”>
      <?php echo tribe_events_event_schedule_details(); ?>
      </div>

      <?php do_action( ‘tribe_events_list_widget_after_the_meta’ ) ?>

      <?php
      endforeach;
      ?>

    <!– .tribe-list-widget –>

    <p class=”tribe-events-widget-link”>
    ” rel=”bookmark”><?php printf( esc_html__( ‘View All %s’, ‘the-events-calendar’ ), $events_label_plural ); ?>

    <?php
    // No events were found.
    else : ?>

    <?php printf( esc_html__( ‘There are no upcoming %s at this time.’, ‘the-events-calendar’ ), $events_label_plural_lowercase ); ?>

    <?php
    endif;

    Regards,
    Michael

    in reply to: Showing next single event as embedded information #1257273
    Michael
    Participant

    This reply is private.

    in reply to: Event Aggregator: Wrong time using iCalendar-Import #1257148
    Michael
    Participant

    This reply is private.

    in reply to: Showing next single event as embedded information #1257144
    Michael
    Participant

    This reply is private.

Viewing 5 posts - 1 through 5 (of 5 total)