MW WP Formの同一ページ内の遷移において、アンカー位置を調整。 テーマ側にタイトルを付けるなど、位置を変えたい場合には \wp-content\plugins\mw-wp-form\js\scroll.js に修正値を記載。 jQuery( function( $ ) { var posy = $( '.mw_wp_form_input, .mw_wp_form_confirm, .mw_ […]
同意にチェックが入れないと、送信ボタンを押せないようにする <p>[mwform_checkbox name="form-agree" id="agree" children="規約に同意する" vertically="true"]</p> <div>[mwform_submitButton name="mwform_submitButton" confirm_ […]
エラー表示で出力されるspanのクラスを変更する。 <span class="error">未入力です。</span> ■functions.php add_filter( 'mwform_error_message_html', 'custom_mwform_error_message_html', 10, 2 ); function custom_mwform_erro […]
formタグは固定ページ=the_content()に書き込まれるので、その時点でソースを書き換えてしまう。 ■idの追加 $tmp_content = get_the_content(); $tmp_content = apply_filters( 'the_content', $tmp_content ); // フィルターフックを適用 $tmp_content = str_replace( […]