Dominik Schneider

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • Dominik Schneider
    Participant

    Hi Shelby,

    thank you for your quick reply. We have tried to analyse the problem with the steps you have sent us. But it is definitely impossible to reproduce the issue with the permalinks, because the 404 error pages appears after a while, although we haven’t done any changes in the system. Suddenly all sub pages are temporarily unavailable. After flushing the permalinks, waiting some minutes, the pages are working fine for a while.

    What we have recognised, is that this is always happens, when the community event add-on is activated.

    We do really need the functionality for the user to add events on a front-end page. The community event add-on seems to be the only way to realize this.

    in reply to: Filtering list by current month #1297103
    Dominik Schneider
    Participant

    Hey, thank you for your message. I could solve the problem, with the article link you have sent me.

    Thanks!

    in reply to: Get a list of upcoming events of one category #1198158
    Dominik Schneider
    Participant

    Hi Nico,
    thank you for your help.
    This works fine for me. Many thx!

    in reply to: Get date of recurring event on single-events.php #1130835
    Dominik Schneider
    Participant

    This reply is private.

    Dominik Schneider
    Participant

    Hi Josh,

    thank you so much for the code snippet! It is very useful. Can’t believe this feature is not available as basic option within the plugin.

    Instead of counting other occurence, it would be better to get displayed the date of the recurring events.

    printf( '<li><a href="%s">Other occurrence #%d</a></li>', esc_url( tribe_get_event_link( $value ) ), $key+1 );

    Do you know, what kind of querie I can use, to get display the date of the recurring event? Can’t find it in the Themer’s guide of TheEventCalendar.

    Thanks!

    Dominik Schneider
    Participant

    This reply is private.

    Dominik Schneider
    Participant

    Hi Cliff,

    thanks a lot for your code snippet! It is very useful. Can’t believe this feature is not available as basic option within the plugin.

    I was trying to modify the basic, to get displayed all recurrent events in a list like this (order by date):
    10.9. | Mon. | 1:00pm
    11.9. | Tue. | 1:00pm
    12.9. | Wed. | 1:00pm

    Sadly, the loop is not working to get displayed the date of each event.
    Do you have any idea, how to fix that problem?

    foreach( $all_event_ids_in_recurrence_series as $key => $value ) {
    				if ( $event_id !== $value ) {
    	  
    $date_day = tribe_get_start_date($post->ID, false, j);
    $date_month = tribe_get_start_date($post->ID, false,m);
    $date_weekday = tribe_get_start_date($post->ID, false,D);
    $date_time = tribe_get_start_date($post->ID, false, 'H:i');
    
    					printf( '<li><a href="%s">'.$date_day.'.'.$date_month.' | '.$date_weekday.' | '.$date_time.'   | '.get_the_title().'</a></li>', esc_url( tribe_get_event_link( $value ) ), $key+1 );
    				}	
    			}
    			
Viewing 7 posts - 1 through 7 (of 7 total)