gracer
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Reviews
In reply to: [GET Params] This plugin boggles my mindBeen looking for this solution for years.
Forum: Plugins
In reply to: [Contact Form 7 Get and Show Parameter from URL] hash in the urlPlease let us know
Forum: Fixing WordPress
In reply to: Add code to function.phpI crash my site everytime too
function add_parameter_to_url($content) { $transaction_id=""; if(!empty($_GET['transaction_id'])) $transaction_id=$_GET['transaction_id']; $aff_sub=""; if(!empty($_GET['aff_sub'])) $aff_sub=$_GET['aff_sub']; $aff_sub2=""; if(!empty($_GET['aff_sub2'])) $aff_sub2=$_GET['aff_sub2']; $source=""; if(!empty($_GET['source'])) $source=$_GET['source']; $affiliate_id=""; if(!empty($_GET['affiliate_id'])) $source=$_GET['affiliate_id']; $content=str_replace('{transaction_id}',$transaction_id,$content); $content=str_replace('{aff_sub}',$aff_sub,$content); $content=str_replace('{aff_sub2}',$aff_sub2,$content); $content=str_replace('{source}',$source,$content); $content=str_replace('{affiliate_id}',$affiliate_id,$content); //$content="testing"; return $content; } add_filter( 'the_content', 'add_parameter_to_url',20 );`
Forum: Plugins
In reply to: [URL Params] Can it be used in links?Did you get this to work??
Forum: Fixing WordPress
In reply to: Grabbing Dynamic Parameters and then Passing it in the link outThank you, anyone you recommend?
Viewing 5 replies - 1 through 5 (of 5 total)