ishitaka
Forum Replies Created
-
Forum: Plugins
In reply to: [XO Event Calendar] Weekday names in local languageHi,
The text of the day of the week uses the translation text of the plugin. Currently, the days of the week do not seem to be translated in Spanish.
https://translate.wordpress.org/locale/es/default/wp-plugins/xo-event-calendar/
You can also change it by inserting the following code into your theme’s functions.php.
add_filter( 'gettext_with_context_xo-event-calendar', function( $translation, $text, $context ) { $texts = array( array( 'S', 'Sunday initial', 'D' ), array( 'M', 'Monday initial', 'L' ), array( 'T', 'Tuesday initial', 'M' ), array( 'W', 'Wednesday initial', 'X' ), array( 'T', 'Thursday initial', 'J' ), array( 'F', 'Friday initial', 'V' ), array( 'S', 'Saturday initial', 'S' ), ); foreach ( $texts as $key => $value ) { if ( $value[0] === $text && $value[1] === $context ) { return $value[2]; } } return $translation; }, 10, 3 );Forum: Plugins
In reply to: [XO Security] ログイン試行回数についてすみません、プラグインの不具合でした。
XMLRPC によるログイン試行回数制限が正しく動作しない場合がありました。修正したバージョン3.7.1をリリースしましたので、アップデートしてご確認いただければと思います。なお、XMLRPC のログインはブロック時でもログは記録するので、ログが多いようでしたら「ブロック時の応答遅延」を長めに設定していただければと思います。
Forum: Plugins
In reply to: [XO Security] ログイン試行回数についてこんにちは
ログイン試行回数は IP アドレス毎となります。ログの IP アドレスを確認してみてください。
Forum: Plugins
In reply to: [Full-Text Search] PDFのハイライト表示こんにちは
PDF のハイライト表示には対応していません。
将来のバージョンでは検討したいと思いますが、現時点では追加する予定はありません。すみません。m(__)m
Forum: Plugins
In reply to: [XO Slider] 複数スライダー設置時のページネーションの挙動こんにちは
ご報告ありがとうございます。プラグインの不具合でした。修正したバージョン3.8.2をリリースしましたので、アップデートして試して頂ければと思います。
Forum: Plugins
In reply to: [XO Event Calendar] No translation for word “Regular holiday”This is a usage that is not intended for plugin. You will be writing quite a bit of code.
Forum: Plugins
In reply to: [XO Event Calendar] No translation for word “Regular holiday”Hi,
In the current version, this is not a translation text. Please consider this as the current specification.
It is possible to convert characters into translation text using the code below.
In the theme’s functions.php,
add_filter( 'xo_event_calendar_footer', function( $html, $args ) { $html = '<div class="holiday-titles">'; $holiday_settings = get_option( 'xo_event_calendar_holiday_settings' ); if ( $holiday_settings ) { $holidays = explode( ',', (string) $args['holidays_string'] ); foreach ( $holidays as $holiday ) { if ( array_key_exists( $holiday, $holiday_settings ) ) { $html .= '<p class="holiday-title"><span style="background-color: ' . esc_attr( $holiday_settings[$holiday]['color'] ) . ';"></span>'; $html .= esc_html__( $holiday_settings[$holiday]['title'], 'xo-event-calendar' ); $html .= '</p>'; } } } $html .= '</div>'; return $html; }, 10, 2 );Is any simple way to use your calendar plugin in input text field to choose event from calendar and put it to input text field?
Event posts are custom posts of post type ‘xo_event’. It can be obtained using the normal method of obtaining custom posts.
Forum: Plugins
In reply to: [XO Event Calendar] Hidde old eventsHi,
It is better to use ‘xo_event_calendar_event_title’ filter hook.
Example:
In the theme’s functions.php,
add_filter( 'xo_event_calendar_event_title', function( $html, $event ) { $current_time = strtotime( current_time( 'Y-m-d' ) ); $event_time = strtotime( $event['end_date'] ); if ( $event_time < $current_time ) { $html = ''; } return $html; }, 10, 2 );Forum: Plugins
In reply to: [XO Slider] スライドショーが動かなくなりますこんにちは
現在のバージョン(以前のバージョンも)では、同一ページに同じスライド(Thumbnail テンプレートのみ)を重複して配置できません。
該当ページは、同じスライドが2か所に配置されています。お手数ですがそれぞれでスライドを作成して配置してください。
Forum: Plugins
In reply to: [Full-Text Search] Pro plugin not searching pdf contentHi,
There is no Pro version of this plugin.
Are you confused with other plugins?
Forum: Plugins
In reply to: [XO Event Calendar] Event on calendar don’t showHi,
Have you selected “Event Settings”->”Display” in the event calendar block settings?
Forum: Plugins
In reply to: [Full-Text Search] 続・Acrobatで作成したPDFの検索テキスト抽出ができないPDF parser の RC 版リリース以降に同様の問題(不正な文字を受け取る)が issues に報告されていました。残念ながら解決策はまだ見つかっていません。m(__)m
Forum: Plugins
In reply to: [Full-Text Search] 続・Acrobatで作成したPDFの検索テキスト抽出ができない当方でもいくつかテキスト抽出に失敗するファイル(こちらの test.pdf など)を確認してはいるのですが、解決方法を見つけられていない状況です。お役に立てずにすみません m(__)m
Forum: Plugins
In reply to: [Full-Text Search] 続・Acrobatで作成したPDFの検索テキスト抽出ができないこんにちは
正式リリース次第対応したいと思います。
ただし、今回の PDF Parser の修正は一時的な回避策とあり、件の PDF ファイルに対応しているかどうかわかりません。正式リリースがいつになるかもわからないので、プラグインの RC 版を用意しました。こちらで試してみてもらえればと思います。
Forum: Plugins
In reply to: [XO Event Calendar] 月送りが出来ませんこんにちは
サイトを拝見しましたが原因はわかりませんでした。
お手数ですが、下記を試してみてもらえませんか?
- カレンダーブロックを一旦削除して新たに追加する。
- キャッシュ系プラグインのキャッシュを削除する。
- すべてのプラグインを無効化し、同時にテーマをデフォルト テーマに戻す。