Hidekazu Ishikawa
Forum Replies Created
-
Forum: Plugins
In reply to: [VK Post Author Display] Email Contact OptionThanks your for your request.
Please wait a about 1 week.
https://github.com/vektor-inc/vk-post-author-display/issues/15
Forum: Themes and Templates
In reply to: [Lightning] Lightning ホームのヘッダーメニューについて一度親テーマに戻して確認するか、
外観 > カスタマイズ > Lightning デザイン設定で スキンを Origin に変更して再読み込みしてください。
Forum: Plugins
In reply to: [VK Blocks] viewHelper.js is missingOh… Thank you for your report!!
I’m ashamed about the basic bug.
I’m planning on this bug fix until tomorrow.Forum: Themes and Templates
In reply to: [Lightning] LightningのChangeLogを確認したい善処します。
詳細はこちら参照ください。
https://github.com/vektor-inc/Lightning/commits/masterForum: Plugins
In reply to: [VK Post Author Display] Change the structure of the urlIf you aleady customized author archive page permalink that
please write to such as child theme’s functions.phpadd_filter( 'author_link', 'my_author_link_change' ); function my_author_link_change( $link ) { global $post; $user = get_userdata( $post->post_author ); $link = home_url( user_trailingslashit( '/usuario/' . $user->data->user_login ) ); return $link; }
- This reply was modified 5 years, 9 months ago by Hidekazu Ishikawa.
Forum: Plugins
In reply to: [VK Post Author Display] Change the structure of the urlAh…
Should say:
https://mysite.com/usuario/username/This page is aleady exist?
( You aleady customized author archive page permalink? )Forum: Plugins
In reply to: [VK All in One Expansion Unit] ガイドライン違反について> @technote0space 様
ありがとうございます。再公開されました。
この度はご指摘ありがとうございました!現在改めてガイドラインを確認しておりますが、
また問題点など発見しましたらご指摘いただければ幸いです。諸々対応いただきありがとうございました。
Forum: Plugins
In reply to: [VK All in One Expansion Unit] ガイドライン違反について> @technote0space 様
詳細ありがとうございます!
はい、レビュワーの方からは plugin-update-checker の内容で連絡は受けまして、
関連箇所については先程削除いたしました。上記ご指摘は2点ですが、VK All in One Expansion Unit ではアップデート機能以外で外部のプログラム実行はしていないので、内容としては UpdateChecker の削除で両方とも解消されるという認識で良いでしょうか?
まだあらためてガイドラインを読み直してる途中なので、
他のガイドライン違反が潜んでいるかもしれませんが、
まずは今回の指摘内容での修正漏れや私の認識間違いがあってはいけないので、
お手数ですがご回答いただけますと幸いです。よろしくお願いいたします。
- This reply was modified 5 years, 9 months ago by Hidekazu Ishikawa.
Forum: Plugins
In reply to: [VK All in One Expansion Unit] ガイドライン違反についてすみませんあと、
https://developer.www.ads-software.com/plugins/wordpress-org/detailed-plugin-guidelines/#8-plugins-may-not-send-executable-code-via-third-party-systems このガイドラインにも騙しています。早急に対応 がされない場合、削除依頼を出しますを得ません。
について、具体的にどのあたりの事でしょうか?
問題点は確実に修正したいのでご教授いただけると助かります。Forum: Plugins
In reply to: [VK All in One Expansion Unit] ガイドライン違反について確認しました。ご指摘ありがとうございます。
修正すると共にガイドラインを再度確認させていただきます。Forum: Plugins
In reply to: [VK Google Job Posting Manager] 表示時のフィルターについて////////////////////////////////////////////// // 金額の上限?加減のセパレーターを書き換える ////////////////////////////////////////////// function my_vgjpm_salary_separater() { return 'から'; } add_filter( 'vgjpm_salary_separater', 'my_vgjpm_salary_separater' ); ////////////////////////////////////////////// // 表のHTMLマークアップを改変する ////////////////////////////////////////////// function my_vgjpm_jobInfo_tags_custom( $tags ) { $tags = array( 'outer_before' => '<dl>', 'title_before' => '<dt>', 'title_after' => '</dt>', 'content_before' => '<dd>', 'content_after' => '</dd>', 'outer_after' => '</dl>', ); return $tags; } add_filter( 'vgjpm_jobInfo_tags', 'my_vgjpm_jobInfo_tags_custom' ); ////////////////////////////////////////////// // HTMLごと書き換える ////////////////////////////////////////////// function my_vgjpm_render_job_posting_info_custom( $html ) { // Google求人情報用のカスタムフィールドに保存した値を取得 global $post; $custom_fields = vgjpm_get_custom_fields( $post->ID ); $html = ''; $html .= '<h4>' . $custom_fields['vkjp_title'] . ':' . __( 'Job Title', 'vk-google-job-posting-manager' ) . '</h4>'; $html .= '<div>' . esc_html( $custom_fields['vkjp_title'] ) . '</div>'; $html .= '<h4>' . __( 'Description', 'vk-google-job-posting-manager' ) . '</h4>'; $html .= '<div>' . nl2br( esc_textarea( $custom_fields['vkjp_description'] ) ) . '</div>'; return $html; } add_filter( 'vgjpm_render_job_posting_info', 'my_vgjpm_render_job_posting_info_custom' );
Forum: Plugins
In reply to: [VK Google Job Posting Manager] 表示時のフィルターについて確認?調整中ですので今しばらくお待ちください。
Forum: Themes and Templates
In reply to: [Lightning] Slider arrows no longer workingHi.
I think other plugins gave rise to this problem.
Please step by stop each plugins and check out click actions.
Forum: Themes and Templates
In reply to: [Lightning] 多言語ページでのスライドショー切り替えLightningのサイトは Multisite Language Switcher を使っています。
英語版のサイトの方は画像を1枚しか設定していないだけの設定です。Forum: Themes and Templates
In reply to: [Lightning] Lightning ページヘッダー 設定が表示されません返信おそくなりましてすみません。
カスタマイズ画面を再読込したら表示されると思いますが如何でしょう?