プロフィール
とん吉
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
MENU
最近の記事
静岡新聞 2013年2月12日 夕刊 (2/13)
息子が図書券で買った本 (9/10)
WP|カスタム投稿の用意 (9/4)
WordPress|記事内の一枚目の画像を取得する (8/28)
息子のため (7/26)
念願のベットが到着!! (7/20)
デコで大変身! (7/10)
過去記事
最近のコメント
Betty Anaya / WP|Contact form 7へタイト・・・
geRoesonpae / Custom Fields Searchとカス・・・
とん吉 / 静岡新聞 2013年2月12日 夕刊
吾亦紅(われもこう) / 静岡新聞 2013年2月12日 夕刊
とん吉 / WP|Contact form 7へタイト・・・
ブログ内検索
WP|Contact form 7へタイトルを自動表示させる
2012年09月06日
商品詳細ページのお問い合わせボタンを押したとき、
お問い合わせフォームの商品名に記事タイトルの商品名を自動表示させる方法です。
Contact Form 7 の設定が下記の場合
functions.php に以下を追加
function my_form_tag_filter($tag){
if ( ! is_array( $tag ) )
return $tag;
if(isset($_GET['goods'])){
$name = $tag['name'];
if($name == 'goods')
$tag['values'] = (array) $_GET['goods'];
}
return $tag;
}
add_filter('wpcf7_form_tag', 'my_form_tag_filter', 11);
「goods」 の部分は各自変更してください。
single.phpの各ボタンのリンク先を下記に変更
<a href='/?page_id=123&goods=<?php the_title(); ?>'>お問い合わせはこちら</a>
デザインどや!?さんより引用しております。
http://www.doya-doya.com/diary/2010/10/04/2806
お問い合わせフォームの商品名に記事タイトルの商品名を自動表示させる方法です。
Contact Form 7 の設定が下記の場合
<p>商品名<br /> [text goods] </p>
functions.php に以下を追加
function my_form_tag_filter($tag){
if ( ! is_array( $tag ) )
return $tag;
if(isset($_GET['goods'])){
$name = $tag['name'];
if($name == 'goods')
$tag['values'] = (array) $_GET['goods'];
}
return $tag;
}
add_filter('wpcf7_form_tag', 'my_form_tag_filter', 11);
「goods」 の部分は各自変更してください。
single.phpの各ボタンのリンク先を下記に変更
<a href='/?page_id=123&goods=<?php the_title(); ?>'>お問い合わせはこちら</a>
デザインどや!?さんより引用しております。
http://www.doya-doya.com/diary/2010/10/04/2806
Posted by とん吉 at 11:45│Comments(2)
│WordPress
この記事へのコメント
この方法で試しているのですが、どうしてもできません。
リンク先のURLが URL&goods=記事タイトルになっているため、
ページが見つかりませんになってしまいます。
どなたか対処方法をご存じでしたら教えてください。
リンク先のURLが URL&goods=記事タイトルになっているため、
ページが見つかりませんになってしまいます。
どなたか対処方法をご存じでしたら教えてください。
Posted by とん吉 at 2012年09月06日 16:32
Hi there,
Are you tired of paying monthly fees for website hosting, cloud storage, and funnels?
We offer a revolutionary solution: host unlimited websites, files, and videos for a single, low one-time fee. No more monthly payments.
Learn more: https://furtherinfo.org/0wg3
Here's what you get:
Ultra-fast hosting powered by Intel® Xeon® CPU technology
Unlimited website hosting
Unlimited cloud storage
Unlimited video hosting
Unlimited funnel creation
Free SSL certificates for all domains and files
99.999% uptime guarantee
24/7 customer support
Easy-to-use cPanel
365-day money-back guarantee
Plus, get these exclusive bonuses when you act now:
60+ reseller licenses (sell hosting to your clients!)
10 Fast-Action Bonuses worth over $19,997 (including AI tools, traffic generation, and more!)
Don't miss out on this limited-time offer! The price is about to increase, and this one-time fee won't last forever.
Click here to learn more: https://furtherinfo.org/0wg3
Betty
If you do not wish to receive any further offers:
https://removeme.click/wp/unsubscribe.php?d=ton3.i-ra.jp
Are you tired of paying monthly fees for website hosting, cloud storage, and funnels?
We offer a revolutionary solution: host unlimited websites, files, and videos for a single, low one-time fee. No more monthly payments.
Learn more: https://furtherinfo.org/0wg3
Here's what you get:
Ultra-fast hosting powered by Intel® Xeon® CPU technology
Unlimited website hosting
Unlimited cloud storage
Unlimited video hosting
Unlimited funnel creation
Free SSL certificates for all domains and files
99.999% uptime guarantee
24/7 customer support
Easy-to-use cPanel
365-day money-back guarantee
Plus, get these exclusive bonuses when you act now:
60+ reseller licenses (sell hosting to your clients!)
10 Fast-Action Bonuses worth over $19,997 (including AI tools, traffic generation, and more!)
Don't miss out on this limited-time offer! The price is about to increase, and this one-time fee won't last forever.
Click here to learn more: https://furtherinfo.org/0wg3
Betty
If you do not wish to receive any further offers:
https://removeme.click/wp/unsubscribe.php?d=ton3.i-ra.jp
Posted by Betty Anaya at 2024年07月20日 11:51
アクセスカウンタ