ishitaka
Forum Replies Created
-
Forum: Plugins
In reply to: [XO Event Calendar] 休日設定で休日を保存を押すと色がリセット原因が分かりました。jscolor.js と競合(input のクラス名に “color” が含まれていました)していました。
修正したバージョン(2.1.6)をリリースしましたので、お試しください。
Forum: Plugins
In reply to: [XO Event Calendar] 休日設定で休日を保存を押すと色がリセット報告ありがとうございます。
jscolor.js 自体とは競合していないようなので、テーマ側の jscolor.js に関連するスクリプトと競合していると思うのですが、有償テーマでコードを見れないため、具体的な競合原因はわかりませんでした。
プラグイン側ではすぐには対応できそうにないので、しばらくは @imayan さんの方法で対応してください。m(__)m
Forum: Plugins
In reply to: [XO Event Calendar] 休日設定で休日を保存を押すと色がリセットこんにちは
テーマ名を教えてもらえませんか?
こちらで入手可能なテーマであれば動作検証してみたいと思います。Forum: Plugins
In reply to: [XO Event Calendar] Next and Previous Text Change Hooks.Hi @wparijat
What about using the xo_event_calendar_month hook?
function my_event_calendar_month( $html, $args ) { $month = (int) $args['month']; $prev_month = ( $month == 1 ) ? 12 : $month - 1; $next_month = ( $month == 12 ) ? 1 : $month + 1; // prev $html = preg_replace( '/(<button .*? class="month-prev".*?\>)(.*?)(<\/button>)/', '${1}' . "<{$prev_month}月" . '${3}', $html ); // next $html = preg_replace( '/(<button .*? class="month-next".*?\>)(.*?)(<\/button>)/', '${1}' . "{$next_month}月>" . '${3}', $html ); return $html; } add_action( 'xo_event_calendar_month', 'my_event_calendar_month', 10, 2 );Reference page: https://xakuro.com/wordpress/xo-event-calendar/xo-event-calendar-month/
Forum: Plugins
In reply to: [XO Event Calendar] Start week on MondayHi
This can be changed with the start_of_week option in the xo_event_calendar shortcode.
Sunday start:
[xo_event_calendar start_of_week="0"]Monday start:
[xo_event_calendar start_of_week="1"]General settings:
[xo_event_calendar start_of_week="-1"]Description of shortcode options (Japanese)
https://xakuro.com/wordpress/xo-event-calendar/#toc15Forum: Plugins
In reply to: [XO Event Calendar] カレンダーの表示順について(開始時刻順にしたいです)こんにちは
カレンダーの同じ日(単日)のイベントの表示順を、開始時刻順に並べるように変更したバージョン (2.1.4) をリリースしました。お試しください。
Forum: Plugins
In reply to: [XO Featured Image Tools] 拡張子で終わらない外部画像直リンク(ホットリンク)がブロックされているため、画像を取得できないようです。
プラグイン側では対応が難しいです。m(__)mForum: Plugins
In reply to: [XO Featured Image Tools] 拡張子で終わらない外部画像こんにちは
どのようなタグ(HTML)でしょうか?
Forum: Plugins
In reply to: [XO Security] CAPTCHAの画像がリンク切れご報告ありがとうございます。
Flying Images プラグインとどのように干渉しているか調べてみます。回避方法があれば対応したいと思います。(が、難しいかもです)Forum: Plugins
In reply to: [XO Security] CAPTCHAの画像がリンク切れこんにちは
WordPress 5.3.2 にて、CAPTCHA 画像がリンク切れになる事を確認することができませんでした。WordPress のバージョンを更新しただけ(PHP のバージョンを変更したりしていませんか?)で、そのような症状が起こるのか見当が付きません。
お手数ですが「問題解決のためのチェックリスト」を試してみては頂けませんでしょうか?Forum: Fixing WordPress
In reply to: サイトが表示されないこんにちは
WordPress 本体の自動更新が失敗した可能性があります。手動で更新してみてはと思います。
https://wpdocs.osdn.jp/WordPress_のアップグレード#.E6.89.8B.E5.8B.95.E6.9B.B4.E6.96.B0Forum: Plugins
In reply to: [XO Event Calendar] XO Event Calendarの年月表示が初回読み時、英語表記になるこんにちは
根本的な原因はわかりませんが、下記コードをテーマの functions.php に追加することで解消するかもしれません。試してみてください。
function my_event_calendar_month_caption( $caption, $args ) { $caption = sprintf( '%d年 %d月', $args['year'], $args['month'] ); return $caption; } add_filter( 'xo_event_calendar_month_caption', 'my_event_calendar_month_caption', 10, 2 ); function my_gettext_calendar( $translated, $text, $domain ) { if ( $domain === 'xo-event-calendar' ) { $texts = array ( 'Sun' => '日', 'Mon' => '月', 'Tue' => '火', 'Wed' => '水', 'Thu' => '木', 'Fri' => '金', 'Sat' => '土', ); if ( isset( $texts[$text] ) ) { $translated = $texts[$text]; } } return $translated; } add_filter( 'gettext', 'my_gettext_calendar', 10, 3 );Forum: Fixing WordPress
In reply to: 有効なURLではありませんこんにちは
日本語での質問は日本語フォーラムの方がより多くの回答を得ることができると思います。
https://ja.wordpress.org/support/forums/Forum: Fixing WordPress
In reply to: 致命的なエラー解決したようなので、こちらもトピックのステータスを「解決済み」(Resolved) にしておいてください。
Forum: Fixing WordPress
In reply to: 致命的なエラーこんにちは
日本語での質問は日本語フォーラムの方がより多くの回答を得ることができると思います。
https://ja.wordpress.org/support/forums/