ishitaka
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: iPhoneのsafariに画像が反映されないForum: Plugins
In reply to: [XO Event Calendar] Show only Current Month DateIn version 2.2.1, the xo_event_ calendar_events filter hooks have been added.
The following page explains it briefly. Wouldn’t that be helpful?
https://xakuro.com/wordpress/xo-event-calendar/xo-event-calendar-events/Forum: Fixing WordPress
In reply to: iPhoneのsafariに画像が反映されないこんにちは
日本語での質問は日本語フォーラムの方がより多くの回答を得ることができると思います。
https://ja.wordpress.org/support/forums/Forum: Plugins
In reply to: [XO Event Calendar] Show only Current Month DateHi @wparijat
It can be hidden (display: none) by using a style sheet (CSS).
.xo-event-calendar table.xo-month .month-dayname td div.other-month { display: none; }For the WordPress debug log, please see the following page.
Hi,
We have not been able to reproduce the phenomenon.
The test environment is as followsWordPress: 5.4.2
Block Lab: 1.5.5
XO Featured Image Tools: 1.3.1
Site Language: PolskiAre there any errors in the log?
Forum: Plugins
In reply to: [XO Event Calendar] トップページが表示されないプラグインの可能性もないとは言い切れないので、サイトを見てみました。
どうやら、メモリー不足のため処理が中断しているようでした。
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /home/・・・/www/home/wp/wp-includes/wp-db.php on line 1357
サーバの設定でメモリ使用量の上限を上げることが可能であれば上げてみてください。
参考ページ: 【解決】Wordpressが重い(さくらインターネット/ロリポップ)メモリ使用量の上限を上げられない場合は、重たいプラグインの停止やトップページのコンテンツを減らすなどの軽量化、PHP バージョンの変更などを試してみてください。
Forum: Plugins
In reply to: [XO Event Calendar] トップページが表示されないこんにちは
ここは、XO Event Calendar プラグインのサポートページです。
WordPress の質問はここでは回答が付かないと思います。Forum: Fixing WordPress
In reply to: Sydneyの全幅設定についてこんにちは
日本語での質問は日本語フォーラムの方がより多くの回答を得ることができると思います。
https://ja.wordpress.org/support/forums/Forum: Plugins
In reply to: [XO Featured Image Tools] アイキャッチ画像のサイズを指定したいこんにちは
現状ではアイキャッチ画像だけをサイズ制限する機能はありません。すべての添付画像が対象であれば、下記コードで制限することはできます。
テーマの functions.php に、
function my_big_image_size_threshold( $threshold, $imagesize, $file, $attachment_id ) { return 640; } add_filter( 'big_image_size_threshold', 'my_big_image_size_threshold', 10, 4 );CSS で画像サイズを調整するのはどうでしょうか。
カスタマイズの [追加 CSS] に、
.card-thumb-image { width: 100%; max-width: 640px; max-height: 640px; object-fit: cover; }Forum: Plugins
In reply to: [XO Event Calendar] Importing Events Does Not Display On CalendarsSorry, I also needed the following custom fields.
event_start_hour
event_start_minuteIf the value is empty, enter “NULL”.
Forum: Plugins
In reply to: [XO Event Calendar] Importing Events Does Not Display On CalendarsIs the event_end_date custom field empty?
event_end_date cannot be omitted. If the same day as event_start_date, enter the same date in event_end_date.Forum: Plugins
In reply to: [XO Event Calendar] Importing Events Does Not Display On CalendarsHi @lorddev
Thank you for using.
If you use the standard export and import (WordPress Importer plugin), you will see each post without having to manually update it.
What method did you use to export and import?Forum: Plugins
In reply to: [XO Event Calendar] XO Event Calendarのページ(月)送りについてこんにちは
通常の方法(WP_CONTENT_DIR、WP_CONTENT_URL 定数による変更)で wp-content ディレクトリを変更している場合は、動作する(js、css が組み込まれる)と思います。
どのような方法で変更しているのでしょうか?Forum: Plugins
In reply to: [XO Event Calendar] xo_event_calendar_month_caption フィルターフックこんにちは
下記コードではどうでしょうか?
function my_event_calendar_month_caption( $caption, $args, $month_index ) { $months = array( 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December' ); $caption = sprintf( '%1$s %2$s', $months[$args['month'] - 1], $args['year'] ); return $caption; } add_filter( 'xo_event_calendar_month_caption', 'my_event_calendar_month_caption', 10, 3 );