Hidekazu Ishikawa
Forum Replies Created
-
Forum: Reviews
In reply to: [Lightning] coolThanks!! ヽ(???)?
Forum: Themes and Templates
In reply to: [Lightning] カスタム投稿の設定でページがエラー私の環境で症状は確認できていないのですが、
ExUnitの最新バージョンでは投稿タイプマネージャーという機能が追加されていて、コードを書かなくても管理画面から投稿タイプが追加出来るようになっています。
ExUnitの有効化設定画面で一番下の方に「カスタム投稿タイプマネージャー」という項目があると思うので、それをチェックすると、管理画面のメニューに「カスタム投稿タイプ設定」という項目が現れますのでそちらをお試しください。
設定方法について今週中に解説記事を追加いたします。
ドキュメントが追いついておらず恐縮ですがよろしくお願いいたします。Forum: Themes and Templates
In reply to: [Lightning] 日付アーカイブのページでh1の表示で月が2つですありがとうございます。
リリースまでしばらくお待ち願います。
https://github.com/kurudrive/Lightning/commit/5db911350914f7a64b17fa9f209608cdfe4e797dForum: Plugins
In reply to: [VK Post Author Display] カスタム投稿タイプに表示させる方法遅くなりましてすみません。
1.3.9以降なら
add_filter( 'pad_display_post_types','add_pad_custom_post_types' ); function add_pad_custom_post_types($post_types){ $post_types[] = 'page'; // ←カスタム投稿タイプ名 return $post_types; }
みたいな感じでいけるかと思います。
Forum: Plugins
In reply to: [VK All in One Expansion Unit] イントール後、管理画面の表示が遅くなる> itohh様
1分というのはおかしいですね…
とりあえずお知らせのRSSの読み込みで遅くなっているという指摘は別途いただいていて、そのあたりは先日修正したのですが…自分で管理しているサイトでは1?2秒かかる時はありますが、1分単位で極端に遅くなる事は発生していないですが、他のサイトでも同様に遅い状態でしょうか?
Forum: Themes and Templates
In reply to: [Lightning] Header logo image is too smallHi Tim
If you using the “VK All in one Expansion Unit”
https://www.ads-software.com/plugins/vk-all-in-one-expansion-unit/1. Admin page -> VK ExUnit -> Activate “CSS Customize”.
2. Admin page -> VK ExUnit -> CSS Customize page
3. Input below css after save..siteHeader_logo.navbar-brand img { max-height: 100px; }
Forum: Themes and Templates
In reply to: [Lightning] Show Full Text of blog postsHi.
I released “Ligthning Advanced Unit”
https://www.ads-software.com/plugins/lightning-advanced-unit/
This plugin include “Content Area Posts Widget”.
It’s can display full content text.
Try using all means ??
Forum: Plugins
In reply to: [VK All in One Expansion Unit] カテゴリページやアーカーブページに、SNSボタンがテキストで表示されるあぁ…なるほど…
抜粋欄に全角スペースなど入れれば大丈夫ですが、ちょっと対策検討します。Forum: Themes and Templates
In reply to: [Lightning] モバイル時のスライドメニューの検索フォームを非表示にするには?子テーマのfunctions.phpなどに記載してください。
Please describe in such a child theme functions.phpremove_action( 'lightning_header_before', 'ltg_adv_insert_header_before_html' ); add_action( 'lightning_header_before', 'ltg_adv_insert_header_before_html_no_search' ); function ltg_adv_insert_header_before_html_no_search(){ if ( ltg_adv_is_slide_menu() ) { echo '<div id="bodyInner">'; echo '<section id="navSection" class="navSection" style="padding-top:60px;">'; // echo get_search_form(); echo '</section>'; echo '<div id="wrap">'; } }
Forum: Themes and Templates
In reply to: [Lightning] スマホから操作時のメニューナビゲーション間もなく(数日後)リリース予定の新バージョンで解消されます。
お急ぎの場合は開発中の最新版
https://github.com/kurudrive/Lightning/tree/develop
と 新開発の拡張プラグイン Lightning Advanced Unit(公式ディレクトリ登録済み)
をご利用下さい。上記 Lightning Advanced Unit を有効化すると、カスタマイザーからメニューボタンの位置と、メニューの表示方式を選べます。
Forum: Plugins
In reply to: [VK All in One Expansion Unit] VK_Recent Posts filterHi.
Thank you for reporting!
I fixed in 4.0.9.
Forum: Themes and Templates
In reply to: [Lightning] トップページのスライド画像の数を増やせますか?うーん???
スライド画像自体ファイルサイズが大きいので推奨は3枚くらいまでにしています。
ただ、そうもいかない場合もないとは言えないので5枚までは設定していますが、
6枚にしてもやはり実際のところクリック率は低いわりに、トップページで読み込むデータサイズが大きくて表示が遅いとGoogleの評価も下がるので、5枚を越えるのはお勧めしていません。どうしてもという事であれば
functions.php の 156行目くらいのfor ( $i = 1; $i <= 5; ) {
の 5 の数字を6に上げれば変えれますが、今後そこそこの頻度でバージョンアップしますので、都度変更する必要があります。
※ 最初に書いた理由で6枚以上の利用は想定していないので該当箇所のフィルターフックの設定予定はありません。
Forum: Themes and Templates
In reply to: [Lightning] サイトのタイトルとキャッチプレーズVK All In One Expantion Unit 3.9.0 をアップしました。
ExUnitの有効化設定で「タイトルタグの書き換え」が有効になっていれば、
ExUnitのメイン設定で トップページの<title>タグを任意に書き換える事ができます。Forum: Themes and Templates
In reply to: [Lightning] 左右いっぱいに広げるにはIf you using the “VK All in one Expansion Unit”
https://www.ads-software.com/plugins/vk-all-in-one-expansion-unit/1. Admin page -> VK ExUnit -> Activate “CSS Customize”.
2. Admin page -> VK ExUnit -> CSS Customize page
3. Input below css after save..siteContent > .container { background-color:#ccc;width:100%; }
とか、特定のページだけなら
body.page-id-496 .siteContent > .container { background-color:#ccc;width:100%; }
みたいな感じでどうかなと(未検証)
Forum: Themes and Templates
In reply to: [Lightning] Change menu font sizeIf you using the “VK All in one Expansion Unit”
https://www.ads-software.com/plugins/vk-all-in-one-expansion-unit/1. Admin page -> VK ExUnit -> Activate “CSS Customize”.
2. Admin page -> VK ExUnit -> CSS Customize page
3. Input below css after save..gMenu_name { font-size:12px; } .gMenu_description { font-size:10px; }