プロフィール
とん吉
とん吉
はじめまして、とん吉でぅ。

とん吉ブログを読んでいただき、まこちにありがとうごじます。
< 2024年11月 >
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
オーナーへメッセージ

WP|Contact form 7へタイトルを自動表示させる

2012年09月06日
商品詳細ページのお問い合わせボタンを押したとき、
お問い合わせフォームの商品名に記事タイトルの商品名を自動表示させる方法です。

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

グリコネットショップ     



同じカテゴリー(WordPress)の記事
 Custom Fields Searchとカスタム投稿 (2012-09-06 15:59)
 WP|カスタム投稿の用意 (2012-09-04 15:43)
 WP|カスタムフィールドテンプレート カテゴリー分け (2012-09-04 14:56)
 WordPress|記事内の一枚目の画像を取得する (2012-08-28 13:25)

Posted by とん吉 at 11:45│Comments(2)WordPress
この記事へのコメント
この方法で試しているのですが、どうしてもできません。

リンク先の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
Posted by Betty Anaya at 2024年07月20日 11:51
 
<ご注意>
書き込まれた内容は公開され、ブログの持ち主だけが削除できます。

削除
WP|Contact form 7へタイトルを自動表示させる
    コメント(2)