ishitaka
Forum Replies Created
-
Forum: Plugins
In reply to: [XO Event Calendar] イベントカレンダー ブロック のタイトル表示についてこんにちは
「ウィジェットグループ」ブロックでタイトルを付けることができます。
ウィジェットグループの使い方は、下記ページが参考になると思います。
Forum: Plugins
In reply to: [New Posts Block] 新着の RSSで「このブロックでエラーが発生・・」こんにちは
すみませんが、このプラグインは設計が古いので今後アップデートする予定はありません(閉鎖する予定です)。m(__)m
Forum: Plugins
In reply to: [XO Event Calendar] カテゴリー追加でイベントがカレンダー表示されなくなるこんにちは
現象を再現できませんでした。
試しに、イベントカレンダー ウィジェットで表示しているようなので、イベントカレンダー ブロックに変更してみてもらえませんか?
※ イベントカレンダー ウィジェットは下位互換のために残されています。ウィジェットは一部機能制限(休日の順番が変更できないなど)があります。
Forum: Plugins
In reply to: [XO Featured Image Tools] Featured Image “failed”Then I don’t know why they fail. 🙇
Forum: Plugins
In reply to: [XO Featured Image Tools] Featured Image “failed”Is it the image you are displaying with the shortcode?
The plugin does not support shortcode images, but you can add the following code to the theme’s functions.php to support shortcode images.add_filter( 'xo_featured_image_tools_post_content', function( $content ) { $content = do_shortcode( $content ); return $content; } );Forum: Plugins
In reply to: [XO Featured Image Tools] Featured Image “failed”Is the target image an image uploaded in the normal way of WordPress?
Forum: Plugins
In reply to: [XO Featured Image Tools] Featured Image “failed”I couldn’t find the cause from the page source.
Is the target images registered in the media?
Forum: Plugins
In reply to: [XO Event Calendar] 設定した休日の取得こんにちは
現バージョンでは休日を取得する関数やテンプレートタグはありません。
サポート外となりますが、休日設定の生データを直に読み込むことになります。この方法は下記ページのコードが参考になると思います。
Forum: Plugins
In reply to: [XO Featured Image Tools] アイキャッチが作られませんちょっとわからないです。サムネイル画像を再生成(下記ページを参照)した後に実行してみてはどうでしょうか?
https://lightning.vektor-inc.co.jp/lightning-pro/setting/others/regenerate-thumbnails
Forum: Plugins
In reply to: [XO Featured Image Tools] アイキャッチが作られませんこんにちは
サイトの移行作業で画像が正しく移行できていないのではないでしょうか?管理画面のメディア画面は正しく動作(画像が表示されるか?編集はできるか?)しますか?
Forum: Plugins
In reply to: [XO Featured Image Tools] Need to add a feature to upload images to imgurI doubt the functionality you suggested is related to the functionality of this plugin. It is unlikely that this feature will be implemented anytime soon.
Forum: Plugins
In reply to: [XO Post Background] iOSで表示に不具合解決したようで良かったです。
ポイントや応援金など?このコミュニティ自体初めて使ったので、何かあれば教えてください。
プラグインよっては寄付できる方法(プラグインページの「このプラグインに寄付」ボタン)が用意されているものもあるのですが、このプラグインは現在ありません。将来、大幅に機能追加したら用意したいと思います。予定はありませんが……。使ってもらえるだけでありがたいです。(^^♪
ちなみにfunction.phpに入れた最後のコードは、どんな内容なのでしょうか?
背景画像の固定(background-attachment: fixed)時に表示がおかしくなるので、背景画像の固定時に別の方法(position: fixed)にしています。ある程度(背景色などは省略しています)、背景設定の内容($background)を反映させています。CSS に関しては短いのでググって(すみません)みてください。
Forum: Plugins
In reply to: [XO Post Background] iOSで表示に不具合下記コードではどうでしょうか?
テーマの functionc.php に、
function my_post_background_style( $style, $image_src, $background ) { if ( $background['attachment'] ) { return $style; } $url = esc_url( $image_src ); $size = in_array( $background['size'], array( 'auto', 'contain', 'cover' ), true ) ? $background['size'] : 'auto'; $repeat = $background['repeat'] ? 'repeat' : 'no-repeat'; $position_x = ( in_array( $background['position_x'], array( 'left', 'center', 'right' ), true ) ) ? $background['position_x'] : 'left'; $position_y = ( in_array( $background['position_y'], array( 'top', 'center', 'bottom' ), true ) ) ? $background['position_y'] : 'top'; $style = <<<STYLE body.custom-background { background-image: none; } body::before { content: ""; position: fixed; top: 0; left: 0; z-index: -1; width: 100vw; height: 100vh; background-image: url("$url"); background-repeat: $repeat; -webkit-background-size: $size; background-size: $size; background-position: $position_x $position_y; } STYLE; return $style; } add_filter( 'xo_post_background_style', 'my_post_background_style', 10, 3 );(根本的には iOS のバグ(こちらを参照)なので修正されればいいのですが……)
Forum: Plugins
In reply to: [XO Post Background] iOSで表示に不具合すみません、プラグインの不具合がありました。修正したバージョン2.0.7をリリースしましたので、プラグインを更新しブラウザのキャッシュを削除して試してみてください。
Forum: Plugins
In reply to: [XO Post Background] iOSで表示に不具合前レスの方法による対策を行ったバージョン2.0.6をリリースしました。こちらで対応してもらえませんか?