ishitaka
Forum Replies Created
-
Forum: Plugins
In reply to: [XO Event Calendar] Translation review?Hi,
Thank you for the translation.
If it’s not approved after a week, try posting it on the Make/Polyglots team blog.
Forum: Plugins
In reply to: [XO Slider] ナビゲーションやページネーションの表示位置を変えたいこんにちは
当プラグインのスライダーは Swiper を使用しています。基本的には Swiper のカスタマイズが有効です。Swiper のカスタマイズに関しては、ネット上にも記事が数多存在しますので、「Swiper」を含むキーワードでググってみてください。
例:
.xo-slider-template-simple .swiper-container { padding-bottom: 48px; } .xo-slider-template-simple .swiper-button-prev, .xo-slider-template-simple .swiper-button-next { top: auto; bottom: 0; }※ この例は Simple テンプレートが対象です。
Forum: Plugins
In reply to: [XO Event Calendar] 1日が表示されず2日から始まっている修正版(バージョン3.2.5)をリリースしました。アップデートしてごご確認いただければと思います。
Forum: Plugins
In reply to: [XO Event Calendar] 1日が表示されず2日から始まっているこんにちは
プラグインの不具合であることを確認しました。一両日中に修正版をリリースしたいと思いますので、しばらくお待ちいただければと思います。
I would like to add event date and category blocks in a future version.
In the current version, please remove the default display and display it with the xo_event_field shortcode.
functions.php:
if ( $xo_event_calendar ) { remove_filter( 'template_include', array( $xo_event_calendar, 'template_include' ) ); }Shortcode block:
Event date: [xo_event_field filed="start_date"]Hi,
In the template file, you can change it.
Example:
Add the following code in the loop of the “single-xo_event.php” file created by duplicating the theme’s “single.php” or “single.php”.
<?php if ( is_singular( 'xo_event' ) && $xo_event_calendar ) : ?> <div class="xo-event-meta-details"> <div class="xo-event-meta"> <span class="xo-event-date">Event date: <?php echo $xo_event_calendar->get_event_date( $post->ID ) ?></span> <span class="xo-event-category">Categories: <?php echo get_the_term_list( $post->ID, 'xo_event_cat', '', ', ', '' ); ?></span> </div> </div> <?php endif; ?>Forum: Plugins
In reply to: [XO Event Calendar] ショートコードのmonthsについてこんにちは
下記条件で検証しましたが、現象は再現しませんでした。もう少し詳細(WP、PHP のバージョンやテーマなど)を教えてもらえませんか?
$point_year = 2023; $point_year_text = "{$point_year}"; echo do_shortcode( '[xo_event_calendar id="calendar-year" year="' . $point_year_text . '" month="1" months="12" navigation="false" holidays="all"]' );WordPress 6.3
PHP 7.4, 8.2
XO Event Calendar 3.0.4, 3.1.0, 3.2.3Forum: Plugins
In reply to: [XO Slider] sourceMappingURLのターゲットが異なる?修正バージョン (3.7.4) をリリースしました。
Forum: Plugins
In reply to: [XO Slider] sourceMappingURLのターゲットが異なる?こんにちは
報告ありがとうございます。ご指摘のとおりでした。
一両日中には、修正版をリリースできると思いますので、しばらくお待ちください。
Forum: Plugins
In reply to: [XO Event Calendar] PHP 8.1 problem + ACFI’m glad it worked out.
As a thank you I completely translated the plugin into Czech yesterday.
Děkuji 😊
Forum: Plugins
In reply to: [XO Event Calendar] PHP 8.1 problem + ACFReleased version 3.2.3 to fix an error message displayed in the event calendar widget. Please try.
Forum: Plugins
In reply to: [XO Event Calendar] PHP 8.1 problem + ACFIs it like this?
function my_xo_event_calendar_event_title( $html, $event ) { $url = get_field( 'リンク', $event['post']->ID ); if ( ! $url ) { $url = $event['permalink']; } $title = ( $event['short_title'] ) ? $event['short_title'] : $event['title']; $html = '<span class="month-event-title" style="color:#333; background-color:' . esc_attr( $event['bg_color'] ) . ';">' . $title . '</span>'; if ( '-' !== $url ) { $html = '<a href="' . esc_url( $url ) . '" title="' . esc_attr( $event['title'] ) . '">' . $html . '</a>'; } return $html; } if ( function_exists( 'get_field' ) ) { add_filter( 'xo_event_calendar_event_title', 'my_xo_event_calendar_event_title', 10, 2 ); }Forum: Plugins
In reply to: [XO Event Calendar] PHP 8.1 problem + ACFIs it like this?
$url = get_field( 'リンク', $event['post']->ID ); $event['permalink'] = esc_url( $url );↓
$url = get_field( 'リンク', $event['post']->ID ); if ( $url ) { $event['permalink'] = esc_url( $url ); }Forum: Plugins
In reply to: [XO Event Calendar] PHP 8.1 problem + ACFA fix will be released in a day or two.
Does ACF mean ACF Plugin? Unfortunately, this plugin does not have the ability to work with ACF.
Forum: Plugins
In reply to: [XO Event Calendar] PHP 8.1 problem + ACFHi,
1.
I have confirmed this issue. We plan to fix it in the next version.
2.
I don’t understand what the problem is. Could you please be more specific?