フォーラムへの返信
3件の投稿を表示中 - 1 - 3件目 (全3件中)
-
投稿者投稿
-
お問い合わせフォームに、物件用項目を作ると、自動で入力されるように反映できました!
自動返答メールにも反映されています。ありがとうございました!
add_filter( 'snow_monkey_forms/control/attributes', function( $attributes ) { // URLからpost_idを取得 $post_id = isset($_GET[‘post_id’]) ? intval($_GET[‘post_id’]) : null; // name 属性値を持つブロックが対象 // name が building という名前のとき if ( isset( $attributes[‘name’] ) && ‘building’ === $attributes[‘name’] ) { // ?post_id で指定された投稿のタイトルを初期値として設定 $attributes[‘value’] = get_the_title( $post_id ); } return $attributes; } );
ありがとうございます。
各物件ページにお問い合わせフォームが埋め込まれている状態です。
私はエンジニアではないので、分からないところが多く申し訳ないのですが、下記My snow Monkeyに追加してみました。
合っていますでしょうか。add_filter( 'snow_monkey_forms/control/attributes', function( $attributes ) { // URLからpost_idを取得 $post_id = isset($_GET['post_id']) ? intval($_GET['post_id']) : null; // name 属性値を持つブロックが対象 // name が fullname という名前のとき if ( isset( $attributes['name'] ) && 'fullname' === $attributes['name'] ) { // ?post_id で指定された投稿のタイトルを初期値として設定 $attributes['value'] = get_the_title( $post_id ); } return $attributes; } );
またどのページからお問い合わせが来たかを、自動メールに反映させるにはどちらを編集すれば良いでしょうか。
自動メールには、お客様がお問い合わせフォームを記入して送信した、ページのURLを反映させたいです。♥ 0いいねをした人: 居ません -
投稿者投稿
3件の投稿を表示中 - 1 - 3件目 (全3件中)