ishitaka
Forum Replies Created
-
Forum: Plugins
In reply to: [XO Event Calendar] Template for archiveThe template name for the event category archive page is “taxonomy-xo_event_cat.php”.
Forum: Plugins
In reply to: [XO Event Calendar] Template for archiveHi,
The template name for the event post archive page is “archive-xo_event.php”.
For Yoast seo, I think you can change it from Yoast seo settings (From the management screen menu, [Yoast SEO]->[Settings]->[Content type]->[Events]->[Breadcrumbs title]).
Forum: Plugins
In reply to: [XO Event Calendar] Enable CommentsIf it’s a new question, I would appreciate it if you could start a new topic.
Forum: Plugins
In reply to: [XO Event Calendar] Enable CommentsHi, Thank you for using the plugin.
Add the following code to the theme’s functions.php to support the comment function. After that, set whether or not to allow comments on each post.
function my_register_event_post_args( $args, $post_type ) { if ( 'xo_event' === $post_type ) { $args['supports'][] = 'comments'; } return $args; } add_filter( 'register_post_type_args', 'my_register_event_post_args', 10, 2 );Forum: Plugins
In reply to: [XO Featured Image Tools] 記事の検索で表示されない当方の環境では再現できませんでした。お手数をおかけし申し訳ございませんが、原因を特定するため「問題解決のためのチェックリスト」を試してみてください。それでも解決しない場合は、こちらの「投稿に記載する内容」を参考に、もう少し詳細な情報を教えてもらえますでしょうか。
Forum: Plugins
In reply to: [XO Featured Image Tools] 記事の検索で表示されない修正したバージョン1.12.1をリリースしました。アップデートしてご確認をお願いします。
Forum: Plugins
In reply to: [XO Featured Image Tools] 記事の検索で表示されない現象を確認しました。バージョン1.12.0の不具合です (^^;
一両日中に修正版をリリースしたいと思います。しばらくお待ちください。
Forum: Plugins
In reply to: [XO Featured Image Tools] 記事の検索で表示されないこんにちは
検索とはサイト内検索でしょうか?検索エンジンのことでしょうか?対象ページの URL 等、もう少し詳細を教えてもらえませんか?
Forum: Plugins
In reply to: [XO Event Calendar] CSSによる曜日ヘッダの背景色設定が効かなくなりました。こんにちは
なるべく影響がでないように変更したつもりでしたが、確認不足でした。m(__)m
下記の CSS ではどうでしょうか?お試しください。
.xo-event-calendar table.xo-month thead th { background-color: #b5b5b5; }Forum: Plugins
In reply to: [Full-Text Search] Cannot search string PATHi,
It seems that MySQL (ngram + ngram_token_size>=2) may not correctly search for strings with 3 or less alphabetic characters including certain strings (an, at, in, etc.).
https://dev.mysql.com/doc/refman/5.7/en/fulltext-stopwords.html
I think you can work around this problem by setting ngram_token_size to 1 and rebuilding the index. Please try it.
Forum: Plugins
In reply to: [XO Security] Custom login address without .php?Hi,
Sorry, you can’t omit .php. It is possible with .htaccess, but we do not plan to use it at this time.
Forum: Plugins
In reply to: [XO Event Calendar] 未来のイベントを予約投稿にしない方法はありますか?こんにちは
未来のイベントも予約投稿になるようなことはありません。投稿の公開日とイベントの日付を間違えて入力していたりしませんか?
Forum: Plugins
In reply to: [XO Event Calendar] アイコンが非表示になった件についてこんにちは
プラグインの不具合で、前バージョンのダッシュアイコンフォントを使用するかどうかの設定が引き継がれないことが分かりました。
申し訳ないですが、再設定(管理画面のメニューより、[イベント]->[設定]->[Dashicons フォントを使用しない])してみてください。
I have released a version (3.5.0) that allows the addition of original templates. Try it.
Note that the directory name, class name and class id variable should be the same name.
Example if the directory name is “custom”:
class XO_Slider_Template_Custom extends XO_Slider_Template_Base { /** * Template ID. * * @var string */ public $id = 'custom';Forum: Plugins
In reply to: [XO Event Calendar] ナビゲーションボタンの色変更についてページを確認したところ、ナビゲーションボタンの色は水色に変更されているようです。ブラウザのキャッシュではないでしょうか?