ishitaka
Forum Replies Created
-
Forum: Plugins
In reply to: [XO Slider] 中央寄せで左右が見切れるようなアニメーション効果こんにちは
最新バージョン (3.3.0) でスライドを中央に配置するパラメーター (「中央配置」) を追加しました。プラグインをアップグレードし、スライダーの設定を下記のように変更してみてください。
テンプレート: (Coverflow 以外)
表示単位: 1.2 (1.0以上3未満の適当な値)
間のスペース: (適当な値)
中央配置: チェックForum: Plugins
In reply to: [XO Featured Image Tools] アイキャッチ画像が表示されませんXO Featured Image Tools プラグインが対応している画像は、WP の通常の方法で追加した画像(img タグに wp-image-xxx (xxx は画像 ID) のようなクラスが付与されている)、またはサイト内の画像です。
wp-image-xxx がなくまた Jetpack のサイトアクセラレーター (旧称 Photon) によって CDN でホスティングされているような画像には対応していません。Forum: Plugins
In reply to: [XO Featured Image Tools] アイキャッチ画像が表示されませんこんにちは
提示の画像で、通常の投稿であれば、問題なくアイキャッチ画像に設定することができます。
FeedWordPress プラグインが読み込んだ投稿がどのようなものなのか分からないため、なんとも言えません。
すみません。m(__)mForum: Plugins
In reply to: [XO Featured Image Tools] アイキャッチ画像が自動作成されませんすみませんが、この画像 (HTML) には対応していません。
自動生成する画像の条件は、WP の通常の方法で追加した画像(img タグに wp-image-xxx (xxx は画像 ID) のようなクラスが付与されている)、またはサイト内の画像です。
提示の画像の img タグには wp-image-xxx がなく、また Jetpack のサイトアクセラレーター (旧称 Photon) によって CDN でホスティングされている画像なので、条件外です。Forum: Plugins
In reply to: [XO Featured Image Tools] アイキャッチ画像が自動作成されませんこんにちは
対象の画像の HTML を教えてください。
Forum: Plugins
In reply to: [XO Featured Image Tools] 外部の埋め込みからアイキャッチが生成されませんこんにちは
インスタグラムの仕様により画像にダイレクトにアクセスできないため取得することはできません。
m(__)mForum: Fixing WordPress
In reply to: 管理者画面にログインするとエラーが出てしまいますこんにちは
日本語での質問は日本語フォーラムの方がより多くの回答を得ることができると思います。
https://ja.wordpress.org/support/forums/Forum: Plugins
In reply to: [XO Event Calendar] プラグインが日本語にできませんこんにちは
翻訳ファイルのファイル名が違うようです。
下記のように変更してみてください。xo-event-calendar-ja.mo
xo-event-calendar-ja.poForum: Plugins
In reply to: [XO Event Calendar] 管理画面一覧でのカテゴリー絞り込みについてこんにちは
提示のコードで検証してみました。現象は再現しませんでした。問題なくカテゴリーの絞り込みができました。コードには問題ないと思います。
他のプラグインを停止したりテーマを変えてみたりして原因を調べてみてください。Forum: Plugins
In reply to: [XO Featured Image Tools] Updating 116 posts out of 12,000Hi,
1.
Bulk Settings ([Tools]->[Featured Image Tools]) will only process posts that do not have a featured image set.2.
Not all images are supported. It does not support images displayed with short codes.
It also does not support drafts or unpublished posts.Forum: Plugins
In reply to: [XO Event Calendar] 背景色の取得についてこんにちは
下記ページのコードが参考になると思います。
https://xakuro.com/blog/wordpress/1376/多少複雑なので、新しいバージョン2.2.9より簡単に取得することができる XO_Event_Calendar::get_the_category 関数を用意しました。
使用例:
$cats = $xo_event_calendar->get_the_category(); if ( $cats ) { echo $cats[0]->id; // ID echo $cats[0]->name; // 名前 echo $cats[0]->slug; // スラッグ echo $cats[0]->color; // 色 (HEX) }お試しください。
Forum: Plugins
In reply to: [XO Featured Image Tools] Can assign feature image from a folder?Sorry. At the moment, that’s very rare, so I can’t include it in the plugin.
Forum: Plugins
In reply to: [XO Featured Image Tools] Can assign feature image from a folder?Hi,
sorry. There is no such feature.
For external images, treat them as different images.Forum: Plugins
In reply to: [XO Featured Image Tools] ACF Pro のギャラリーイメージ※ 投稿が重複したため削除しました。
- This reply was modified 5 years, 6 months ago by ishitaka.
Forum: Plugins
In reply to: [XO Featured Image Tools] ACF Pro のギャラリーイメージこんにちは
プラグインは、カスタムフィールドには対応していません。
テーマの functions.php を編集可能であれば、下記のようなコードでできるかもしれません。function acf_set_featured_image( $value, $post_id, $field ) { if ( $value ) { add_post_meta( $post_id, '_thumbnail_id', $value ); } return $value; } add_filter( 'acf/update_value/name=〇〇〇', 'acf_set_featured_image', 10, 3 );※ 〇〇〇 はフィールド名。
参考ページ: Advanced Custom Fieldsで作ったカスタムフィールドの画像をアイキャッチ画像にする
- This reply was modified 5 years, 6 months ago by ishitaka.