ishitaka
Forum Replies Created
-
Forum: Plugins
In reply to: [XO Slider] テンプレート「CoverFlow」選択時の挙動がおかしいこんにちは
テンプレート「CoverFlow」選択し、3枚の画像を使ってスライドしているのですが、1周まわったあと、3枚画像をスキップするような挙動をとってしまいます。
検証してみましたが、再現しませんでした。
今回の現象の原因かどうかは分かりませんが、同封の Swiper スクリプトを最新バージョン (6.1.1から6.4.5へ) へアップデートしたバージョン (3.2.2) をリリースしましたので、アップデートして試してみてください。
以上、よろしくお願いします。Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Sidebar in Twenty-twenty one themeHi
How about this plugin?
Although it is for Japanese, it works in other languages as well.- This reply was modified 5 years, 7 months ago by ishitaka.
Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Move to top iconFirst of all, this plugin is not for Japanese only. It also works in other languages.
I think the source code of the plugin will be helpful.Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Move to top iconHi
How about this plugin?
https://wordpress.org/plugins/jp-for-twentytwentyone/Forum: Plugins
In reply to: [XO Featured Image Tools] img src が相対パスのコンテンツこんにちは
バージョン1.5.1より、メディアライブラリ(添付ファイル)の画像に関しては相対 URL に対応しています。1.5.1でも登録されないでしょうか?
Forum: Plugins
In reply to: [XO Featured Image Tools] Can’t login anymoreFrom the message, it seems that the XO Featured Image Tools plugin is not the cause. Try disabling other plugins.
Forum: Plugins
In reply to: [XO Featured Image Tools] Do not set the thumbnail intentionallyHi
If you add a “disable_featured_image” custom field and set the value “1” (or “true”), the post will not add an Featured image.
Thank you.Forum: Plugins
In reply to: [XO Featured Image Tools] Can’t login anymoreHi,
Delete the “xo-featured-image-tools” folder in the plugins folder using FTP or the file manager in the host control panel.
Reference page: https://wordpress.org/support/article/faq-troubleshooting/Forum: Plugins
In reply to: [XO Featured Image Tools] エラーなく完了するが、画像がセットされないこんにちは
画像が相対 URL のため、アイキャッチ画像に設定されませんでした。
新しいバージョン (1.5.1) で、メディアライブラリ(添付ファイル)の画像に関しては相対 URL に対応しました。新しいバージョンに更新して試してみてください。Forum: Plugins
In reply to: [XML Sitemap Generator for Google] WP sitemap for robots.txtSupplement
wp_sitemaps_enabled is likely to be because the position of hooking the system is a little later than expected.
Currently, I am taking measures by adding the following code to the theme’s functions.php.
add_filter( 'wp_sitemaps_enabled', '__return_false' );Forum: Plugins
In reply to: [XO Featured Image Tools] Wrong size image set as a featured imageIt works great and has a useful feature now!
I’m glad it worked well.
Can you set the 2nd image as a featured image in case we find the first image size is so small?
This should work that way now. If the second one is also smaller, continue to search for the third one. Please try it.
Forum: Plugins
In reply to: [XO Featured Image Tools] Wrong size image set as a featured imageHi,
Added an option to exclude small images in the new version (1.5.0). Excludes images whose image size (width or height) is smaller than the specified size.
Please upgrade and try it.
Thank you.Forum: Plugins
In reply to: [XO Event Calendar] イベント詳細ページが表示されませんこんにちは
イベント詳細ページは、カスタム投稿タイプ (xo_event) です。ご使用のテーマ「THE THOR」がカスタム投稿タイプに対応していないのではないでしょうか?
THE THOR は有償テーマのため、こちらで確認することができないので、テーマの配布元にカスタム投稿が表示できるかどうか、問い合わせるといいかと思います。参考事例:
Counter テーマもデフォルト状態ではカスタム投稿タイプは本文が表示されません。このテーマの場合は、テンプレートを変更することで表示することができました。
https://xakuro.com/blog/wordpress/1873/#comment-184Forum: Plugins
In reply to: [XO Event Calendar] テーマでショートコードが使えませんちょっとテーマについて調べてみました。
下記コードで「トップページ第6ブロック」内でショートコードを使えるようになると思います。テーマの functions.php に追加
add_action( 'get_header', function() { global $options; if ( isset( $options['sixth_text'] ) ) { $options['sixth_text'] = do_shortcode( $options['sixth_text'] ); } } );「トップページ第6ブロック」内でショートコードを記述してみてください。
なお、前レスのコードは不要なので削除してください。- This reply was modified 5 years, 10 months ago by ishitaka.
Forum: Plugins
In reply to: [XO Event Calendar] テーマでショートコードが使えません「トップページ第6ブロック」内に、キーワード (任意の文字) を埋め込んで、カレンダーに置き換えることができるかもしれません。
「トップページ第6ブロック」内のカレンダーを表示する場所に下記を記述する。
<!-- XO_Event_Calendar -->
※ 大文字小文字、空白など完全一致する必要があります。テーマの functions.php に下記を追加する。
function add_content_xo_event_calendar( $content ) { $keyword = '<!-- XO_Event_Calendar -->'; if ( false !== strpos( $content, $keyword ) ) { $s = do_shortcode( '[xo_event_calendar]' ); $content = str_replace( $keyword, $s, $content ); } return $content; } add_filter( 'the_content', 'add_content_xo_event_calendar', 99999 );- This reply was modified 5 years, 10 months ago by ishitaka.