So, I hear alot of people complaining about shitty Quality Scores, besides the usual having a decent ad copy, privacy policy, relevant title, etc. and all that fun shit... There is another simple way you can do a good job of helping your QS...
Enter Adwords DKI (Dynamic Keyword Insertion) - For people who have never heard of it, its exactly what it sounds like, it will plug the keyword that was searched and your ad was found for into your ad where you specify, you can add it to the Ad Copy itself, or, better yet, you can add it to the "Destination URL" for your ad...
For this, you must have PHP, if you have hosting that doesnt have PHP, your not a serious marketer and you should just go suck a donkey dick...
We are going to use good ol "Widgets" as our example...
Ill get to the Adwords ad in a second, first, were going to setup our PHP code first... So assuming you already have you landing page made, you will want to enter this at the top of your page... MAKE SURE YOU SAVE THE PAGE AS .PHP
Let me explain that code a little bit, essentially, its grabbing the string in the "src" portion of the URL for that page - So, if you were to put that into your file called "index.php" and you typed in "http://mydomain.com/index.php?src=blue%20widgets" then $srcKeyword is now equal to "blue widgets" - As a fallback and last resort, if someone comes to the page and "src" is not set in the URL it will just change $srcKeyword to "Widgets" so its not blank and there is still some benefit - Lastly, the $replaceSymbol is just a list of symbols and junk that will be replaced should some joker decide to enter it... So even if "blue wi^@!dgets" is entered in the "src" of the URL it will be stripped out and display without that shit on the page....
Okay, so now, go crazy with this... Use it in your Title tags, meta tags and Header Tags, whereever you feel its necessary - to do this... Just copy and paste the following to where you would like to use it
An example implementation would be the following:
Side Hint: You can use Header tags(h1, h2, h3) in normal text by changing the CSS for each of them by adding "display: inline;" to their CSS declaration.
Now, for the Adwords portion of this - Go in and edit one of your ads, in the "Destination URL" enter the URL to your landing page and add the DKI crap onto it... Soooooo....
Before:
After:
Now, looking at that, its a bit strange im sure... Pretty much were telling the ad that we want the Search term that triggered our ad to be added onto the end of our URL
You can change "DefaultText" to a Catch All of sorts, if for some odd reason the Dynamic Keyword thats inserted is too long and makes your Destination URL longer then 1024 characters it will just use whatever word you put in for DefaultText - In this case, just change it to somethign simple like "Widgets"
Now, there are a few options you can use for the "KeyWord" declaration, you can actually change the capilization of the keywords entered, here is a break down of the formats...
ALSO!!!!! - This will allow you to track converting Keywords, you can then use some PHP to add the Keyword to a Sub ID(If your network supports SIDs) to track Clicks and Conversions for each keyword - I would suggest you not send the raw keywords to your affiliate network unless you truly trust them (Gives them a nice keyword list and shows which of those keywords convert, duurrrr)
Enter Adwords DKI (Dynamic Keyword Insertion) - For people who have never heard of it, its exactly what it sounds like, it will plug the keyword that was searched and your ad was found for into your ad where you specify, you can add it to the Ad Copy itself, or, better yet, you can add it to the "Destination URL" for your ad...
For this, you must have PHP, if you have hosting that doesnt have PHP, your not a serious marketer and you should just go suck a donkey dick...
We are going to use good ol "Widgets" as our example...
Ill get to the Adwords ad in a second, first, were going to setup our PHP code first... So assuming you already have you landing page made, you will want to enter this at the top of your page... MAKE SURE YOU SAVE THE PAGE AS .PHP
Code:
<?php
$srcKeyword = $_GET['src'];
if(!isset($srcKeyword) || empty($srcKeyword)) {
$srcKeyword = "Widgets";
}
$replaceSymbol = array("!", "@", "#", "$", "^", "&", "*", "(", ")");
$srcKeyword = str_replace($replaceSymbol,"",$srcKeyword);
?>
Okay, so now, go crazy with this... Use it in your Title tags, meta tags and Header Tags, whereever you feel its necessary - to do this... Just copy and paste the following to where you would like to use it
Code:
<?php echo $srcKeyword; ?>
Code:
Are you looking for the cheapest <h1><?php echo $srcKeyword; ?></h1> around - you can find all of the best <i><?php echo $srcKeyword; ?></i> at MySite.Com!
Now, for the Adwords portion of this - Go in and edit one of your ads, in the "Destination URL" enter the URL to your landing page and add the DKI crap onto it... Soooooo....
Before:
Code:
http://MyDomain.Com/
Code:
http://MyDomain.Com/index.php?src={KeyWord:DefaultText}
You can change "DefaultText" to a Catch All of sorts, if for some odd reason the Dynamic Keyword thats inserted is too long and makes your Destination URL longer then 1024 characters it will just use whatever word you put in for DefaultText - In this case, just change it to somethign simple like "Widgets"
Now, there are a few options you can use for the "KeyWord" declaration, you can actually change the capilization of the keywords entered, here is a break down of the formats...
- keyword - no capitalization
- Keyword - First word is capitalized
- KeyWord - Every Word Is Capitalized
- KEYword - EVERY letter in first word is capitalized
- KEYWord - LIKE Above But With Each Word Capitalized
- KEYWORD - EVERY LETTER IS CAPITALIZED
ALSO!!!!! - This will allow you to track converting Keywords, you can then use some PHP to add the Keyword to a Sub ID(If your network supports SIDs) to track Clicks and Conversions for each keyword - I would suggest you not send the raw keywords to your affiliate network unless you truly trust them (Gives them a nice keyword list and shows which of those keywords convert, duurrrr)