Wordpressでサイトを作成し、
Event Organiserというプラグインにて
カレンダー表示をしています。
繰り返しイベントを数件登録した際に、
イベント詳細ページにおいて、例えば下記のように表示されます。
「このイベントは 23 6月 2021 から 14 9月 2021 まで開催しています。 次回の開催は 2021年6月23日 9:50 AM です。」
このテキストは不要なので、カットしたいです。
恐らく
event-meta-event-single.php をカスタマイズするのではないかと思うのですが、
どの部分をどう修正すればいいのか、ご教示ください。
該当のソースコード
<?php if ( eo_recurs() ) :?> <!-- Event recurs - is there a next occurrence? --> <?php $next = eo_get_next_occurrence( eo_get_event_datetime_format() );?> <?php if ( $next ) : ?> <!-- If the event is occurring again in the future, display the date --> <?php printf( '<p>' . __( 'This event is running from %1$s until %2$s. It is next occurring on %3$s', 'eventorganiser' ) . '</p>', eo_get_schedule_start( 'j F Y' ), eo_get_schedule_last( 'j F Y' ), $next );?> <?php else : ?> <!-- Otherwise the event has finished (no more occurrences) --> <?php printf( '<p>' . __( 'This event finished on %s', 'eventorganiser' ) . '</p>', eo_get_schedule_last( 'd F Y', '' ) );?> <?php endif; ?> <?php endif; ?>
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
プログラミングの知識がなく、調べているのですが答えが見つかりません。
初歩的質問で申し訳ありませんが、お力をお貸しください。
よろしくお願いいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/06/07 03:18