Felix

Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • in reply to: unpractical overview #1224993
    Felix
    Participant

    Hi,

    this issues is caused by the columns created by the Yoast plugin. If you hide these columns via the “Screen Options”/”Ansicht anpassen” dropdown in the top right, you should be fine.

    in reply to: Community Event submit style #1217965
    Felix
    Participant

    Ok, a little update…

    I removed the file “tribe-events-community-select2.min.css” and suddenly the dropdown works… So I took the regular “non-min”-css file and minified it manually. Still seems to work.

    Not sure whats going on there, but its a fix for now.

    in reply to: Community Event submit style #1217955
    Felix
    Participant

    Hi Geoff,

    thanks so much. It seems to work with the default theme. I am going to have to do some more digging…

    Regards
    Felix

    in reply to: Community Event submit style #1217494
    Felix
    Participant

    Ok, thanks.

    It seems to still have styling issues and the dropdowns are not working for me. Is there an update in the making?

    in reply to: Google Map not showing up #1203734
    Felix
    Participant

    Hi Geoff,

    thanks for the reply. I deleted “Event Rocket”, but that wasn’t the issue. API Key was also in place.

    I dug around in the forums and found this: https://theeventscalendar.com/support/forums/topic/google-map-not-displaying-on-events-or-venue-pages/

    I had a similar issue, where the ‘gettext’ filter in my functions.php was getting in the way. I solved this by replacing the var $index in my childtheme (/tribe-events/modules/map.php) with a ‘0’. Since I only have one map per page, I think its the simplest solution.

    It worked 🙂

    Have a nice weekend.

    in reply to: Import multiple images #1192426
    Felix
    Participant

    Hi Nico,

    thanks for checking. I went with a custom solution and modified the existing “Feature Image”-Importer myself, so that it supports importing another image from my csv and attaches it to the post.

    Since I only needed this once, it doesn’t matter if it gets overwritten with a coming update. The necessary function to retrieve or edit it in the “tribe_venue” meta-data is in my child themes functions.php, so I think I’m good for now.

    Thanks again
    Felix

    in reply to: filterbar integration with shortcodes #1189586
    Felix
    Participant

    Hi Roger,

    sorry, I am not an expert on this. Better ask the Modern Tribe Support.

    in reply to: Add Category to Search Bar #1189518
    Felix
    Participant

    Hi,

    I managed to integrate a solution, but it only seems to work properly with the “Filter Bar” Plugin active on the page. Please feel free to post a better solution.

    add_filter( 'tribe-events-bar-filters',  'tribe_events_add_category_filter', 1, 1 );
    
    function tribe_events_add_category_filter( $filters ) {
        $args = array(
    	'show_option_all'    => esc_html__( "All", "the-events-calendar" ),
    	'show_option_none'   => '',
    	'option_none_value'  => '-1',
    	'orderby'            => 'ID',
    	'order'              => 'ASC',
    	'show_count'         => 0,
    	'hide_empty'         => 1,
    	'child_of'           => 0,
    	'exclude'            => '',
    	'include'            => '',
    	'echo'               => 0,
    	'selected'           => '-1',
    	'hierarchical'       => 0,
    	'name'               => 'tribe_eventcategory',
    	'id'                 => '',
    	'class'              => '',
    	'depth'              => 0,
    	'tab_index'          => 0,
    	'taxonomy'           => 'tribe_events_cat',
    	'hide_if_empty'      => false,
    	'value_field'	     => 'term_id',
    );
    
    $html = wp_dropdown_categories( $args );
    
        $filters['tribe-bar-category'] = array(
            'name' => 'tribe-bar-category',
            'caption' => esc_html__( 'Category', 'the-events-calendar' ),
            'html' => $html
        );
    
        return $filters;
    }
    in reply to: filterbar integration with shortcodes #1189514
    Felix
    Participant

    Hi,

    any news on this? Wasn’t fixed in the latest maintenance release…

    Best

    in reply to: Change "tribe_events_event_schedule_details_formatting" #1188994
    Felix
    Participant

    I rebuilt the whole template file in the child theme, which solved my problem.

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