ishitaka
Forum Replies Created
-
Forum: Plugins
In reply to: [XO Event Calendar] 連日イベントの表示についてあと、
カレンダーの下の休日の色が表示されていないのも、テーマの CSS が影響しています。
両方を踏まえて、下記のような CSS にしてみてください。.xo-event-calendar a { display: block; } .xo-event-calendar .holiday-title span { display: inline; }※ 次のバージョン(しばらく予定はありませんが……)で対策したいと思います。
Forum: Plugins
In reply to: [XO Event Calendar] 連日イベントの表示についてこんにちは
テーマの CSS が影響しているようです。
下記 CSS をカスタマイズの [追加 CSS] またはテーマの style.css に追記してみてください。.xo-event-calendar a { display: block; }Forum: Plugins
In reply to: [XO Event Calendar] Recurrent eventHi,
I can’t think of an easy way to implement this. I’m sorry.
Fixed version 1.7.0 has been released. try it.
I was able to reproduce the bug. A modified version will be released at a later date. Please wait a moment.
Hi,
I could not reproduce the problem. Could you please tell me how to reproduce it?
Forum: Plugins
In reply to: [Full-Text Search] Acrobatで作成したPDFの検索テキスト抽出ができないその後、PDF parser ライブラリに保護されていないファイルを保護されたファイルと誤検知する不具合が存在することが判明しました。
https://github.com/smalot/pdfparser/issues/488まだパッチがなく残念ながら対応できそうにありません。現状では、PDF ファイルをアップロードして失敗した場合、手動で「検索テキスト」欄にテキストを入力して対応するぐらいしか方法がありません。申し訳ございません。m(__)m
- This reply was modified 3 years, 10 months ago by ishitaka.
Forum: Plugins
In reply to: [Depicter — Popup & Slider Builder] Does not work on a localhostIt seems that cURL is getting an error due to an SSL certificate issue.
https://community.localwp.com/t/curl-error-60-ssl-certificate-problem-self-signed-certificate/14707
Forum: Plugins
In reply to: [Full-Text Search] Can it include custom fields generated from ACF plugin?The code below will allow the ACF fields (my_text and my_file) to be searched.
add_filter( 'full_text_search_index_post', function( $data, $post_ID ) { global $full_text_search; if ( $full_text_search ) { if ( 'post' === $data['post_type'] ) { if ( function_exists( 'get_field' ) ) { $keywords = $data['keywords']; // Text $my_text = get_field( 'my_text', $post_ID ); if ( $my_text ) { $keywords .= "\n" . $my_text; } // PDF file (File ID) $my_file_id = get_field( 'my_file_id', $post_ID ); if ( $my_file_id ) { $keywords .= "\n" . get_post_meta( $my_file_id, 'full_text_search_search_text', true ); } $data['keywords'] = trim( $keywords ); } } } return $data; }, 10, 2 );* The full_text_search_index_post filter hook has been added since version 2.6.0.
Place this code in your child theme’s functions.php and regenerate your index.
Forum: Plugins
In reply to: [Full-Text Search] Can it include custom fields generated from ACF plugin?By default, only the “full_text_search_search_text” field is searched. The value of the text field named “full_text_search_search_text” in ACF is searched.
Other fields must be customized with PHP code.Forum: Plugins
In reply to: [XO Event Calendar] 2.4.0ではCSSが適用されずカレンダーが崩れますこんにちは
一部のテーマにおいてカレンダーの表示が崩れる(CSS が組み込まれない)不具合がありました。修正したバージョン2.4.1をリリースしましたので、アップデートしてみてください。
お手数おかけしてしまい申し訳ございません。Forum: Plugins
In reply to: [XO Event Calendar] Grid disappear after update to 2.4.0Fixed version 2.4.1 has been released. try it.
Forum: Plugins
In reply to: [XO Event Calendar] Grid disappear after update to 2.4.0I have confirmed the phenomenon in some themes. I would like to release a fixed version in a day or two. Please wait for a while.
Forum: Plugins
In reply to: [XO Event Calendar] Grid disappear after update to 2.4.0Hi firestone3310,
It appears that the CSS is not loading properly. Try deleting the cache of the cache plugin.
- This reply was modified 3 years, 11 months ago by ishitaka.
Forum: Plugins
In reply to: [Search Regex] fatal errorPHP 7.2.34
The new version 3.0.0 seems to use PHP 7.3 syntax.
https://wiki.php.net/rfc/trailing-comma-function-calls