Felix

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • Felix
    Participant

    Hi Shelby,

    all my apologies for my non-existing php knowledge…

    Thank you for your prompt reply, your positive feedback and your suggestion.

    I tried to add the code snippet that you suggested.

    See as well line 63/64:
    <?php echo( tribe_get_venue_details() ); ?>

    It shows as:
    http://garage.freieszene.de/events/

    Since in line 17 $venue_details are defined as an array
    –> $venue_details = array();
    Simply the word “array” is displayed.

    Do you know how I could achieve to simply display the actual venue details and NOT the word “array”?

    I am looking forward to your answer.

    Best regards,

    Felix

    full single-event.php (list) file:

    <?php 
    /**
     * List View Single Event
     * This file contains one event in the list view
     *
     * Override this template in your own theme by creating a file at [your-theme]/tribe-events/list/single-event.php
     *
     * @package TribeEventsCalendar
     *
     */
     
    if ( !defined('ABSPATH') ) { die('-1'); } ?>
     
    <?php 
     
    // Setup an array of venue details for use later in the template
    $venue_details = array();
     
    if ($venue_name = tribe_get_meta( 'tribe_event_venue_name' ) ) {
        $venue_details[] = $venue_name;    
    }
     
    if ($venue_address = tribe_get_meta( 'tribe_event_venue_address' ) ) {
        $venue_details[] = $venue_address;    
    }
    // Venue microformats
    $has_venue_address = ( $venue_address ) ? ' location': '';
     
    // Website
    $website = tribe_get_event_website_link();
     
    ?>
     
    <!-- Event Cost -->
    <?php if ( tribe_get_cost() ) : ?> 
        <div class="tribe-events-event-cost">
            <span><?php echo tribe_get_cost( null, true ); ?></span>
        </div>
    <?php endif; ?>
     
    <!-- Schedule & Recurrence Details -->
        <h2 class="updated published time-details">
            <?php echo tribe_events_event_schedule_details() ?>
        </h2>
     
    <!-- Event Title -->
    <?php do_action( 'tribe_events_before_the_event_title' ) ?>
    <h2 class="tribe-events-list-event-title entry-title summary">
        <a class="url" href="<?php echo tribe_get_event_link() ?>" title="<?php the_title() ?>" rel="bookmark">
            <?php the_title() ?>
        </a>
    </h2><br>
     
    <h3><?php echo( tribe_get_organizer_link() ); ?>
    </h3>
     
    <h3><?php echo( tribe_get_venue_details() ); ?>
    </h3>
     
    <?php do_action( 'tribe_events_after_the_event_title' ) ?>
     
    <!-- Event Meta -->
    <?php do_action( 'tribe_events_before_the_meta' ) ?>
    <div class="tribe-events-event-meta vcard"> <div class="author <?php echo $has_venue_address; ?>">
     
        <?php if ( $venue_details ) : ?>
            <!-- Venue Display Info -->
            <div class="tribe-events-venue-details">
                <h3><?php echo implode( ', ', $venue_details) ; ?></h3>
            </div> <!-- .tribe-events-venue-details -->
        <?php endif; ?>
     
    </div> </div><!-- .tribe-events-event-meta -->
    <?php do_action( 'tribe_events_after_the_meta' ) ?>
     
    <!-- Event Image -->
    <?php echo tribe_event_featured_image( null, 'medium' ) ?>
     
    <!-- Event Content -->
    <?php do_action( 'tribe_events_before_the_content' ) ?>
    <div class="tribe-events-list-event-description tribe-events-content description entry-summary">
        <h2><?php the_excerpt() ?></h2>
            <h2>
        <a href="<?php echo tribe_get_event_link() ?>" class="tribe-events-read-more" rel="bookmark"><?php _e( 'Mehr...', 'tribe-events-calendar' ) ?> &raquo;</a>
            </h2>
    </div><!-- .tribe-events-list-event-description -->
    <?php do_action( 'tribe_events_after_the_content' ) ?>
    in reply to: Staging environement – Licence Key #1333948
    Felix
    Participant

    This reply is private.

    Felix
    Participant

    This reply is private.

    • This reply was modified 8 years, 8 months ago by Felix. Reason: it did not display properly
    Felix
    Participant

    This reply is private.

    • This reply was modified 8 years, 8 months ago by Felix.
Viewing 4 posts - 1 through 4 (of 4 total)