<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Corey Lendrum, Author at Codefixer</title>
	<atom:link href="https://www.codefixer.com/blog/author/corey/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description></description>
	<lastBuildDate>Fri, 07 Mar 2025 10:42:10 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>Using Regex (Regular Expressions) in Digital Marketing</title>
		<link>https://www.codefixer.com/blog/using-regex-regular-expressions-in-digital-marketing/</link>
		
		<dc:creator><![CDATA[Corey Lendrum]]></dc:creator>
		<pubDate>Mon, 29 Nov 2021 16:47:51 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.codefixer.com/?p=3854</guid>

					<description><![CDATA[<p>What Is A Regular Expression: A Regular Expression, or Regex for short, is a string of text that allows us to manage, match, filter and extract text. Regex is particularly useful in digital marketing where it’s often necessary to extract specific pieces of useful data from large data sets. Extracting this useful data can be  [...]</p>
<p>The post <a href="https://www.codefixer.com/blog/using-regex-regular-expressions-in-digital-marketing/">Using Regex (Regular Expressions) in Digital Marketing</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2><b>What Is A Regular Expression:</b></h2>
<p><span style="font-weight: 400;">A Regular Expression, or Regex for short, is a string of text that allows us to manage, match, filter and extract text.</span></p>
<p><span style="font-weight: 400;">Regex is particularly useful in digital marketing where it’s often necessary to extract specific pieces of useful data from large data sets.</span></p>
<p><span style="font-weight: 400;">Extracting this useful data can be a cumbersome task when completed manually, often requiring significant time. With Regex, we can use formulae to simplify and speed up these tasks.</span></p>
<p><span style="font-weight: 400;">Whilst Regex can appear daunting or intimidating at first,  this blog should demonstrate how simple Regex can be, and help encourage other marketers to make a start on eliminating and automating the most boring and time-consuming parts of data analysis. </span></p>
<h3><b>Common Tokens:</b></h3>
<p><span style="font-weight: 400;">A Regular Expression consists of tokens. Each of these tokens matches a single character or series of characters within your data set or determine the position in which a character must be. We can see some examples of the most commonly used tokens in the table below.</span></p>
<table>
<tbody>
<tr>
<td><b>Token</b></td>
<td><b>Function</b></td>
</tr>
<tr>
<td><span style="font-weight: 400;">|</span></td>
<td><span style="font-weight: 400;">Alternate, either/or. “A|B” matches with, both “A” and “B”.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">.</span></td>
<td><span style="font-weight: 400;">Matches with any single character other than a new line. </span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">*</span></td>
<td><span style="font-weight: 400;">Matches zero or more than. So “.*” matches with zero or more of any character other than a new line.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">+</span></td>
<td><span style="font-weight: 400;">Matches one or more than. So “.+” matches with one or more of any character other than a new line.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">?</span></td>
<td><span style="font-weight: 400;">Matches zero or one time. So “.?” matches if there are zero or one of any character other than a new line.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">\</span></td>
<td><span style="font-weight: 400;">Matches the following character literally. So “\.” matches with only “.” and no other characters.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">(&#8230;)</span></td>
<td><span style="font-weight: 400;">Rounded brackets denote a capture group. Everything within the rounded brackets is captured.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">(?:&#8230;)</span></td>
<td><span style="font-weight: 400;">Rounded brackets followed by a “?:” denotes a non-capture group. This is similar to a capture group but the content isn’t retained.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">{&#8230;}</span></td>
<td><span style="font-weight: 400;">Curly brackets determine how many instances of the previous token you would like to match. For example, “(a{1,3})” will match between 1 and 3 instances of the letter “a”.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">[&#8230;]</span></td>
<td><span style="font-weight: 400;">Square brackets allow us to define ranges or different characters or tokens to be matched. For example, “[A-z]” matches any upper or lower case letter.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">^</span></td>
<td><span style="font-weight: 400;">A “^” matches the start of a string, or when used inside square brackets means characters not in a range. For example [^A-z] will not match with any lower case or upper case letters. </span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">$</span></td>
<td><span style="font-weight: 400;">A “$” matches the end of a string. For example, “[A-z]$” will match with an upper or lower case letter when it is found at the end of the string.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">\s</span></td>
<td><span style="font-weight: 400;">“\s” matches with any whitespace character. </span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">\S</span></td>
<td><span style="font-weight: 400;">“\S” matches with any non-whitespace character.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">\d</span></td>
<td><span style="font-weight: 400;">“\d” matches with any digit character. </span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">\D</span></td>
<td><span style="font-weight: 400;">“\D” matches with any non-digit character.</span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">\w</span></td>
<td><span style="font-weight: 400;">“\w” matches with any letter, digit, or underscore. </span></td>
</tr>
<tr>
<td><span style="font-weight: 400;">\W</span></td>
<td><span style="font-weight: 400;">“\W” matches with anything other than a letter, digit, or underscore.</span></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<h2><b>Examples of Useful Applications for Regex in Digital Marketing:</b></h2>
<h3><b>Screaming Frog</b></h3>
<p><span style="font-weight: 400;">In Screaming Frog we can perform custom extractions using Regex. Custom extractions allow us to extract tons of useful information from a website.</span></p>
<p><span style="font-weight: 400;">Some examples of data we can extract include; Email addresses, tracking IDs, Schema Markup, Page Titles, URLs, and tons more. If you can think of it, you can probably use Regex to find it!</span></p>
<p><span style="font-weight: 400;">In the image below we can see an example of a Regex used to find email addresses. This can be useful, as having email addresses in plain text on your website can be a security vulnerability and result in email addresses being scraped. </span></p>
<p><img decoding="async" class="alignnone size-full wp-image-3859" src="https://www.codefixer.com/wp-content/uploads/2021/11/email_regex-2.png" alt="Custom Extraction on Screaming Frog using Regex" width="558" height="342" srcset="https://www.codefixer.com/wp-content/uploads/2021/11/email_regex-2-200x123.png 200w, https://www.codefixer.com/wp-content/uploads/2021/11/email_regex-2-300x184.png 300w, https://www.codefixer.com/wp-content/uploads/2021/11/email_regex-2-400x245.png 400w, https://www.codefixer.com/wp-content/uploads/2021/11/email_regex-2.png 558w" sizes="(max-width: 558px) 100vw, 558px" /></p>
<ol>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 1 shows the beginning of the capture group</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 2 matches any upper case letters, lower case letters, or underscores</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 3 tells us we are looking for 1 or more instances of step 2</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 4 matches with the @</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 5 matches any upper case letters, lower case letters, or underscores</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 6 tells us we are looking for 1 or more instances of step 5</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 7 matches with a period, we must use a \ so we match with the period literally, and not the “.” function</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 8 matches with any upper case letters, lower case letters, underscores, or periods</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 9 tells us we are looking for between 2 and 5 occurrences of step 8</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 10 shows the closing of the capture group</span></li>
</ol>
<p><span style="font-weight: 400;">If we do a custom extraction of screaming frog using the Codefixer website and run a crawl we can then see any of the email addresses that appear on the website.</span></p>
<p><img decoding="async" class="alignnone size-full wp-image-3860" src="https://www.codefixer.com/wp-content/uploads/2021/11/custom_extraction.jpg" alt="Screaming Frog Custom Extraction" width="711" height="93" srcset="https://www.codefixer.com/wp-content/uploads/2021/11/custom_extraction-200x26.jpg 200w, https://www.codefixer.com/wp-content/uploads/2021/11/custom_extraction-300x39.jpg 300w, https://www.codefixer.com/wp-content/uploads/2021/11/custom_extraction-400x52.jpg 400w, https://www.codefixer.com/wp-content/uploads/2021/11/custom_extraction-600x78.jpg 600w, https://www.codefixer.com/wp-content/uploads/2021/11/custom_extraction-700x93.jpg 700w, https://www.codefixer.com/wp-content/uploads/2021/11/custom_extraction.jpg 711w" sizes="(max-width: 711px) 100vw, 711px" /></p>
<h3><b>Google Analytics</b></h3>
<p><span style="font-weight: 400;">Google Analytics allows us to use Regex for a number of applications such as; filtering views, creating goals, creating audiences, content grouping, and channel grouping. </span></p>
<p><span style="font-weight: 400;">In the example below we can see an example of Regex used on Google Analytics to filter to only show pageviews for either blog or case study pages. Admittedly this is a bit overkill, you could just use (blog|case), but this gives a better demonstration as to how it works.</span></p>
<p><img decoding="async" class="alignnone size-full wp-image-3861" src="https://www.codefixer.com/wp-content/uploads/2021/11/analytics_regex-1.png" alt="Regex in Google Analytics" width="370" height="294" srcset="https://www.codefixer.com/wp-content/uploads/2021/11/analytics_regex-1-177x142.png 177w, https://www.codefixer.com/wp-content/uploads/2021/11/analytics_regex-1-200x159.png 200w, https://www.codefixer.com/wp-content/uploads/2021/11/analytics_regex-1-300x238.png 300w, https://www.codefixer.com/wp-content/uploads/2021/11/analytics_regex-1.png 370w" sizes="(max-width: 370px) 100vw, 370px" /></p>
<ol>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 1 shows the beginning of the capture group</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 2 means that this must be the beginning of the string</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 3 matches with a “/”. We use the “\” before the forward-slash to match with exactly that character literally</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 4 matches with the word “blog”</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 5 matches with any character except a new line one or more times</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 6 means we need to match with something before or after the vertical bar</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 7 means that this must be the beginning of the string</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 8 matches with a “/”. We use the “\” before the forward-slash to match with exactly that character literally</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 9 matches with the word “case”</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 10 matches with any character except a new line one or more times</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 11 shows the closing of the capture group</span></li>
</ol>
<p><span style="font-weight: 400;">When we filter our Google Analytics view, we can now see that we are only seeing page-views for our pages that are in the blog or case studies sub-folders. </span></p>
<p><img decoding="async" class="alignnone size-full wp-image-3862" src="https://www.codefixer.com/wp-content/uploads/2021/11/regex_filter_view.jpg" alt="" width="678" height="465" srcset="https://www.codefixer.com/wp-content/uploads/2021/11/regex_filter_view-200x137.jpg 200w, https://www.codefixer.com/wp-content/uploads/2021/11/regex_filter_view-300x206.jpg 300w, https://www.codefixer.com/wp-content/uploads/2021/11/regex_filter_view-400x274.jpg 400w, https://www.codefixer.com/wp-content/uploads/2021/11/regex_filter_view-600x412.jpg 600w, https://www.codefixer.com/wp-content/uploads/2021/11/regex_filter_view.jpg 678w" sizes="(max-width: 678px) 100vw, 678px" /></p>
<h3><b>Google Tag Manager</b></h3>
<p><span style="font-weight: 400;">On Google Tag Manager we can use Regex to trigger Google Analytics Events when a user completes an action. </span></p>
<p><span style="font-weight: 400;">One thing we can track using Google Tag Manager is users clicking a telephone number on the website. </span></p>
<p><span style="font-weight: 400;">Occasionally, on a website, tracking simple events such as telephone number clicks can be complicated by formatting or variations of the telephone number appearing on the website. </span></p>
<p><span style="font-weight: 400;">This complicates the process of being able to create a tag in Google Tag Manager to trigger an event when a telephone number is clicked due to it not being in a consistent format, meaning we can not simply set this trigger to fire when the Click URL contains “tel:02890 923383”. </span></p>
<p><span style="font-weight: 400;">Let’s say we have the Codefixer telephone number links on the website in three different forms;</span></p>
<ul>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">tel:02890923383</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">tel:028 90 923383</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">tel:(+44) 2890 923383</span></li>
</ul>
<p><span style="font-weight: 400;">We can use the following Regex to match with all three of the telephone numbers above.</span></p>
<p><img decoding="async" class="alignnone size-full wp-image-3863" src="https://www.codefixer.com/wp-content/uploads/2021/11/phone-number-tracking-with-regex.png" alt="using Regex in Google Tag Manager" width="500" height="294" srcset="https://www.codefixer.com/wp-content/uploads/2021/11/phone-number-tracking-with-regex-200x118.png 200w, https://www.codefixer.com/wp-content/uploads/2021/11/phone-number-tracking-with-regex-300x176.png 300w, https://www.codefixer.com/wp-content/uploads/2021/11/phone-number-tracking-with-regex-400x235.png 400w, https://www.codefixer.com/wp-content/uploads/2021/11/phone-number-tracking-with-regex.png 500w" sizes="(max-width: 500px) 100vw, 500px" /></p>
<ol>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 1 shows the beginning of the non-capture group “(?:”</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 2 will match with “tel:”</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 3 opens the first capture group</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 4 matches with “028” at the beginning of the telephone numbers where this is applicable</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 5 means “or”, so we can match with the first or the next set of characters</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 6 matches with “(+44)”. The “\” is to escape the special characters +, (, and )</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 7 closes the capture group</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 8 matches if there are zero or one whitespace character</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 9 matches with any character between 0-9</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 10 matches if there are zero or one whitespace character</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Step 11 matches with 1 or more of the previous steps and finally closes the non-capture group</span></li>
</ol>
<h2><b>How To Learn Regex:</b></h2>
<p><span style="font-weight: 400;">Whilst the above guide provides an introduction, some examples, and practical applications for Regex, I’ll be first to admit that I’m by no means an expert, and reading a blog post is probably not going to make you an expert all of a sudden.</span></p>
<p><span style="font-weight: 400;">The main way to get better Regex is by rolling up your sleeves and practising your skills on a regular basis. </span></p>
<p><span style="font-weight: 400;">As part of my role as PPC Lead in Codefixer, I’ve started using Regex regularly to simplify and automate simple tasks, and as time has progressed, I’ve begun using it in more complex or complicated situations which have helped to improve my understanding and uses for Regex.  </span></p>
<p><span style="font-weight: 400;">There are a ton of fantastic free resources online for learning Regex. The main three websites that I have found most useful are:</span></p>
<ul>
<li style="font-weight: 400;" aria-level="1"><a href="https://regex101.com/"><span style="font-weight: 400;">https://regex101.com/</span></a><span style="font-weight: 400;"> &#8211; A fantastic website for building, testing &amp; debugging your Regex. I usually always have a tab open on my browser with Regex101 open. This is an absolute lifesaver when you just can’t quite figure out how to do something!</span></li>
<li style="font-weight: 400;" aria-level="1"><a href="https://regexone.com"><span style="font-weight: 400;">https://regexone.com</span></a><span style="font-weight: 400;"> &#8211; Regexone is a website with easy to follow and informative, enjoyable exercises to help you learn and use Regex. The tasks begin quite easy, but quickly progress to become more challenging. Ideal for beginners.</span></li>
<li style="font-weight: 400;" aria-level="1"><a href="https://www.sitepoint.com/learn-regex/"><span style="font-weight: 400;">https://www.sitepoint.com/learn-regex/</span></a><span style="font-weight: 400;"> &#8211; This Sitepoint blog explains Regex in very simple and easy to understand terms. Whilst you probably won’t need this every day, it’ll always have a place on my bookmark bar as a great resource for beginners.</span></li>
</ul>
<p>The post <a href="https://www.codefixer.com/blog/using-regex-regular-expressions-in-digital-marketing/">Using Regex (Regular Expressions) in Digital Marketing</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>The Ultimate 2021 Google Ads Audit Template</title>
		<link>https://www.codefixer.com/blog/ultimate-2021-google-ads-audit-template/</link>
		
		<dc:creator><![CDATA[Corey Lendrum]]></dc:creator>
		<pubDate>Fri, 29 Oct 2021 15:17:54 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.codefixer.com/?p=3834</guid>

					<description><![CDATA[<p>Introduction The key to success on Google Ads in 2021 is having an organised, well structured, and correctly maintained Google Ads account.  Auditing your Google Ads account regularly ensures the account is properly managed and is adapting to the fast-paced environment of paid search, keeping up-to-date with new product features and best practices as they  [...]</p>
<p>The post <a href="https://www.codefixer.com/blog/ultimate-2021-google-ads-audit-template/">The Ultimate 2021 Google Ads Audit Template</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2><span data-preserver-spaces="true">Introduction</span></h2>
<p><span data-preserver-spaces="true">The key to success on Google Ads in 2021 is having an organised, well structured, and correctly maintained Google Ads account. </span></p>
<p><span data-preserver-spaces="true">Auditing your Google Ads account regularly ensures the account is properly managed and is adapting to the fast-paced environment of paid search, keeping up-to-date with new product features and best practices as they continue to evolve. </span></p>
<p><span data-preserver-spaces="true">This Google Ads audit serves as a check-box exercise ensuring that critical errors are not missed when analysing your account, and serves to remove poor-quality and outdated components of your account, ensuring the account is in keeping with contemporary industry-leading methods and techniques. </span></p>
<p><span data-preserver-spaces="true">This audit consists of various sections pertaining to each level of your account, segmenting these steps into the different levels of your account including; Account level, campaign level, ad groups, ads, keywords, extensions, and conversions. </span></p>
<p><span data-preserver-spaces="true">Whilst some sections of this audit may be more, or less relevant than others depending on your specific objectives, products, and/or services, we endeavour to provide a holistic guide of overall Google Ads account management and provide guidelines relevant to every account irrespective of these distinctive characteristics. </span></p>
<h3><span data-preserver-spaces="true">Account Level</span></h3>
<h4><strong><em><span data-preserver-spaces="true">Account Settings:</span></em></strong></h4>
<ul>
<li><strong><span data-preserver-spaces="true">Ad Suggestions </span></strong><span data-preserver-spaces="true">&#8211; This should be set to “Don’t Automatically Apply…”, If this is enabled, suggestions from account notifications will be automatically applied 14 days after notification. </span></li>
<li><strong><span data-preserver-spaces="true">Auto-Tagging</span></strong><span data-preserver-spaces="true"> &#8211; This must be set to “Yes”. This allows Google Ads &amp; Google Analytics to correctly attribute site visits from Google Ads.</span></li>
<li><strong><span data-preserver-spaces="true">Call Reporting</span></strong><span data-preserver-spaces="true"> &#8211; This must be enabled if Call Extensions or Website Call Tracking is being used so we can analyse the call details report.  </span></li>
<li><strong><span data-preserver-spaces="true">Inventory Type</span></strong><span data-preserver-spaces="true"> &#8211; Inventory types provide an extra layer of control over the content your Video ads show on by letting you opt-out of groups of sensitive content.</span></li>
<li><strong><span data-preserver-spaces="true">Excluded Content </span></strong><span data-preserver-spaces="true">&#8211; This allows us to opt-out of showing our ads on the search &amp; display network on sensitive content.</span></li>
<li><strong><span data-preserver-spaces="true">Excluded Types &amp; Labels</span></strong><span data-preserver-spaces="true"> &#8211; This allows us to opt-out of showing our ads on certain types of content or digital content labels. </span></li>
</ul>
<h4><strong><em><span data-preserver-spaces="true">Linked Accounts:</span></em></strong></h4>
<ul>
<li><strong><span data-preserver-spaces="true">Google Analytics</span></strong><span data-preserver-spaces="true"> &#8211; Google Analytics must be linked to track paid traffic, and to import goals and audiences.</span></li>
<li><strong><span data-preserver-spaces="true">Google Merchant Center</span></strong><span data-preserver-spaces="true"> &#8211; Google Merchant Center must be linked to advertise items on your shopping feed in Google Shopping campaigns.</span></li>
<li><strong><span data-preserver-spaces="true">YouTube</span></strong><span data-preserver-spaces="true"> &#8211; YouTube must be linked for monitoring view count, remarketing &amp; viewing engagements.</span></li>
<li><strong><span data-preserver-spaces="true">Search Console</span></strong><span data-preserver-spaces="true"> &#8211; Google Search Console must be linked to view the paid &amp; organic report.</span></li>
</ul>
<h4><strong><em><span data-preserver-spaces="true">Billing Settings:</span></em></strong></h4>
<ul>
<li><strong><span data-preserver-spaces="true">Payment Users &#8211; </span></strong><span data-preserver-spaces="true">The payment user should be someone that isn’t likely to leave the company or a shared accounts department email address. This is very difficult to change if it’s not possible to get in contact with the person that was previously listed as the payment user.</span></li>
<li><strong><span data-preserver-spaces="true">Payment Methods</span></strong><span data-preserver-spaces="true"> &#8211; Ensure the payment method hasn’t expired, or that there is a secondary payment method added. </span></li>
<li><strong><span data-preserver-spaces="true">Identity Verification</span></strong><span data-preserver-spaces="true"> &#8211; If Google Ads has requested identity verification it is imperative that this is completed within the timescale and accurately to prevent disruption of service. There are a limited number of attempts to complete this, so it’s worth taking the time to ensure this is done correctly.</span></li>
</ul>
<h4><strong><em><span data-preserver-spaces="true">Shared Library:</span></em></strong></h4>
<ul>
<li><strong><span data-preserver-spaces="true">Negative Keyword Lists </span></strong><span data-preserver-spaces="true">&#8211; Negative keyword lists should be organised by theme and applied to appropriate campaigns. Negative keywords should very rarely be applied at the campaign or ad group level. It’s generally recommended to have the match type set to phrase for negative keywords.</span></li>
<li><strong><span data-preserver-spaces="true">Placement Exclusion Lists</span></strong><span data-preserver-spaces="true"> &#8211; Placement exclusion lists should be used to prevent display and YouTube ads from showing on poor quality websites, apps, and videos. These can usually be shared between accounts. There are extensive placement exclusion lists available online for free.</span></li>
</ul>
<h3><span data-preserver-spaces="true">Campaign Level</span></h3>
<h4><strong><em><span data-preserver-spaces="true">Campaign Settings:</span></em></strong></h4>
<ul>
<li><strong><span data-preserver-spaces="true">Campaign Name </span></strong><span data-preserver-spaces="true">&#8211; The campaign name should accurately describe the purpose and scope of the campaign, including the type of campaign, where it’s targeting, and what it’s advertising.</span></li>
<li><strong><span data-preserver-spaces="true">Campaign Status </span></strong><span data-preserver-spaces="true">&#8211; This can be enabled, paused or removed. Check that campaigns that shouldn’t be running are paused, and campaigns that should be running are live. </span></li>
<li><strong><span data-preserver-spaces="true">Campaign Goal</span></strong><span data-preserver-spaces="true"> &#8211; Campaigns should have a relevant campaign goal dependent on the purpose of the campaign. This can be leads, sales, or website traffic.</span></li>
<li><strong><span data-preserver-spaces="true">Networks </span></strong><span data-preserver-spaces="true">&#8211; Generally search network &amp; display network should be disabled. </span></li>
<li><strong><span data-preserver-spaces="true">Locations </span></strong><span data-preserver-spaces="true">&#8211; Check that the locations selected are the correct location you intend to target and that no additional locations have been entered by mistake, or left in from the defaults.</span></li>
<li><strong><span data-preserver-spaces="true">Location Options </span></strong><span data-preserver-spaces="true">&#8211; Ensure that target setting under location options is set to “People in, or regularly in your targeted locations” to prevent ads from showing to users outside of the targeted locations. </span></li>
<li><strong><span data-preserver-spaces="true">Campaign Budget </span></strong><span data-preserver-spaces="true">&#8211; There should be a sufficient dedicated budget for campaigns using automated bidding strategies, and the campaign should not show as “Limited By Budget”. </span></li>
<li><strong><span data-preserver-spaces="true">Bidding </span></strong><span data-preserver-spaces="true">&#8211; The bidding option should be appropriate for the bidding strategy. Campaign level bidding is used to set a max CPC, or target return on ad spend on some automated bidding strategies, otherwise, this is handled at the ad group level.</span></li>
<li><strong><span data-preserver-spaces="true">Dynamic Ad Targets </span></strong><span data-preserver-spaces="true">&#8211; Campaigns with Dynamic Search Ads or Dynamic Remarketing ads should have a page feed for search ads applied, or a feed and filter applied for Dynamic Remarketing.</span></li>
<li><strong><span data-preserver-spaces="true">Conversions </span></strong><span data-preserver-spaces="true">&#8211; The “Use the account-level &#8216;Include in &#8216;Conversions&#8217; settings” option should usually be applied. </span></li>
<li><strong><span data-preserver-spaces="true">Ad Rotation</span></strong><span data-preserver-spaces="true"> &#8211; Ad rotation should be set to “Optimise: Prefer best performing ads” unless when specifically testing new ad variations. </span></li>
</ul>
<h3><span data-preserver-spaces="true">Ad Groups</span></h3>
<h4><strong><em><span data-preserver-spaces="true">Ad Group Settings:</span></em></strong></h4>
<ul>
<li><strong><span data-preserver-spaces="true">Ad Group Name </span></strong><span data-preserver-spaces="true">&#8211; The ad group name should accurately describe the purpose and scope of the ad group, briefly describing the keyword theme of the ad group.</span></li>
<li><strong><span data-preserver-spaces="true">Ad Group Status </span></strong><span data-preserver-spaces="true">&#8211; This can be enabled, paused or removed. Check that ad groups that shouldn’t be running are paused, and ad groups that should be running are live. </span></li>
<li><strong><span data-preserver-spaces="true">Bidding </span></strong><span data-preserver-spaces="true">&#8211; On campaigns with manual bidding strategies the bids are set at the ad group level. Ensure there is an appropriate bid applied in the ad group settings.</span></li>
<li><strong><span data-preserver-spaces="true">Ad Rotation</span></strong><span data-preserver-spaces="true"> &#8211; This should normally be set to “Use campaign setting”, the default option.</span></li>
<li><strong><span data-preserver-spaces="true">Targeting Expansion &#8211; </span></strong>Targeting expansion should be disabled when targeting audience lists on display campaigns to prevent poor quality impressions and clicks.</li>
</ul>
<h3><span data-preserver-spaces="true">Ads</span></h3>
<h4><strong><em><span data-preserver-spaces="true">Ads Best Practice:</span></em></strong></h4>
<ul>
<li><strong><span data-preserver-spaces="true">Ad Variations </span></strong><span data-preserver-spaces="true">&#8211; Each search ad group should have a variety of expanded text ads with unique headlines and descriptions. These should be regularly reviewed and updated to test well-performing combinations. Each display ad group should have a variety of dimensions for standard display ads, or assets for responsive display ads. </span></li>
<li><strong><span data-preserver-spaces="true">Ad Strength </span></strong><span data-preserver-spaces="true">&#8211; Responsive search ads and responsive display ads should have an ad strength of average, good, or excellent. Ads showing a poor ad strength should be updated to include more high performing keywords in the headlines and descriptions in responsive search ads, or a better variety of assets in responsive display ads.</span></li>
<li><strong><span data-preserver-spaces="true">Ad Types </span></strong><span data-preserver-spaces="true">&#8211; Each search ad group should contain, at a minimum, one responsive search ad, and two expanded text ads.</span></li>
<li><strong><span data-preserver-spaces="true">Ad Status</span></strong><span data-preserver-spaces="true"> &#8211; This can be enabled, paused or removed. Check that ads that shouldn’t be running are paused, and ads that should be running are enabled. </span></li>
</ul>
<h3><span data-preserver-spaces="true">Keywords</span></h3>
<h4><strong><em><span data-preserver-spaces="true">Keywords Best Practice:</span></em></strong></h4>
<ul>
<li><strong><span data-preserver-spaces="true">Keyword Match Types </span></strong><span data-preserver-spaces="true">&#8211; Keywords should be a combination of phrase and exact match in most circumstances. A high number of broad match keywords suggests a poor quality ad group.</span></li>
<li><strong><span data-preserver-spaces="true">Search Term Accuracy </span></strong><span data-preserver-spaces="true">&#8211; Assess the search terms report and identify the quality of these compared to the keywords that they have matched with. Poor quality search terms should be identified and used to populate the negative keyword lists. </span></li>
<li><strong><span data-preserver-spaces="true">Keyword Quality Score </span></strong><span data-preserver-spaces="true">&#8211; Check that keyword quality score is good. If the quality score of the keywords is very low it could suggest that the keywords are not relevant to the ads, the landing page quality is poor, or the expected clickthrough rate is low. Consider pausing low quality score keywords.</span></li>
<li><strong><span data-preserver-spaces="true">Conflicting Negative Keywords </span></strong><span data-preserver-spaces="true">&#8211; Look for conflicting negative keywords, this can be found in the recommendations tab, or you can use a script to scan your account for negative keyword conflicts. </span></li>
<li><strong><span data-preserver-spaces="true">Keyword Relevancy to Ad Group </span></strong><span data-preserver-spaces="true">&#8211; Make sure that the keywords in each ad group all match a similar theme and are not applied indiscriminately. If there are a large number of keywords with poor relevancy you may want to consider segmenting these to create new ad groups.</span></li>
</ul>
<h3><span data-preserver-spaces="true">Ad Extensions </span></h3>
<h4><strong><em><span data-preserver-spaces="true">Ad Extensions Best Practice:</span></em></strong></h4>
<ul>
<li><strong><span data-preserver-spaces="true">Call Extensions </span></strong><span data-preserver-spaces="true">&#8211; If one of the goals of the Google Ads account is to generate calls make sure a call extension has been added at the account or campaign level and that there is a conversion action applied.</span></li>
<li><strong><span data-preserver-spaces="true">Location Extensions</span></strong><span data-preserver-spaces="true"> &#8211; If users can visit the business location, location extensions should be applied to the account. This will allow us to measure Google hosted conversions such as store visits, calls, direction requests, site visits, and messages. </span></li>
<li><strong><span data-preserver-spaces="true">Structured Snippet Extensions </span></strong><span data-preserver-spaces="true">&#8211; Structured snippets should be used to highlight products or services offered.</span></li>
<li><strong><span data-preserver-spaces="true">Image Extensions </span></strong><span data-preserver-spaces="true">&#8211; Image extensions should be used to display extra information to users on the search engine results page. </span></li>
<li><strong><span data-preserver-spaces="true">Dynamic Image Extensions </span></strong><span data-preserver-spaces="true">&#8211; Dynamic image extensions can be used in place of, or complementary to standard image extensions. These should be monitored to ensure no inappropriate images are showing.</span></li>
<li><strong><span data-preserver-spaces="true">Sitelink Extensions </span></strong><span data-preserver-spaces="true">&#8211; Sitelinks should be applied to the account, campaigns, or ad groups and should contain sitelink text and two high-quality descriptions. </span></li>
<li><strong><span data-preserver-spaces="true">Callout Extensions </span></strong><span data-preserver-spaces="true">&#8211; Callout extensions should be used to highlight information about the business, products or services.</span></li>
<li><strong><span data-preserver-spaces="true">Price Extensions </span></strong><span data-preserver-spaces="true">&#8211; Where price extensions are used they should be up-to-date and relevant to the ads they are showing on. </span></li>
<li><strong><span data-preserver-spaces="true">Automated Extensions</span></strong><span data-preserver-spaces="true"> &#8211; Automated extensions should usually be disabled with the exception of the seller rating extension where appropriate.</span></li>
</ul>
<h3><span data-preserver-spaces="true">Conversions</span></h3>
<h4><strong><em><span data-preserver-spaces="true">Conversion Actions:</span></em></strong></h4>
<ul>
<li><strong><span data-preserver-spaces="true">Calls From Ads </span></strong><span data-preserver-spaces="true">&#8211; This conversion action is triggered when users call from the call extension on the ad. Ensure an appropriate click-through conversion window has been selected and that the call length is set to a minimum of 20/30 seconds to ensure users who connect and drop off in the first few seconds aren’t counted as a conversion.</span></li>
<li><strong><span data-preserver-spaces="true">Conversions Imported from Google Analytics </span></strong><span data-preserver-spaces="true">&#8211; Goals in Google Analytics that are of high value should be imported to Google Ads. These may include contact form tracking, lead form submissions, or similar. </span></li>
<li><strong><span data-preserver-spaces="true">Website Call Tracking </span></strong><span data-preserver-spaces="true">&#8211; Website call tracking can be implemented with Google Tag Manager allowing us to track information in the call details report from users who call the telephone number on the website.</span></li>
<li><strong><span data-preserver-spaces="true">Google Hosted Conversion Actions</span></strong><span data-preserver-spaces="true"> &#8211; If location extensions are added to the account Google hosted conversion actions will be automatically applied to the account.</span></li>
</ul>
<h4><strong><em><span data-preserver-spaces="true">Conversion Settings:</span></em></strong></h4>
<ul>
<li><strong><span data-preserver-spaces="true">Attribution Models </span></strong><span data-preserver-spaces="true">&#8211; Consider which attribution model is most appropriate for the conversion actions. This will generally depend on the length and complexity of the conversion paths. The attribution generally shouldn’t be left on the default of last-click, however, this doesn’t affect conversions, only how these are attributed to each interaction the user has. If data-driven attribution is available it’s suggested that this is used.</span></li>
<li><strong><span data-preserver-spaces="true">Call Conversion Action </span></strong><span data-preserver-spaces="true">&#8211; Ensure a call conversion action has been applied so that details of calls received from the Google Ads account aren’t missed on the conversion reporting.</span></li>
<li><strong><span data-preserver-spaces="true">View-Through Conversions</span></strong><span data-preserver-spaces="true"> &#8211; View-through conversions are useful in identifying ad impressions that haven’t resulted in a click, but have still led to the user converting on the site. This should be enabled. </span></li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>If you would like to discuss improving your <a href="https://www.codefixer.com/google-adwords/">Google Ads</a> account don&#8217;t hesitate to <a href="https://www.codefixer.com/contact/">contact us</a>!</p>
<p>The post <a href="https://www.codefixer.com/blog/ultimate-2021-google-ads-audit-template/">The Ultimate 2021 Google Ads Audit Template</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Comprehensive Guide to Google Ads Image Extensions</title>
		<link>https://www.codefixer.com/blog/comprehensive-guide-to-google-ads-image-extensions/</link>
		
		<dc:creator><![CDATA[Corey Lendrum]]></dc:creator>
		<pubDate>Tue, 15 Jun 2021 14:20:56 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.codefixer.com/?p=3596</guid>

					<description><![CDATA[<p>Back in June 2013, Google released a blog entitled “New Image Extensions Enable You to “Show” and “Tell” with Search Ads” on the now-defunct “Inside AdWords” Blog. This blog confirmed that Google was running a Beta, however, this was soon sunsetted and there was little else mentioned about Image Extensions for several years. In December  [...]</p>
<p>The post <a href="https://www.codefixer.com/blog/comprehensive-guide-to-google-ads-image-extensions/">Comprehensive Guide to Google Ads Image Extensions</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">Back in June 2013, Google released a blog entitled “</span><a href="https://adwords.googleblog.com/2013/06/new-image-extensions-enable-you-to-show.html"><span style="font-weight: 400;">New Image Extensions Enable You to “Show” and “Tell” with Search Ads</span></a><span style="font-weight: 400;">” on the now-defunct “Inside AdWords” Blog. This blog confirmed that Google was running a Beta, however, this was soon sunsetted and there was little else mentioned about Image Extensions for several years.</span></p>
<p><span style="font-weight: 400;">In December 2019 there was a </span><a href="https://www.wordstream.com/blog/ws/2019/12/11/google-image-extensions"><span style="font-weight: 400;">WordStream Blog</span></a><span style="font-weight: 400;"> suggesting Google was now rolling out new image extensions to a select group of advertisers.</span></p>
<p><span style="font-weight: 400;">In July 2020 Google then released a blog entitled “</span><a href="https://blog.google/products/ads-commerce/driving-online-sales"><span style="font-weight: 400;">Decoding decisions to grow online sales</span></a><span style="font-weight: 400;">”. In this blog, Google announced that they were launching an image extensions beta program, which ran until May 2021 when image extensions were extended globally to eligible accounts across the platform. This was rolled out in parallel with Dynamic Image Extensions.</span></p>
<p>In the image below we can see how image extensions were originally supposed to look back in 2013!</p>
<p><img decoding="async" class="alignnone size-full wp-image-3603" src="https://www.codefixer.com/wp-content/uploads/2021/06/inside_adWords.png" alt="" width="1112" height="415" srcset="https://www.codefixer.com/wp-content/uploads/2021/06/inside_adWords-200x75.png 200w, https://www.codefixer.com/wp-content/uploads/2021/06/inside_adWords-300x112.png 300w, https://www.codefixer.com/wp-content/uploads/2021/06/inside_adWords-400x149.png 400w, https://www.codefixer.com/wp-content/uploads/2021/06/inside_adWords-600x224.png 600w, https://www.codefixer.com/wp-content/uploads/2021/06/inside_adWords-768x287.png 768w, https://www.codefixer.com/wp-content/uploads/2021/06/inside_adWords-800x299.png 800w, https://www.codefixer.com/wp-content/uploads/2021/06/inside_adWords-1024x382.png 1024w, https://www.codefixer.com/wp-content/uploads/2021/06/inside_adWords.png 1112w" sizes="(max-width: 1112px) 100vw, 1112px" /></p>
<h3><span style="font-weight: 400;">What Are Image Extensions?</span></h3>
<p><span style="font-weight: 400;">Image extensions allow advertisers to display a landscape (1.9:1) or square image (1:1) alongside their search ads for users searching on mobile devices. </span></p>
<p><span style="font-weight: 400;">The introduction of image extensions allows us to further enrich and enhance our search ads, helping us to provide more information to the user, as well as helping our ads stand out from the competition. </span></p>
<p><span style="font-weight: 400;">These new image extensions can be added at either campaign or ad group level, and each ad group or campaign can have 20 individual image extensions each. </span></p>
<p><span style="font-weight: 400;">There are now two types of image extensions; Standard Image Extensions, and Dynamic Image Extensions.  </span></p>
<h3><span style="font-weight: 400;">What’s The Difference Between Image Extensions &amp; Dynamic Image Extensions?</span></h3>
<p><span style="font-weight: 400;">Standard Image Extensions are simply added at the ad group or campaign level on your search campaigns. These image extensions are generated using assets that have been manually added to the Google Ads account and can be either a square image of 1:1 aspect ratio or a landscape rectangular image with dimensions of 1.9:1. Whilst adding our image extensions there is also a function available enabling us to crop our images if they are not of suitable dimensions. There are other requirements to ensure your extensions aren’t disapproved, we will go into this in more detail further down this blog.</span></p>
<p><span style="font-weight: 400;">Dynamic Image Extensions are generated from images that are currently available on existing landing pages from the website your ads are pointing towards. To enable Dynamic Image Extensions Google requires that you sign a box acknowledging the following content disclaimer; </span></p>
<p><span style="font-weight: 400;">“I confirm that I own all legal rights to the images on the landing pages used by this account (or I have permission to share the images with Google). I hereby instruct Google to publish these images on my behalf for advertising or other commercial purposes.”</span></p>
<p><span style="font-weight: 400;">Simply put, once you have found the rather difficult to find setting to enable Dynamic Image Extensions and accepted the conditions, Google will begin presenting images available on your landing pages alongside your ads. </span></p>
<p><span style="font-weight: 400;">As always, with any Dynamic vs Standard features within Google Ads, the main benefit of the former vs the latter is that we can have much better control over which content we are displaying to users seeing our ads in the SERPs. </span></p>
<p><span style="font-weight: 400;">At Codefixer, we have found it particularly useful to segment the image extensions as much as possible. Results tend to be best when the image most closely reflects the ad, landing page, and keyword that they appear alongside. For example, if you have a campaign for “Mens’ Footwear”, and an ad group each for; “Mens’ Work Boots”, “Mens’ Adidas Trainers”, “Mens’ Wellington Boots”, and “Mens’ Slippers” it’s best to find images that match the ad groups, rather than finding one image for “Mens’ Footwear”. Pretty straightforward stuff, but I thought that would be worth highlighting. </span></p>
<h3><span style="font-weight: 400;">How Do Image Extensions Work?</span></h3>
<p><span style="font-weight: 400;">Image extensions can display alongside your search ads to users searching on mobile devices. We haven’t yet been able to confirm any instances of image extensions showing up on either desktop devices or tablets. We will continue to monitor and update this in due course if we have evidence that these extensions are also appearing on desktop computers or tablets. </span></p>
<p><span style="font-weight: 400;">Image extensions seem to appear only when your ads are showing on the top of the page, however, they are not limited to appearing on ads in position #1. You may wish to consider a target impression share bidding strategy to get these extensions to show as often as possible. </span></p>
<p><span style="font-weight: 400;">In the image below we can see an example of how these image extensions appear to users in Belfast searching for “</span><a href="https://www.codefixer.com/google-adwords/"><span style="font-weight: 400;">PPC Belfast</span></a><span style="font-weight: 400;">”. In this example, the user (me) was searching from a mobile device (simulated iPhone X), and in this instance, our ad appeared in position #1.</span></p>
<p><img decoding="async" class="alignnone wp-image-3602 size-full" src="https://www.codefixer.com/wp-content/uploads/2021/06/image_extensions1.jpg" alt="Google Ads Image Extensions Example" width="371" height="540" srcset="https://www.codefixer.com/wp-content/uploads/2021/06/image_extensions1-200x291.jpg 200w, https://www.codefixer.com/wp-content/uploads/2021/06/image_extensions1-206x300.jpg 206w, https://www.codefixer.com/wp-content/uploads/2021/06/image_extensions1.jpg 371w" sizes="(max-width: 371px) 100vw, 371px" /></p>
<h3><span style="font-weight: 400;">What Are The Image Extensions Requirements?</span></h3>
<p><span style="font-weight: 400;">For your image extensions to be consistently approved you must meet a few simple criteria to ensure the images are of high enough quality and meet the </span><a href="https://support.google.com/adspolicy/answer/10347108"><span style="font-weight: 400;">image extension requirements put forward by Google</span></a><span style="font-weight: 400;">. </span></p>
<p><span style="font-weight: 400;">First, there can be no promotional text or graphic overlay on your images. This includes having your brand logo appearing on your image. Google will also disapprove your logo if you are attempting to use this as an image extension on its own &#8211; Google appears to be extremely strict on this policy. If you submit an image with text or graphic overlay this will likely be immediately disapproved. There is currently no way to submit the image extension for automatic or manual review, so once it is disapproved it will remain that way. </span></p>
<p><span style="font-weight: 400;">Google will also disapprove any image extensions submitted that have too much blank space on the image. This will also cause a disapproved image extension where the focus of the image is such that the product or service cannot be easily recognised. </span></p>
<p><span style="font-weight: 400;">Images that consist of collages or images which are combined will also be disapproved. Google suggests that images containing “naturally occurring” collages such as scrapbooks, catalogues, etc, are all acceptable images, but any image collage that has been created in post-product will be disapproved. </span></p>
<p><span style="font-weight: 400;">Image extensions can also be disapproved for some reasons relating to poor image quality. These include blurry images that make the subject unrecognisable or difficult to identify. Likewise, images that are visually warped or skewed are not appropriate for image extensions. Images that are poorly cropped will also be likely disapproved. All of these reasons relate to poor picture quality, as such, ensure you have the highest quality images possible when creating your image extensions. </span></p>
<p><span style="font-weight: 400;">Prohibited content rules are also applied to image extensions, so ensure that images used do not contain nudity or sexually suggestive images. This rule sounds like it could be rather subjective, so it’s better to err on the side of caution and ensure all of your images are appropriate for all ages. </span></p>
<h3><span style="font-weight: 400;">Do Image Extensions Improve Campaign Performance?</span></h3>
<p><span style="font-weight: 400;">We have now been running our image extensions for a couple of weeks, and already have discovered some interesting results during this short experiment. </span></p>
<p><span style="font-weight: 400;">Across the 8 accounts that we used for testing image extensions, our clickthrough rate improved by having images extensions on all but 1 account, however, this account (#8) was also the one with the least impressions, clicks, and conversions on the image extensions throughout the testing period, therefore the integrity of this account data is less complete than on the other accounts and would benefit from continuous testing.</span></p>
<p><span style="font-weight: 400;">Accounts with the most impressions, clicks and conversions during our experiment (#3, #4, and #6) all appear to have a considerably higher clickthrough rate on our ads with image extensions, compared to the overall account average. </span></p>
<p><span style="font-weight: 400;"> </span><span style="font-weight: 400;">The average clickthrough rate on the ads with image extensions was 14.73%, whilst the average clickthrough rate on ads without image extensions was 9.61%. This represents a 53.28% increase in the clickthrough rate from just having image extensions on the ads. Whilst I’m eager to continue to test this further, it’s a promising result.</span></p>
<p><span style="font-weight: 400;">Improvements to the conversion rate on these accounts are less pronounced than that of the clickthrough rates. On 3 of the 8 accounts, our conversion rate decreased when comparing ads with image extensions with the overall account average. </span></p>
<p><span style="font-weight: 400;">Our conversion rate did, however, improve on 5 of the 8 accounts we tested, with some of them showing considerable improvements. </span></p>
<p><span style="font-weight: 400;">Our average conversion rate across all accounts was 10.27%, whilst our overall average conversion rate for ads with image extensions was 12.07%. This represents a 17.53% increase to our average conversion rate across our 8 test accounts, which is a considerable improvement.</span></p>
<p><span style="font-weight: 400;">Following a short, and not particularly scientific test with these 8 accounts, we can see that the data supports the hypothesis that overall, including image extensions on Google Ads appears to have a positive effect on, both, the clickthrough rate and conversion rate of our ads. </span></p>
<table style="height: 411px;" width="766">
<tbody>
<tr>
<td style="text-align: left;"></td>
<td style="text-align: left;" colspan="2"><b>With Image Extensions</b></td>
<td style="text-align: left;" colspan="2"><b>All Search Campaign Average</b></td>
</tr>
<tr>
<td style="text-align: left;"></td>
<td style="text-align: left;"><b>CTR (%)</b></td>
<td style="text-align: left;"><b>Conversion Rate (%)</b></td>
<td style="text-align: left;"><b>CTR (%)</b></td>
<td style="text-align: left;"><b>Conversion Rate (%)</b></td>
</tr>
<tr>
<td style="text-align: left;"><span style="font-weight: 400;">#1</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">24.90%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">5.00%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">14.69%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">10.37%</span></td>
</tr>
<tr>
<td style="text-align: left;"><span style="font-weight: 400;">#2</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">16.54%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">4.44%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">10.44%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">7.37%</span></td>
</tr>
<tr>
<td style="text-align: left;"><span style="font-weight: 400;">#3</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">6.54%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">8.11%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">4.93%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">3.79%</span></td>
</tr>
<tr>
<td style="text-align: left;"><span style="font-weight: 400;">#4</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">13.05%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">8.09%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">9.27%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">4.18%</span></td>
</tr>
<tr>
<td style="text-align: left;"><span style="font-weight: 400;">#5</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">15.72%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">16.00%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">9.89%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">17.43%</span></td>
</tr>
<tr>
<td style="text-align: left;"><span style="font-weight: 400;">#6</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">22.65%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">8.05%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">14.21%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">6.78%</span></td>
</tr>
<tr>
<td style="text-align: left;"><span style="font-weight: 400;">#7</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">14.95%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">21.88%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">8.59%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">16.89%</span></td>
</tr>
<tr>
<td style="text-align: left;"><span style="font-weight: 400;">#8</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">3.45%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">25.00%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">4.86%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">15.38%</span></td>
</tr>
<tr>
<td style="text-align: left;"><b>Avg:</b></td>
<td style="text-align: left;"><span style="font-weight: 400;">14.73%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">12.07%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">9.61%</span></td>
<td style="text-align: left;"><span style="font-weight: 400;">10.27%</span></td>
</tr>
</tbody>
</table>
<h3><span style="font-weight: 400;">Google Ads Account Eligibility Requirements For Image Extensions.</span></h3>
<p><span style="font-weight: 400;">If you haven’t received access to image extensions yet on your Google Ads account, you may just need to remain patient and these should be made available on the account in due course. As of the date of writing this blog (15/6/21) we have still only received access on about half of our accounts, of which, most have only been available since the beginning of June, with only a small number of accounts given access in May. </span></p>
<p><span style="font-weight: 400;">Google has, however, also provided us with account </span><a href="https://support.google.com/adspolicy/answer/10347108"><span style="font-weight: 400;">eligibility requirements for image extensions</span></a><span style="font-weight: 400;">. </span></p>
<ul>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Account has been open for more than 90 days.</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Account has a good history of policy compliance.</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Account is in an eligible vertical or sub-vertical. Sensitive verticals or sub-verticals (for example, sexual content, alcohol, gambling) aren&#8217;t eligible for image extensions.</span></li>
</ul>
<p>&nbsp;</p>
<p>The post <a href="https://www.codefixer.com/blog/comprehensive-guide-to-google-ads-image-extensions/">Comprehensive Guide to Google Ads Image Extensions</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Google Ads &#8211; Cookies vs FLoC &#8211; Guide for Advertisers</title>
		<link>https://www.codefixer.com/blog/google-ads-removing-support-for-3rd-party-cookies/</link>
		
		<dc:creator><![CDATA[Corey Lendrum]]></dc:creator>
		<pubDate>Thu, 25 Mar 2021 12:35:32 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.codefixer.com/?p=3533</guid>

					<description><![CDATA[<p>On the 3rd of March 2021, Google released an article on the official Google Blog entitled "Charting a course towards a more privacy-first web". This was in response to increasing concern relating to 3rd party tracking of users on the web. Other technology behemoths, like Apple, announced back in March 2020, almost a full year  [...]</p>
<p>The post <a href="https://www.codefixer.com/blog/google-ads-removing-support-for-3rd-party-cookies/">Google Ads &#8211; Cookies vs FLoC &#8211; Guide for Advertisers</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>On the 3rd of March 2021, Google released an article on the official Google Blog entitled &#8220;<a href="https://blog.google/products/ads-commerce/a-more-privacy-first-web/">Charting a course towards a more privacy-first web</a>&#8220;.</p>
<p>This was in response to increasing concern relating to 3rd party tracking of users on the web. Other technology behemoths, like Apple, announced back in March 2020, almost a full year ago, that they were disabling 3rd party tracking by default from Safari, the native browser on iPhones, from version 13.1 onwards.</p>
<h3>So what does the 3rd of March blog actually tell us?</h3>
<p>Once you get past the grandstanding, it boils down to two main key points. First, that the future will be one where Google Ads divorces itself from tracking users with 3rd party cookies stored in the users&#8217; browsers, and secondly, that Google is instead focusing on interest-based user targeting.</p>
<h3>What is interest-based user targeting?</h3>
<p>Interest-based user targeting will (rather than storing a cookie in the users&#8217; browser) use on-device processing to help keep users browsing history secure on their device, in turn, making it more difficult to reveal personally identifiable information.</p>
<p>Google has, in turn, suggested a pathway forward for advertisers to reach audiences by clustering these users into interest groups. These new measures have been named &#8220;Federated Learning of Cohorts&#8221;, whatever that means.</p>
<p>The Federated Learning of Cohorts (FLoC for short) allows for a browser to use machine learning to aggregate users into audience groups based on URLs the user has visited, the content on those URLs, and &#8220;Other factors&#8221;, which is strangely non-specific.</p>
<p>Google has released a full <a href="https://github.com/WICG/floc">whitepaper on GitHub regarding FLoC</a>.</p>
<p>The key difference between 3rd Party Cookies and FLoC is that with FLoC, the users&#8217; browser information is stored locally on the users&#8217; browser and not distributed or uploaded anywhere outside of the device.</p>
<h3>Benefits of FLoC over 3rd Party Cookies.</h3>
<p>FLoC protects the security and privacy of the end-users data and prevents personally identifiable information from being distributed to anyone outside of their device. FLoC will also generate audience cohorts based on the previous weeks browsing behaviours, ensuring that your data is up-to-date, in turn improving the integrity of the data collected.</p>
<p>Another benefit of FLoC over 3rd Party Cookies is cross-device tracking. Creating audiences with cookies has certain limitations when tracking users across multiple devices. Using myself as a case study, I have four main devices, all with different cookies; My work computer is used for mainly PPC activities, my mobile phone is used for browsing the web, listening to Spotify and watching videos, my home PC is used for gaming, and my smart TV is used for Netflix and YouTube.</p>
<p>Now, just because I&#8217;m on one device doesn&#8217;t inherently mean I&#8217;m not still interested in PPC, browsing, Spotify, gaming, Netflix or YouTube. However, the ads I receive on each device are hugely different despite the fact I&#8217;m logged in using the same email addresses on each device. With FLoC audiences these different devices shouldn&#8217;t matter as the audience cohorts I belong to will be due to a user-id and not a cookie.</p>
<h3>Limitations of FLoC over 3rd Party Cookies.</h3>
<p>What Google hasn&#8217;t really addressed directly is how this will comply with international regulations and requirements for data processing such as GDPR. This is certainly something that will need to be addressed at some stage.</p>
<p>A second problem related to FLoC is that it will not be universal from the get-go. By introducing FLoC Google is trying to encourage device and browser developers to adopt this as the industry standard. But what&#8217;s to say it will? Companies like Mozilla and Apple will take some persuading before implementing FLoC. After all, Firefox and Safari have disabled 3rd party tracking by default on their browsers for over a year now.</p>
<p>The post <a href="https://www.codefixer.com/blog/google-ads-removing-support-for-3rd-party-cookies/">Google Ads &#8211; Cookies vs FLoC &#8211; Guide for Advertisers</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>28 Top Google Ads Tricks &#038; Tips To Help You Create An Effective Campaign In 2021</title>
		<link>https://www.codefixer.com/blog/28-top-google-ads-tricks-tips-to-help-you-create-an-effective-campaign-in-2021/</link>
		
		<dc:creator><![CDATA[Corey Lendrum]]></dc:creator>
		<pubDate>Fri, 19 Feb 2021 14:00:08 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.codefixer.com/?p=3449</guid>

					<description><![CDATA[<p>In 2020, with continued lockdowns, restrictions on services, and a significant reduction in the number of face-to-face interactions between businesses and their customers, businesses were required to be extremely agile to adapt to ongoing changes within the market. From this, two things became evident.  Businesses were becoming much more diligent in how they spent their  [...]</p>
<p>The post <a href="https://www.codefixer.com/blog/28-top-google-ads-tricks-tips-to-help-you-create-an-effective-campaign-in-2021/">28 Top Google Ads Tricks &#038; Tips To Help You Create An Effective Campaign In 2021</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><span style="font-weight: 400;">In 2020, with continued lockdowns, restrictions on services, and a significant reduction in the number of face-to-face interactions between businesses and their customers, businesses were required to be extremely agile to adapt to ongoing changes within the market. From this, two things became evident. </span></p>
<ol>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Businesses were becoming much more diligent in how they spent their marketing budgets.</span></li>
<li style="font-weight: 400;" aria-level="1"><span style="font-weight: 400;">Most businesses that previously hadn’t considered digital marketing as a core function of their business were immediately thrust into the reality that it was no longer a choice, it was absolutely essential.</span></li>
</ol>
<p>This blog will hopefully help some of you who are new to the world of PPC marketing, and even help some more experienced users with some of the tips and tricks we&#8217;ve picked up on over the years.</p>
<ol>
<li><b> </b><b>Do you suffer from forgetfulness during your busy days of grinding Google Ads? </b></li>
</ol>
<p><span style="font-weight: 400;">If so, leave a note on your Google Ads account whenever you make a significant change such as adding new keywords, incorporating new bidding strategies, or adjusting your campaign targeting. </span></p>
<p><span style="font-weight: 400;">By adding a note it will allow you to better identify the performance of the account before and after changes have been made. This makes it much easier to work out what is happening to your Google Ads account, and why. </span></p>
<p><span style="font-weight: 400;">Simply look at the date of the label, and select “Change History” in your second column. We can then identify which change to the account was most likely to cause the change in performance.</span></p>
<p><iframe src="https://www.youtube.com/embed/WaNp4nZ2wlo" width="100%" height="600px" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>
<p>&nbsp;</p>
<ol start="2">
<li><b> </b><b>Want to see the exact steps users take before successfully converting on your site? </b></li>
</ol>
<p><span style="font-weight: 400;">We can use the “Top Conversion Paths” report on Google Analytics to analyse the user behaviour flow. </span></p>
<p><span style="font-weight: 400;">To find this, click on “Conversions” on Google Analytics in your left side-bar, then “Multi-Channel Funnels”, and select “Top Conversion Paths”. Use the advanced settings to show only paths from users who have visited from the MCF Channel Grouping Path including “Paid”. </span></p>
<p><span style="font-weight: 400;">Once this is done, we can choose to show a secondary dimension for “Search Query Path”. Ensure only valuable conversions are shown on this report and set the lookback window to 90 days to see the maximum amount of data. </span></p>
<p><span style="font-weight: 400;">We can now look at the different visits a user makes before successfully converting including viewing the search terms they used to be matched with your ads on Google.</span></p>
<p><img decoding="async" class="alignnone size-full wp-image-3482" src="https://www.codefixer.com/wp-content/uploads/2021/02/top-conversion-paths.gif" alt="Google Analytics Top Conversion Paths Report" width="800" height="450" /></p>
<ol start="3">
<li><b> </b><b>Do you own one of those Google Ads accounts with tons of disorganised negative keywords? </b></li>
</ol>
<p><span style="font-weight: 400;">Here’s a tip &#8211; Don’t add negative keywords to the Campaign or Ad Group level unless necessary. </span></p>
<p><span style="font-weight: 400;">Instead, create Negative Keyword Lists (found in the Account Library) and apply these at the campaign level where applicable. Keep these lists closely themed, such as having a negative keyword list for; competitors, cheap/DIY type searches, and to prevent ads appearing for users searching for irrelevant searches. </span></p>
<p><span style="font-weight: 400;">A business may offer Industrial Tank Cleaning as a service, and want to bid on the keyword “Tank Cleaning”.  </span></p>
<p><span style="font-weight: 400;">The problem is, there are 3,600 searches for “Fish Tank Cleaning” each month, and only 390 searches for “Tank Cleaning”, as such, without having the negative keyword, “Fish”, you would run the risk of wasting your budget each day without any users having the chance to find you for the services you offer! </span></p>
<p><span style="font-weight: 400;">(Yes, I learned this from experience!)</span></p>
<p><img decoding="async" class="alignnone wp-image-3483 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2021/02/tank_cleaning-800x627.jpg" alt="Tank Cleaning Google Search Results" width="800" height="627" srcset="https://www.codefixer.com/wp-content/uploads/2021/02/tank_cleaning-200x157.jpg 200w, https://www.codefixer.com/wp-content/uploads/2021/02/tank_cleaning-300x235.jpg 300w, https://www.codefixer.com/wp-content/uploads/2021/02/tank_cleaning-400x314.jpg 400w, https://www.codefixer.com/wp-content/uploads/2021/02/tank_cleaning-600x470.jpg 600w, https://www.codefixer.com/wp-content/uploads/2021/02/tank_cleaning-768x602.jpg 768w, https://www.codefixer.com/wp-content/uploads/2021/02/tank_cleaning-800x627.jpg 800w, https://www.codefixer.com/wp-content/uploads/2021/02/tank_cleaning.jpg 829w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<ol start="4">
<li><b> </b><b>Noticing users from strange locations clicking on your ads?  </b></li>
</ol>
<p><span style="font-weight: 400;">Presuming your location targeting is correct, this is likely due to one pesky hidden campaign setting. </span></p>
<p><span style="font-weight: 400;">When you create a new campaign the default location targeting setting is set to target users “In, regularly in, or show interest in your targeted locations”. </span></p>
<p><span style="font-weight: 400;">The problem with this is, I don’t care if someone in another location has spent a few hours binging YouTube documentaries on the history of Vikings in Ireland. They’re very unlikely to avail of the services of an emergency plumber in Belfast if they’re currently located in Timbuktu. </span></p>
<p><span style="font-weight: 400;">To fix this, simply change the setting to “People in, or regularly in your target locations”. </span></p>
<p><span style="font-weight: 400;">This can be found by selecting your campaign, clicking on settings, expand your location settings, and click on “Location Options”. Once here, you can edit your setting and click save. You should now no longer receive clicks on this campaign from users outside your target areas.</span></p>
<div class="video-shortcode">
<blockquote class="wp-embedded-content" data-secret="o54mq5CFRW"><p><a href="https://www.codefixer.com/blog/stop-google-ads-showing-to-users-outside-your-target-location/">Stop Google Ads Showing To Users Outside Your Target Location</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="&#8220;Stop Google Ads Showing To Users Outside Your Target Location&#8221; &#8212; Codefixer" src="https://www.codefixer.com/blog/stop-google-ads-showing-to-users-outside-your-target-location/embed/#?secret=HRhiOWrEiV#?secret=o54mq5CFRW" data-secret="o54mq5CFRW" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></div>
<p><iframe src="https://www.youtube.com/embed/j09kucoFcr8" width="100%" height="600px" frameborder="0" allowfullscreen="allowfullscreen"><span data-mce-type="bookmark" style="display: inline-block; width: 0px; overflow: hidden; line-height: 0;" class="mce_SELRES_start">﻿</span></iframe></p>
<p>&nbsp;</p>
<ol start="5">
<li><b> </b><b>Ever wonder why your display campaign targeting a 30-day remarketing audience of 1,000 users is gaining tens of thousands of impressions per month? </b></li>
</ol>
<p><span style="font-weight: 400;">This is most likely down to another sneaky default setting, this time found in the targeting settings on your display ad groups called “Targeting Expansion”. </span></p>
<p><span style="font-weight: 400;">This setting allows Google to also show your display ads to other users who are similar to your audience. However, how can Google create an audience similar to users who have added an item to cart and abandoned, or visited a specific product page? It can’t, turn this off, it will severely skew your results and guarantee you’ll be spending eternity adding negative placements to your campaign. </span></p>
<p><span style="font-weight: 400;">To turn this setting off, select your display ad group, and click on settings. Following this, select “Edit Ad Group Targeting”, once here, just slide the targeting expansion slider to the left, and click save.</span></p>
<p><iframe src="https://www.youtube.com/embed/XUXRRdISxUo" width="100%" height="600px" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>
<div class="video-shortcode">
<blockquote class="wp-embedded-content" data-secret="tcQ4NqPs8B"><p><a href="https://www.codefixer.com/blog/cutting-display-wastage-by-excluding-targeting-expansion/">Cutting Display Wastage By Excluding Targeting Expansion</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="&#8220;Cutting Display Wastage By Excluding Targeting Expansion&#8221; &#8212; Codefixer" src="https://www.codefixer.com/blog/cutting-display-wastage-by-excluding-targeting-expansion/embed/#?secret=c05oIeXFMj#?secret=tcQ4NqPs8B" data-secret="tcQ4NqPs8B" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></div>
<ol start="6">
<li><b> </b><b>Is your business able to answer the phone 24 hours a day, 7 days a week? </b></li>
</ol>
<p><span style="font-weight: 400;">Ours neither. </span></p>
<p><span style="font-weight: 400;">If you have set opening hours, and are missing calls from users calling out of hours, consider scheduling your Call Extensions to only appear during business opening hours. </span></p>
<p><span style="font-weight: 400;">85% of the users whose calls you miss won’t call back! Not scheduling your call extensions could be costing you money. </span></p>
<p><span style="font-weight: 400;">To add scheduling to your extensions, simply click the extension and select “Advanced Settings”, here we can add a custom schedule to our extension. </span></p>
<p><span style="font-weight: 400;">You may also wish to consider running a sitelink extension directing users towards your contact page when your call extension isn’t active, meaning you’ll have warm leads by the time you get to the office!</span></p>
<p><img decoding="async" class="alignnone size-full wp-image-3485" src="https://www.codefixer.com/wp-content/uploads/2021/02/call-scheduling-1.gif" alt="Google Ads Call Scheduling" width="800" height="450" /></p>
<ol start="7">
<li><b>Thinking of creating some new Google Ads campaigns? </b></li>
</ol>
<p><span style="font-weight: 400;">First, plan them out on paper rather than trying to build the campaign from memory.</span></p>
<p><span style="font-weight: 400;">Planning your campaigns correctly will ensure you haven’t missed any crucial components, and will allow you to visualise how the campaign will be structured without having to completely pull it apart and build it back together again! </span></p>
<p><span style="font-weight: 400;">This is one of the most important factors in planning and building a well structured Google Ads account. </span></p>
<p><img decoding="async" class="alignnone size-full wp-image-3486" src="https://www.codefixer.com/wp-content/uploads/2021/02/plan_on_paper.png" alt="Google Ads Account Planning" width="485" height="337" srcset="https://www.codefixer.com/wp-content/uploads/2021/02/plan_on_paper-200x139.png 200w, https://www.codefixer.com/wp-content/uploads/2021/02/plan_on_paper-300x208.png 300w, https://www.codefixer.com/wp-content/uploads/2021/02/plan_on_paper-400x278.png 400w, https://www.codefixer.com/wp-content/uploads/2021/02/plan_on_paper.png 485w" sizes="(max-width: 485px) 100vw, 485px" /></p>
<ol start="8">
<li><b>Can’t decide on which keyword match types to use on Google Ads? </b></li>
</ol>
<p><span style="font-weight: 400;">Most Google Ads users are familiar with Broad, “Phrase”, and [Exact Match] keywords. </span></p>
<p><span style="font-weight: 400;">But did you know that there is a 4th keyword match type? </span></p>
<p><span style="font-weight: 400;">+Broad +match +modifier keywords are designated, as such, with a + before each word. For a user to match with a broad match modifier keyword their search query must contain every word preceded by the + in your keyword (or a close variant). </span></p>
<p><span style="font-weight: 400;">This means broad match modifier keywords generally have less wastage than broad match and are more flexible than phrase match keywords as there can be varied orders in which the words appear in. </span></p>
<p><span style="font-weight: 400;">This is the Goldilocks principle, not too broad, not too specific, just right!</span></p>
<p><img decoding="async" class="alignnone size-full wp-image-3494" src="https://www.codefixer.com/wp-content/uploads/2021/02/match-types-1.jpg" alt="Google Ads Keyword Match Types" width="506" height="648" srcset="https://www.codefixer.com/wp-content/uploads/2021/02/match-types-1-200x256.jpg 200w, https://www.codefixer.com/wp-content/uploads/2021/02/match-types-1-234x300.jpg 234w, https://www.codefixer.com/wp-content/uploads/2021/02/match-types-1-400x512.jpg 400w, https://www.codefixer.com/wp-content/uploads/2021/02/match-types-1.jpg 506w" sizes="(max-width: 506px) 100vw, 506px" /></p>
<ol start="9">
<li><b> </b><b>Sick and tired of your display images appearing on nothing but spammy looking mobile apps? </b></li>
</ol>
<p><span style="font-weight: 400;">Not to bother, 5 minutes of work and you’ll never appear on one again! </span></p>
<p><span style="font-weight: 400;">First, we need to download Google Ads Editor. Next, we must open the account, and select our offending campaign. Under “Keywords and Targeting” select “App Categories, Negative”. Simply right-click, click “New”, select “All Apps” click “Ok” and post your changes. </span></p>
<p><span style="font-weight: 400;">You’ll now never see a mobile app appear in your placements for this campaign again.</span></p>
<div class="video-shortcode">
<blockquote class="wp-embedded-content" data-secret="DbijYHgwhv"><p><a href="https://www.codefixer.com/blog/exclude-apps-from-display-campaign/">How To Exclude Mobile Apps From Display Campaigns &#8211; Google Ads Tips</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="&#8220;How To Exclude Mobile Apps From Display Campaigns &#8211; Google Ads Tips&#8221; &#8212; Codefixer" src="https://www.codefixer.com/blog/exclude-apps-from-display-campaign/embed/#?secret=llVltvKiWP#?secret=DbijYHgwhv" data-secret="DbijYHgwhv" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></div>
<ol start="10">
<li><b> </b><b>Did you know that by default, you’ve probably allowed Google to make changes to your Google Ads account whenever they feel like it? </b></li>
</ol>
<p><span style="font-weight: 400;">On your Google Ads account settings, there is an option for “Ad Suggestions”. </span></p>
<p><span style="font-weight: 400;">With the default setting, Google will automatically implement recommendations to your account after 14 days. This means Google can automatically make changes to your keywords, ad copy and landing pages. </span></p>
<p><span style="font-weight: 400;">To stop this from happening, visit your account settings, select “Ad Suggestions” and set the option to “Don’t automatically apply ad suggestions”. </span></p>
<p><img decoding="async" class="alignnone wp-image-3488 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2021/02/ad-suggestions-800x337.jpg" alt="Google Ads Ad Suggestions" width="800" height="337" srcset="https://www.codefixer.com/wp-content/uploads/2021/02/ad-suggestions-200x84.jpg 200w, https://www.codefixer.com/wp-content/uploads/2021/02/ad-suggestions-300x126.jpg 300w, https://www.codefixer.com/wp-content/uploads/2021/02/ad-suggestions-400x169.jpg 400w, https://www.codefixer.com/wp-content/uploads/2021/02/ad-suggestions-600x253.jpg 600w, https://www.codefixer.com/wp-content/uploads/2021/02/ad-suggestions-768x324.jpg 768w, https://www.codefixer.com/wp-content/uploads/2021/02/ad-suggestions-800x337.jpg 800w, https://www.codefixer.com/wp-content/uploads/2021/02/ad-suggestions.jpg 1018w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<ol start="11">
<li><b> </b><b>Are you using call extensions on your ads? </b></li>
</ol>
<p><span style="font-weight: 400;">If so, take 1 second to double-check that you have call tracking enabled in your account settings. </span></p>
<p><span style="font-weight: 400;">This allows us to view valuable information in the call details report from users who have called from our call extensions on our ads. </span></p>
<p><span style="font-weight: 400;">To view a detailed report of the users who have called, click on “Reports” at the top of your Google Ads dashboard, select “Predefined Reports”, then “Extensions”, and finally click on “Call Details”. Here we can see information such as the start time and duration of the calls, the date, the user’s telephone number, and the keyword that the user matched with when they clicked to call.</span></p>
<p><img decoding="async" class="alignnone wp-image-3489 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2021/02/account-settings-800x329.jpg" alt="Google Ads Account Settings" width="800" height="329" srcset="https://www.codefixer.com/wp-content/uploads/2021/02/account-settings-200x82.jpg 200w, https://www.codefixer.com/wp-content/uploads/2021/02/account-settings-300x123.jpg 300w, https://www.codefixer.com/wp-content/uploads/2021/02/account-settings-400x164.jpg 400w, https://www.codefixer.com/wp-content/uploads/2021/02/account-settings-600x247.jpg 600w, https://www.codefixer.com/wp-content/uploads/2021/02/account-settings-768x316.jpg 768w, https://www.codefixer.com/wp-content/uploads/2021/02/account-settings-800x329.jpg 800w, https://www.codefixer.com/wp-content/uploads/2021/02/account-settings-1024x421.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2021/02/account-settings-1200x493.jpg 1200w, https://www.codefixer.com/wp-content/uploads/2021/02/account-settings.jpg 1350w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<ol start="12">
<li><b> </b><b>Confused by the jargon and not sure which bidding strategy to use on your Google Ads account? </b></li>
</ol>
<p><span style="font-weight: 400;">To put it simply, Google allows you to choose from one of two types of bidding, a manual bidding strategy, or an automated bidding strategy. </span></p>
<p><span style="font-weight: 400;">The benefits of using automated bidding is that Google uses historical data and machine learning to optimise the performance of your bidding strategy. </span></p>
<p><span style="font-weight: 400;">Manual bidding strategies, whilst not benefiting from historical data and machine learning, allow us to have much more control over how much we pay for our clicks. For this reason, we generally recommend users start off with the manual bidding strategy, manual CPC, and starting off bidding low. </span></p>
<p><span style="font-weight: 400;">When the account begins delivering results and has a higher volume of clicks and conversions we can then move over to an automated bidding strategy, such as Target ROAS, Maximise Conversions, Maximise Clicks, or Target CPA. </span></p>
<p><span style="font-weight: 400;">Which automated bidding strategy you decide on will depend on the objective of the campaign. If you are hoping to generate as many clicks as possible to get users into the top of your funnel and build your audience lists, then Max Clicks would be the better option. Want to generate as many leads as possible for your budget? If so, Max Conversions would be most appropriate. If you know how much each lead is worth to your business you can then try setting a target CPA bid strategy to get leads at a chosen cost. Websites with eCommerce tracking tend to benefit most from the Target ROAS bidding strategy, where Google will try to achieve a certain return on your Google Ads budget.</span></p>
<ol start="13">
<li><b> </b><b>Would you like to see through the eyes of the users you’re targeting on your Google Ads campaigns? </b></li>
</ol>
<p><span style="font-weight: 400;">No problemo! Using only Google Chrome we can set our location to anywhere on earth, allowing us to emulate what users see on the search engine results page. </span></p>
<p><span style="font-weight: 400;">To change your location on Google Chrome, first, open Developer Tools by pressing f12, and press ESC to open the bottom drawer.  Once here, click on the three dots on the left side and navigate to sensors. Once here, we can use Google’s preset list of locations, or add locations of our own. When creating your own locations, simply go to Google Maps and find the coordinates of the location you would like to emulate your location for, go back to Sensors, click manage, and add as many as you like! To then select these locations, simply select the location you would like to search from in the dropdown menu, and start searching on Google (Don’t forget to click “update location” at the bottom of Google and turn location tracking on!!)</span><span style="font-weight: 400;"><br />
<iframe src="https://www.youtube.com/embed/JIqfcevBgkA" width="100%" height="600px" frameborder="0" allowfullscreen="allowfullscreen"></iframe></span></p>
<ol start="14">
<li><b> </b><b>Tired of completing the same mundane tasks on Google Ads each and every day?</b></li>
</ol>
<p><span style="font-weight: 400;">Fortunately for you, so is everyone else, and odds are, someone has already automated that task for you! </span></p>
<p><span style="font-weight: 400;">Google Ads allows users to use scripts to do anything on your account that a human can do (and more!). Best of all, little to no coding is required whatsoever. </span></p>
<p><span style="font-weight: 400;">Simply copy the script, click “Tools” on Google Ads, select “Scripts” under “Bulk Actions”, paste it in and hit save. </span></p>
<p><span style="font-weight: 400;">Two great scripts to get started with are the keyword conflict scanner, which identifies negative keywords blocking your ads from showing, and the link checker script, which will notify you if a URL is broken. </span></p>
<p><span style="font-weight: 400;">The sky is your limit with this one, there are thousands of scripts available out there for nearly every imaginable situation!</span></p>
<ol start="15">
<li><b> </b><b>Are you finding it difficult to determine which keywords to use on your Google Ads campaigns?</b><b></b></li>
</ol>
<p><span style="font-weight: 400;">Fortunately, there are a few tools which can help you to get started. </span></p>
<p><span style="font-weight: 400;">Google Keyword planner in the Shared Library in Google Ads is a useful tool to begin prospecting for new keywords, we can start with a small selection of keywords, or a website URL and Google Ads will provide a suggested list of relevant keywords. </span></p>
<p><span style="font-weight: 400;">Ahrefs, a paid SEO tool, has a feature called Keyword Explorer. With this tool, we can again enter keywords, or a URL to receive a list of recommended keywords closely matching your seed keywords or URL. </span></p>
<p><span style="font-weight: 400;">Ubersuggest is similar to Keyword Explorer in Ahrefs and completely free for those without an Ahrefs account. </span></p>
<p><span style="font-weight: 400;">Answer The Public is a handy tool that provides you with contextual searches related to your keywords, however, a free account will only allow you a limited number of searches. </span></p>
<p><span style="font-weight: 400;">When used in combination with one another, these 4 tools will certainly get you well on your way with prospecting a list of keywords to target (Don’t forget to also pick out the rubbish ones to add to your negative keyword lists!).</span></p>
<ol start="16">
<li><b> </b><b>Have you royally mucked up something on your Google Ads account by mistake and worried about how you’re going to get yourself out of this mess?</b><b></b></li>
</ol>
<p><span style="font-weight: 400;">Okay, so just remain calm for a minute. </span></p>
<p><span style="font-weight: 400;">There may be a very simple solution to this. Google Ads has a useful feature called Change History. In here, we can select a date range and look at the changes made on the account. What’s also very useful is that we can also undo these changes from here. </span></p>
<p><span style="font-weight: 400;">On your Google Ads overview, select “All Campaigns”, and navigate to “Change History” in the second column (you may need to click +More). Once here, find the offending change, and click undo. Just note, some changes can not be undone. </span></p>
<p><span style="font-weight: 400;">Never delete anything from your Google Ads account unless absolutely necessary, just pause. Once something is removed from a Google Ads account it’s almost impossible to get it back. </span></p>
<ol start="17">
<li><b> </b><b>Have you considered tracking call data from users visiting your website from Google Ads? </b></li>
</ol>
<p><span style="font-weight: 400;">Now, what if we wanted to start collecting detailed data from users who click on an ad, and call the telephone number on our website? </span></p>
<p><span style="font-weight: 400;">For this, we’ll need to have Google Tag Manager installed on our website. </span></p>
<p><span style="font-weight: 400;">To set up advanced website call tracking, visit the conversions window on Google Ads and click to create a new conversion action. Next, click on phone calls, followed by “Calls to a phone number on your website”. Complete the details and select next. We can now see a tab saying “Use Tag Manager” which contains a conversion ID, and a Conversion Label. </span></p>
<p><span style="font-weight: 400;">Next, go to Google Tag Manager and create a new Tag. The first Tag we will create will be the Google Ads conversion linker Tag, select “Google Ads Conversion Linker” from the Tag Type list, and set it to trigger on all pages, this will allow Google Ads to collect the call data. Now create a second tag, this time for the advanced website call tracking. Select “Google Ads Calls From Website Conversion” from the dropdown, and enter the phone number you will be tracking as shown on the website, enter your conversion ID and Conversion Label and set the Tag to trigger on all pages. Once completed, save and publish your changes to your website. </span></p>
<p><span style="font-weight: 400;">Now when users visit your website from an ad, they will instead be given a Google Call Forwarding Number and the information from these calls will be available in the call details report on Google Ads. </span></p>
<ol start="18">
<li><b> </b><b>So your keywords are great, your Ads are stellar, but you’re not receiving as many conversions from your Google Ads campaign as you would expect. What gives?</b><b></b></li>
</ol>
<p><span style="font-weight: 400;">9 times out of 10 it’s down to your landing pages. </span></p>
<p><span style="font-weight: 400;">Are you running an Ad for the keyword “Men’s Green Adidas Trainers”, but sending them to /footwear/? Or are you a business offering services, and sending users to your homepage, or a page chockablock with information? </span></p>
<p><span style="font-weight: 400;">Users searching online are looking for one thing. They are asking a question, and want an answer to that question. Users want to see the content of their search reflected on the content of the page. If they’re searching for “Men’s Green Adidas Trainers”, then send them to the page for men’s green Adidas trainers. If they’re searching a question, provide them with an answer. </span></p>
<p><span style="font-weight: 400;">Users rarely like being bombarded with endless text. Simply put, they only want to know 3 things. Who are you, what do you do, and how do they get in touch with you. Make sure your landing page is concise, straight to the point, and provides the information the user is looking for. </span></p>
<p><span style="font-weight: 400;">Try to limit links and navigation to other parts of your website, everything the user is looking for should be contained on that page, and the more someone has to go rifling through every page of your website to find what they’re looking for, the more likely they are to exit. </span></p>
<p><span style="font-weight: 400;">Landing pages should be simple and concise, not a history lesson on your business. </span></p>
<ol start="19">
<li><b></b> <b>Did you know that you can use Custom Rules on Google Ads to automate some aspects of Google Ads Management? </b></li>
</ol>
<p><span style="font-weight: 400;">Custom rules can be created to pause, enable and adjust the bids on ad groups that meet conditions that you set. You can also set a rule to notify you by email when these criteria are met. </span></p>
<p><span style="font-weight: 400;">Custom Rules on Google Ads can include pretty much any metric on Google Ads. For example, you can create a custom rule to increase your bids by a set percentage when you fall below 80% absolute top of page rate. </span></p>
<p><span style="font-weight: 400;">To create a Custom Rule, visit the campaign or ad group overview, select the 3 “more” dots on the right-hand side, and simply click “Custom Rules”.</span></p>
<p><span style="font-weight: 400;">Why not start by creating a Custom Rule to pause an ad group when its spend exceeds £50 without a conversion?</span></p>
<p><iframe src="https://www.youtube.com/embed/uOp0Rsdz5Wo" width="100%" height="600px" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>
<ol start="20">
<li><b> </b><b>Are you taking advantage of free clicks from Google Shopping? </b></li>
</ol>
<p><span style="font-weight: 400;">Implementing Google Surfaces on your Ecommerce website is an absolute must-have, especially if you’re currently using Google Ads to run Shopping Ads for your website. </span></p>
<p><span style="font-weight: 400;">If you already have a Google Merchant Center Account, simply click “Growth” and “Manage Programs” on your account. Select “Surfaces Across Google” and complete all of the fields. </span></p>
<p><span style="font-weight: 400;">You’ll start receiving free traffic in no time!</span></p>
<div class="video-shortcode">
<blockquote class="wp-embedded-content" data-secret="lPok3jrvdH"><p><a href="https://www.codefixer.com/blog/how-to-get-free-traffic-sales-from-surfaces-across-google/">How To Get Free Traffic &#038; Sales From Surfaces Across Google</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="&#8220;How To Get Free Traffic &#038; Sales From Surfaces Across Google&#8221; &#8212; Codefixer" src="https://www.codefixer.com/blog/how-to-get-free-traffic-sales-from-surfaces-across-google/embed/#?secret=9v1SK6EowK#?secret=lPok3jrvdH" data-secret="lPok3jrvdH" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></div>
<ol start="21">
<li><b> </b><b>Have you been wondering where the user location report has gone in Google Ads over the last few months? </b></li>
</ol>
<p><span style="font-weight: 400;">Simply select “Locations” on the second sidebar, and change the dropdown from “Targeted Locations” to “Matched Locations (Account/Campaign)”. </span></p>
<p><span style="font-weight: 400;">Once here we can see how our account or campaign has performed at a country, province, county, city, or postcode level. </span></p>
<p><img decoding="async" class="alignnone size-full wp-image-3490" src="https://www.codefixer.com/wp-content/uploads/2021/02/user-location-report.gif" alt="Google Ads User Location Report" width="800" height="450" /></p>
<ol start="22">
<li><b> </b><b>Want to see who your biggest competitors are on Google Ads? </b></li>
</ol>
<p><span style="font-weight: 400;">Viewing your auction insights report is the best way to determine who your biggest competitors are and how you’re faring against them in Google Ads. </span></p>
<p><span style="font-weight: 400;">We can look at our Auction Insights at a campaign, ad group, and even keyword level. This report allows us to see our impression share, overlap rate, top of page rate, absolute top of page rate (#1), and much more! </span></p>
<p><span style="font-weight: 400;">To find this, simply collect the campaign, ad group, or keyword you would like to see your statistics for and click “Auction Insights”. </span></p>
<p><span style="font-weight: 400;">We can then use the information gathered to better improve our bidding strategy and budget on our account.</span></p>
<ol start="23">
<li><b> </b><b>Looking for new keywords to add to your Google Ads campaigns? </b></li>
</ol>
<p><span style="font-weight: 400;">Monitoring your search terms report is one of the most important daily maintenance tasks on Google Ads. </span></p>
<p><span style="font-weight: 400;">Not only does our search terms report help us understand how users search online and understand the intent behind specific search terms, but it also allows us an opportunity to add new keywords to our ad groups, and find new negative keywords to add our negative keyword lists. </span></p>
<p><span style="font-weight: 400;">To make this job less cumbersome on large accounts, you can filter your search terms to only show “Added/Excluded=None”. With this option selected we will no longer see search terms that already match keywords which have been added to the account. </span></p>
<p><span style="font-weight: 400;">Your search terms report can be found directly under the Keywords menu in the second column.</span></p>
<ol start="24">
<li><b> </b><b>Want to optimise your Google Ads account performance during the hours of the day that you’re most likely to convert a user? </b></li>
</ol>
<p><span style="font-weight: 400;">We can use our time of day report to determine when users are most likely to convert from a Google Ads click. </span></p>
<p><span style="font-weight: 400;">To view this report select reports at the top of Google Ads, click predefined reports, time, then hour of day. Here we can see important information about our users depending on which hour of the day they’re visiting. </span></p>
<p><span style="font-weight: 400;">If your time of day report shows a ton of clicks before the office opens, and fewer in the mid-late afternoon, this means it is likely our ad budget is being used up outside of peak hours in the early morning. This would suggest that it may be a good idea to schedule your ads to not appear in the early hours of the morning. Likewise, if you find hours of the day where there are disproportionately higher conversion rates we can also use this to our advantage. </span></p>
<p><span style="font-weight: 400;">First, select a campaign on your Google Ads account, next click on Ad Schedule in the second column. We will now need to create a schedule for each hour of the day we will be showing our ads, i.e 09:00-10:00, 10:00-11:00, etc. Once you have completed this step, we can now see our schedules below. Next, click “Bid Adj”, and set a bid adjustment for the hours which showed the best performance in your time of day report. </span></p>
<p><span style="font-weight: 400;">Start by testing smaller increases, monitor, and adjust your bid adjustments over time. </span></p>
<p><iframe src="https://www.youtube.com/embed/uOp0Rsdz5Wo" width="100%" height="600px" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>
<ol start="25">
<li><b> </b><b>Are you using Google Ads for your business, but haven’t considered Bing Ads? </b></li>
</ol>
<p><span style="font-weight: 400;">Bing has recently increased its market share to 9.95% of the search industry in the UK. </span></p>
<p><span style="font-weight: 400;">Whilst this figure is quite far off from Google&#8217;s 87.96% share of UK searches, it’s still nothing to scoff at considering there are an estimated 15 billion searches on Google every month from users in the UK.</span></p>
<p><span style="font-weight: 400;">Have I also mentioned how incredibly easy it is to create a Bing Ads account using your existing Google Ads account? </span></p>
<p><span style="font-weight: 400;">Simply create a Bing Ads account, select “Import” in the top navigation bar, and click “Import from Google Ads”, next, pop in your billing details and you’re ready to go! </span></p>
<p><span style="font-weight: 400;">Just make sure you’ve done a little bit of research as to how to get Bing Ads conversion tracking implemented as it’s not quite the same as the method you will have used for Google Ads. </span></p>
<p><img decoding="async" class="alignnone wp-image-3491 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2021/02/bing-ads-800x335.jpg" alt="Import Google Ads To Bing Ads" width="800" height="335" srcset="https://www.codefixer.com/wp-content/uploads/2021/02/bing-ads-200x84.jpg 200w, https://www.codefixer.com/wp-content/uploads/2021/02/bing-ads-300x126.jpg 300w, https://www.codefixer.com/wp-content/uploads/2021/02/bing-ads-400x168.jpg 400w, https://www.codefixer.com/wp-content/uploads/2021/02/bing-ads-600x251.jpg 600w, https://www.codefixer.com/wp-content/uploads/2021/02/bing-ads-768x322.jpg 768w, https://www.codefixer.com/wp-content/uploads/2021/02/bing-ads-800x335.jpg 800w, https://www.codefixer.com/wp-content/uploads/2021/02/bing-ads-1024x429.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2021/02/bing-ads.jpg 1088w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<ol start="26">
<li><b> </b><b>Is your Google Ads campaign showing as limited by budget, but you’d like more conversions? </b></li>
</ol>
<p><span style="font-weight: 400;">One simple way of increasing the number of conversions you’re receiving from your budget is by reducing the budget being wasted on under-performing keywords. </span></p>
<p><span style="font-weight: 400;">To increase the number of conversions you’re receiving from your existing budget, look at your keyword performance over the last few months. Now, click on “Columns” and add new columns for Conversions, Cost/Conv., and Conv. Rate. Using the campaign averages at the top or bottom of our table, we can easily identify underperforming keywords. If your campaign average conversion rate is 5%, pause any keyword which has a conversion rate significantly lower than 5%. </span></p>
<p><span style="font-weight: 400;">Once we pause these keywords we will be allowing our budget to be utilised for our better-converting keywords. Using our search terms report we can then identify new keywords to add to our ad groups to continue to improve this over time. </span></p>
<p><span style="font-weight: 400;">During your investigation, you may also find that there are specific ad groups with poor performance. You may want to consider also pausing these, once again, funnelling our budget towards our most profitable ad groups. </span></p>
<ol start="27">
<li><b> </b><b>Have you noticed strange extensions occasionally appearing on your ads? </b></li>
</ol>
<p><span style="font-weight: 400;">I first noticed this with an ad we were running at Codefixer that had a sitelink under it for “Hello World”. A little bit embarrassing, right? </span></p>
<p><span style="font-weight: 400;">What was more embarrassing was that when I first originally noticed this, I wasn’t sure how it was happening! </span></p>
<p><span style="font-weight: 400;">Everybody, by now, should know that using a variety of extensions on Google Ads is absolutely crucial.  What some may not realize is that Google will sometimes decide to display automated extensions unless this is explicitly disabled. </span></p>
<p><span style="font-weight: 400;">Google can show automated sitelink, structured snippets, call, callouts, seller ratings, and location extensions.</span></p>
<p><span style="font-weight: 400;">It’s best practice to include all applicable extensions when we create new campaigns or ad groups on Google Ads, so we shouldn’t really need automated extensions at all if that step wasn’t skipped! </span></p>
<p><span style="font-weight: 400;">This setting is probably one of the best-hidden settings in Google Ads. </span></p>
<p><span style="font-weight: 400;">To disable automated extensions, select “Ads &amp; Extensions” on your second side-bar, and click on “Extensions”. Now make sure that your extensions are being shown in “Table View”, rather than “Summary View”. Next, select “Automated Extensions” from the drop-down menu at the top left. Now we must click on the 3 vertical dots where it says “More” on the right-hand side, and select “Advanced Options”. Now we can choose which specific Automated Extensions to disable. </span></p>
<p><span style="font-weight: 400;">I’d recommend turning all of these off and manually creating them, or failing that, at least the call and sitelinks extensions!</span></p>
<p><span style="font-weight: 400;"><br />
</span><iframe src="https://www.youtube.com/embed/GDXDrSQciTc" width="100%" height="600px" frameborder="0" allowfullscreen="allowfullscreen"></iframe></p>
<ol start="28">
<li><b> Visit the Codefixer Blog &amp; Signup to the Newsletter </b></li>
</ol>
<p>We release new Google Ads &amp; SEO content every month. We only send 1 newsletter each month to make sure you’re only seeing the best and most up-to-date content available!</p>
<p>The post <a href="https://www.codefixer.com/blog/28-top-google-ads-tricks-tips-to-help-you-create-an-effective-campaign-in-2021/">28 Top Google Ads Tricks &#038; Tips To Help You Create An Effective Campaign In 2021</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Top 5 Reasons to Outsource Your Google Ads to a PPC Agency</title>
		<link>https://www.codefixer.com/blog/top-5-reasons-to-outsource-your-google-ads-to-a-ppc-agency/</link>
		
		<dc:creator><![CDATA[Corey Lendrum]]></dc:creator>
		<pubDate>Fri, 11 Dec 2020 12:50:11 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.codefixer.com/?p=3262</guid>

					<description><![CDATA[<p>Admittedly, as a Partnered Google Ads Agency &amp; Microsoft Advertising Partner, we're probably a little bit biased, however, we also have the experience to help you understand the benefits of outsourcing your Google Ads to a PPC Agency. Below you'll find our top 5 reasons for outsourcing your Google Ads compared to hiring an in-house  [...]</p>
<p>The post <a href="https://www.codefixer.com/blog/top-5-reasons-to-outsource-your-google-ads-to-a-ppc-agency/">Top 5 Reasons to Outsource Your Google Ads to a PPC Agency</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Admittedly, as a Partnered Google Ads Agency &amp; Microsoft Advertising Partner, we&#8217;re probably a little bit biased, however, we also have the experience to help you understand the benefits of outsourcing your Google Ads to a PPC Agency.</p>
<p>Below you&#8217;ll find our top 5 reasons for outsourcing your Google Ads compared to hiring an in-house Pay Per Click expert.</p>
<h2>1 &#8211; Experience, Tools, &amp; Resources</h2>
<p>The biggest resource a PPC agency has is knowledge. Whilst an in-house PPC employee might have some experience in executing Google Ads campaigns, a single account manager in a PPC agency will have experience working on dozens of client accounts and spending hundreds of thousands of pounds in Google Ads and Bing Ads every year. This allows us to test strategies and analyse results at a much faster rate, resulting in better performance across accounts.</p>
<p>A PPC agency also allows account managers to share skills and experience to grow their knowledge. Often, with internal PPC roles, the PPC employee will be the sole subject matter expert in the business, meaning they will have to look to other places to find this information.</p>
<p>As PPC agencies dedicate more resources to this specific skill set, we often have access to tools and huge data sets from previous campaigns spanning years, helping us understand the ins and outs of the industry. Having access to these tools and data sets allow us to pre-determine the chance of success upon campaign implementation, reducing risk in the short and long term.</p>
<p>Agencies will also have networks of other specialists and will work alongside other agencies with varied specialities. What happens if you have a problem with Google Tag Manager? No problem, I&#8217;ve got a dude for that. Need some graphics designed? De nada, we know a team who can do these for us. Videos? Say no more, I know just the right person. Ad infinitum. The point is, having a network of other agencies and experts with varied skillsets means these problems are solved before they even appear.</p>
<h2>2 &#8211; Less Expensive &amp; More Cost-Effective</h2>
<p>Depending on where you are in the world and the availability of qualified PPC specialists, hiring somebody for an in-house PPC job for Google Ads can be quite a costly and time-consuming endeavour. You can then risk the odds that this person will move on to greener pastures, setting you back to square one.</p>
<p>Hiring an agency, rather than an in-house PPC expert will save money and time on; hiring, training, equipment, management, creating processes, software tools, etc. Before you&#8217;ve paid the employees first month wages you&#8217;re already thousands of pounds in the hole, without being able to guarantee that they&#8217;re up to the mark, or even a good cultural fit for the business. Using an agency cuts out all of the complicated steps allowing us to use our 30+ years combined experience in generating results, while you can focus on other aspects of your business.</p>
<p>Hiring an agency with 30+ years experience is going to cost much less in the short, and long term, compared to hiring someone internally with a comparable skillset (well, that, and it&#8217;s physically impossible to find someone with 30+ years of PPC experience, but you get the point).</p>
<h2>3 &#8211; More Flexibility</h2>
<p>When working with an external agency, as we are not directly employed, we don&#8217;t have any direct involvement in other aspects of the day-to-day running of the business, allowing us to focus 100% on the end goal of generating new traffic and qualified leads for your business. We can offer impartial advice and recommend suggestions on other aspects of your business&#8217; digital marketing strategy such as; web design, Search Engine Optimisation, and User Experience improvements. As we have internal departments for SEO and Web Design we can easily and seamlessly integrate other services on a short or long term basis whilst understanding your key business goals and objectives.</p>
<p>2020, as everyone knows, was a tumultuous time for businesses. The flexible nature of being an agency allowed us to quickly adjust and adapt our core services for our clients continually, especially through the initial lockdown period. This allowed us to pause services where necessary, reallocate our resources, reenable services, and keep aim on a continually moving target. This not only protected our clients, but also our staff, and our client&#8217;s employees. This allowed us to continue to offer the high levels of service our clients have grown to expect over the years. Had these clients hired internally for their PPC services it&#8217;s possible that they would not have been able to continue to keep these employees on the books.</p>
<h2>4 &#8211; Agency Partner Benefits</h2>
<p>As a Google Partnered Google Ads Agency, and Microsoft Advertising Partner we have access to a number of features that wouldn&#8217;t be possible in-house.</p>
<p>Partners have access to extra resources, programs, tools, promotional vouchers, events, support, and much more. This allows us to better serve our clients and ensure we are offering the cutting-edge of PPC services provided in the country.</p>
<p>We are extremely proud to be Google Ads and Microsoft Advertising Partners. This ensures that the quality of our services has continued to improve every year and that we have continually exceeded the requirements to be recognised as a leading agency. To be a Google Ads Partner or Microsoft Advertising Partner requires that we pass exams annually, continue to increase campaign performance, and adopt best practice in what we do.</p>
<p>We wear our Google Ads &amp; Microsoft Advertising badges with honour, that&#8217;s why you&#8217;ll see them at the bottom of every page on our website.</p>
<h2>5 &#8211; Case Studies &amp; Testimonials</h2>
<p>PPC Agencies should have a list of client <a href="https://www.google.com/search?q=codefixer+reviews&amp;rlz=1C1CHBF_en-GBGB816GB816&amp;oq=codefixer+reviews&amp;aqs=chrome.0.69i59j69i60j69i61.1797j0j1&amp;sourceid=chrome&amp;ie=UTF-8#lrd=0x486108ee801a1981:0xf691ccc223f896d9,1,,,">testimonials</a> and <a href="https://www.codefixer.com/case-studies/">case studies</a> which can help you understand the type of work they have previously completed on behalf of clients. Our case studies and testimonials help prospective clients see the different work we have completed in the past, and help to choose whether or not you think Codefixer will be the right fit for your business.</p>
<p>We are extremely proud of the work that we do for our clients and don&#8217;t mind showing our results off, and can gladly give examples of our work to any prospective client.</p>
<p>If you have a project you would like to discuss with us for <a href="https://www.codefixer.com/google-adwords/">Google Ads PPC</a>, <a href="https://www.codefixer.com/seo-agency-belfast/">SEO</a>, <a href="https://www.codefixer.com/wordpress/">WordPress</a>, or <a href="https://www.codefixer.com/e-commerce/">E-Commerce</a>, don&#8217;t hesitate to <a href="https://www.codefixer.com/contact/">Contact Us</a>.</p>
<p>The post <a href="https://www.codefixer.com/blog/top-5-reasons-to-outsource-your-google-ads-to-a-ppc-agency/">Top 5 Reasons to Outsource Your Google Ads to a PPC Agency</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How To Get Free Traffic &#038; Sales From Surfaces Across Google</title>
		<link>https://www.codefixer.com/blog/how-to-get-free-traffic-sales-from-surfaces-across-google/</link>
		
		<dc:creator><![CDATA[Corey Lendrum]]></dc:creator>
		<pubDate>Fri, 11 Dec 2020 10:32:53 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.codefixer.com/?p=3197</guid>

					<description><![CDATA[<p>What Is Surfaces Across Google? Surfaces across Google is a Google Merchant Center programme designed to allow retailers and owners of e-commerce websites to promote their products for free on Google properties such as the Google Shopping Tab, Google Search and Google Images. If you have an e-commerce website, and not using Surfaces Across Google,  [...]</p>
<p>The post <a href="https://www.codefixer.com/blog/how-to-get-free-traffic-sales-from-surfaces-across-google/">How To Get Free Traffic &#038; Sales From Surfaces Across Google</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>What Is Surfaces Across Google?</h2>
<p>Surfaces across Google is a Google Merchant Center programme designed to allow retailers and owners of e-commerce websites to promote their products for free on Google properties such as the Google Shopping Tab, Google Search and Google Images.</p>
<p>If you have an e-commerce website, and not using Surfaces Across Google, you&#8217;re missing out!</p>
<p>Surfaces Across Google was introduced in 2020 and allows businesses to list their products on Google, for free. Previously the only way products could be listed on Google was by using a Google Shopping campaign or Smart Shopping campaign on Google Ads. As such, adopting Surfaces Across Google is a powerful tool to display your products to a larger audience of users who are searching for similar products on Google.</p>
<p>Surfaces Across Google can be implemented in less than an hour. Your account will be usually approved within 72 hours by Google, so long as you have all the required information and your products and website are compliant with Googles terms.</p>
<p>Your products can show up as either standard or advanced listings on Surfaces Across Google, with both having their own unique <a href="https://support.google.com/merchants/answer/9199328">data feed requirements</a>.</p>
<p>Below, we will give you the exact step-by-step guide of how to get your products listed on Surfaces Across Google in no time!</p>
<h2>How Do I Sign Up For Surfaces Across Google?</h2>
<p>The first step in registering your products to show on Surfaces Across Google is by signing up for a Merchant Center Account. To do this, visit <a href="https://merchants.google.com/">Google Merchant Center</a></p>
<p><img decoding="async" class="alignnone wp-image-3207 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-800x401.jpg" alt="Google Merchant Center" width="800" height="401" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-200x100.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-300x150.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-400x200.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-540x272.jpg 540w, https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-600x301.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-640x320.jpg 640w, https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-768x385.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-800x401.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-1024x513.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-1200x601.jpg 1200w, https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center-1536x770.jpg 1536w, https://www.codefixer.com/wp-content/uploads/2020/12/1-Visit-Merch-Center.jpg 1920w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>Once you&#8217;ve visited Google Merchant Center, click on &#8220;Get Started&#8221;.</p>
<p><img decoding="async" class="alignnone wp-image-3208 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/2-Select-Get-Started-800x241.jpg" alt="Google Merchant Center Create Account" width="800" height="241" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/2-Select-Get-Started-200x60.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/2-Select-Get-Started-300x90.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/2-Select-Get-Started-400x120.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/2-Select-Get-Started-600x180.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/2-Select-Get-Started-768x231.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/2-Select-Get-Started-800x241.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/2-Select-Get-Started-1024x308.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/2-Select-Get-Started-1200x361.jpg 1200w, https://www.codefixer.com/wp-content/uploads/2020/12/2-Select-Get-Started-1536x462.jpg 1536w, https://www.codefixer.com/wp-content/uploads/2020/12/2-Select-Get-Started.jpg 1596w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>Enter your email address, click &#8220;next&#8221;, and follow the steps to create your Google Merchant Center account.<br />
<img decoding="async" class="alignnone wp-image-3209 size-full" src="https://www.codefixer.com/wp-content/uploads/2020/12/3-Enter-Email-Address-and-click-next.jpg" alt="Google Merchant Center Sign In" width="536" height="614" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/3-Enter-Email-Address-and-click-next-200x229.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/3-Enter-Email-Address-and-click-next-262x300.jpg 262w, https://www.codefixer.com/wp-content/uploads/2020/12/3-Enter-Email-Address-and-click-next-400x458.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/3-Enter-Email-Address-and-click-next.jpg 536w" sizes="(max-width: 536px) 100vw, 536px" /><br />
Once you have created your Google Merchant Center account you&#8217;ll be required to provide your business information. You should see the screen shown in the image below. Enter your business name, country, and time zone, and save your selection.</p>
<p><img decoding="async" class="alignnone wp-image-3210 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/4-Enter-Business-Info-800x451.jpg" alt="Google Merchant Center Enter Business Info" width="800" height="451" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/4-Enter-Business-Info-200x113.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/4-Enter-Business-Info-300x169.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/4-Enter-Business-Info-400x225.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/4-Enter-Business-Info-600x338.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/4-Enter-Business-Info-768x433.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/4-Enter-Business-Info-800x451.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/4-Enter-Business-Info.jpg 976w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>You will then be asked to select where you would like your customers to check out. Assuming you have an e-commerce website, you will want to select &#8220;On My Website&#8221;, however, if you also have a retail store and would like to sell products from there, you may also want to select &#8220;At My Local Shop&#8221;.</p>
<p><img decoding="async" class="alignnone wp-image-3211 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/5-Select-Where-To-Sell-800x516.jpg" alt="Google Merchant Center Where To Sell" width="800" height="516" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/5-Select-Where-To-Sell-200x129.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/5-Select-Where-To-Sell-300x193.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/5-Select-Where-To-Sell-400x258.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/5-Select-Where-To-Sell-600x387.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/5-Select-Where-To-Sell-768x495.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/5-Select-Where-To-Sell-800x516.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/5-Select-Where-To-Sell.jpg 901w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>Once you have clicked to continue you will be asked to select your email preferences and agree to the Google Merchant Center Terms of Service. You may wish to read the Terms of Service to familiarise yourself with the rules when listing products on Google Merchant Center. If you wish to receive email updates about tips &amp; best practices, as well as invitations to test new features, you will also want to tick those boxes.</p>
<p><img decoding="async" class="alignnone wp-image-3212 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/6-Agree-To-Policy-800x358.jpg" alt="Google Merchant Center Agree To Policy" width="800" height="358" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/6-Agree-To-Policy-200x90.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/6-Agree-To-Policy-300x134.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/6-Agree-To-Policy-400x179.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/6-Agree-To-Policy-600x269.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/6-Agree-To-Policy-768x344.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/6-Agree-To-Policy-800x358.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/6-Agree-To-Policy-1024x459.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/6-Agree-To-Policy.jpg 1040w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>Once you have completed the all of the steps so far and confirmed that the information is correct, click continue to visit your Merchant Center Account.</p>
<p><img decoding="async" class="alignnone wp-image-3213 size-fusion-600" src="https://www.codefixer.com/wp-content/uploads/2020/12/7-Click-Continue-600x233.jpg" alt="Google Merchant Center Click Continue" width="600" height="233" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/7-Click-Continue-200x78.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/7-Click-Continue-300x117.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/7-Click-Continue-400x156.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/7-Click-Continue-600x233.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/7-Click-Continue.jpg 684w" sizes="(max-width: 600px) 100vw, 600px" /></p>
<p>Now that your Google Merchant Center account is now set up, we still need to make a few changes before we will be eligible to appear on Surfaces Across Google. To appear on Surfaces Across Google you will need to complete your Product &amp; Business Information settings.  The Tax setting is only necessary for the USA, and delivery settings are optional, however, we recommend you complete as much of this information as possible to maximise the chance of your account being approved.</p>
<p><img decoding="async" class="alignnone wp-image-3214 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/8-Product-and-Business-Info-800x562.jpg" alt="Google Merchant Center Products &amp; Business info" width="800" height="562" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/8-Product-and-Business-Info-200x141.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/8-Product-and-Business-Info-300x211.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/8-Product-and-Business-Info-400x281.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/8-Product-and-Business-Info-600x422.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/8-Product-and-Business-Info-768x540.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/8-Product-and-Business-Info-800x562.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/8-Product-and-Business-Info-1024x720.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/8-Product-and-Business-Info.jpg 1124w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>If you are offering delivery on your orders, you&#8217;ll need to configure your Delivery Service Settings. Apply a descriptive name for the delivery service that you&#8217;re creating, select the service area, and the applicable currency, in our example this is GBP. Once this is completed, we need to configure delivery times. These include the order cut-off time, handling time, and transit times.</p>
<p><img decoding="async" class="alignnone wp-image-3215 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/9-New-Delivery-Service-800x666.jpg" alt="Google Merchant Center Add Delivery Service" width="800" height="666" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/9-New-Delivery-Service-200x167.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/9-New-Delivery-Service-300x250.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/9-New-Delivery-Service-400x333.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/9-New-Delivery-Service-600x500.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/9-New-Delivery-Service-768x640.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/9-New-Delivery-Service-800x666.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/9-New-Delivery-Service-1024x853.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/9-New-Delivery-Service.jpg 1058w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>Once you have completed the delivery service settings, you will be prompted to create a delivery rate. This can be used to define a delivery cost by order price, order weight, or the number of items sold. In our example below, orders over £50, shipped to the UK, are eligible for free shipping. Orders under £50 have a fixed shipping rate of £2.99 per order.</p>
<p><img decoding="async" class="alignnone wp-image-3216 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/10-Delivery-Rate-800x551.jpg" alt="Google Merchant Center Add Delivery Rate" width="800" height="551" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/10-Delivery-Rate-200x138.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/10-Delivery-Rate-300x207.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/10-Delivery-Rate-400x276.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/10-Delivery-Rate-600x414.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/10-Delivery-Rate-768x529.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/10-Delivery-Rate-800x551.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/10-Delivery-Rate-1024x706.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/10-Delivery-Rate.jpg 1168w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>If you ship to different countries or regions you will need to repeat this step for any subsequent locations. In the example below, we have created two shipping services, one for the United Kingdom, and one for Ireland. In the United Kingdom, orders over £50 are shipped for free, and a flat £2.99 rate for under £50 order value. In Ireland, all orders have a flat shipping rate of £4.99.</p>
<p><img decoding="async" class="alignnone wp-image-3217 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/11-Delivery-Services-800x192.jpg" alt="Google Merchant Center Delivery Services" width="800" height="192" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/11-Delivery-Services-200x48.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/11-Delivery-Services-300x72.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/11-Delivery-Services-400x96.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/11-Delivery-Services-600x144.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/11-Delivery-Services-768x184.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/11-Delivery-Services-800x192.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/11-Delivery-Services-1024x246.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/11-Delivery-Services-1200x288.jpg 1200w, https://www.codefixer.com/wp-content/uploads/2020/12/11-Delivery-Services.jpg 1322w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>&nbsp;</p>
<p>Next, we will want to skip across to &#8220;Returns Policies&#8221; on the right-hand side. Once here, we will want to click the blue button for &#8220;Add Policy&#8221;. Once you have done this, complete all the relevant sections. It will ask you the countries, your websites shipping &amp; returns policy URL, whether or not you accept returns, the method for receiving returns, the return window, and restocking fees where applicable.</p>
<p><img decoding="async" class="alignnone wp-image-3218 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/12-Returns-Policy-800x330.jpg" alt="Google Merchant Center Returns Policy" width="800" height="330" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/12-Returns-Policy-200x83.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/12-Returns-Policy-300x124.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/12-Returns-Policy-400x165.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/12-Returns-Policy-600x248.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/12-Returns-Policy-768x317.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/12-Returns-Policy-800x330.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/12-Returns-Policy-1024x423.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/12-Returns-Policy-1200x495.jpg 1200w, https://www.codefixer.com/wp-content/uploads/2020/12/12-Returns-Policy-1536x634.jpg 1536w, https://www.codefixer.com/wp-content/uploads/2020/12/12-Returns-Policy.jpg 1538w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>We now need to review and confirm our returns policy and click accept if all of the information is accurate.</p>
<p><img decoding="async" class="alignnone wp-image-3219 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/13-Add-Return-Policy-800x589.jpg" alt="Google Merchant Center Returns Policy" width="800" height="589" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/13-Add-Return-Policy-200x147.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/13-Add-Return-Policy-300x221.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/13-Add-Return-Policy-400x294.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/13-Add-Return-Policy-600x442.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/13-Add-Return-Policy-768x565.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/13-Add-Return-Policy-800x589.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/13-Add-Return-Policy-1024x754.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/13-Add-Return-Policy.jpg 1140w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>The last step of configuring our product and business information, before adding our products, is verifying and claiming your website. Fortunately, this is one of the quickest and easiest steps. To verify and claim your website URL, simply enter it, and click save, then click verify. Done, simples!</p>
<p><img decoding="async" class="alignnone wp-image-3231 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/claim-site-800x267.jpg" alt="google merchant center claim website" width="800" height="267" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/claim-site-200x67.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/claim-site-300x100.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/claim-site-400x133.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/claim-site-600x200.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/claim-site-768x256.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/claim-site-800x267.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/claim-site-1024x341.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/claim-site.jpg 1059w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<h2>Adding Products on Google Merchant Center</h2>
<p>Next, we must add products to Google Merchant Center. This could be a fast and easy process, or a rather time-consuming process, depending on how many products you have, and the content management system you&#8217;re using for your website.<br />
There are two options for adding products to Google Merchant Center, the first is by manually adding them one-by-one, and the second option is by using a product feed. Let&#8217;s go over how to add products manually first.</p>
<h2>Manually Add Products on Google Merchant Center</h2>
<p>On the products tab on Google Merchant Center, to manually add a product, click &#8220;Add Product&#8221; under where it says &#8220;Individual Product&#8221;.</p>
<p><img decoding="async" class="alignnone wp-image-3201 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/15-Add-Products-800x392.jpg" alt="Google Merchant Center Add Products" width="800" height="392" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/15-Add-Products-200x98.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/15-Add-Products-300x147.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/15-Add-Products-400x196.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/15-Add-Products-600x294.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/15-Add-Products-768x377.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/15-Add-Products-800x392.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/15-Add-Products-1024x502.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/15-Add-Products-1200x589.jpg 1200w, https://www.codefixer.com/wp-content/uploads/2020/12/15-Add-Products-1536x753.jpg 1536w, https://www.codefixer.com/wp-content/uploads/2020/12/15-Add-Products.jpg 1568w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>Once here, you will see a number of fields to provide information, and images of your product. It&#8217;s recommended that you put as much relevant information into these fields as possible. Once you have completed this, you can save your product. If you sell a number of similar products, it&#8217;s possible to duplicate the product you have just created, meaning you will have fewer fields to complete the second time around. You will need to repeat this step until all of your products are now added to your Google Merchant Center account.</p>
<p><img decoding="async" class="alignnone wp-image-3202 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/16-Product-Details-800x680.jpg" alt="Google Merchant Center Product Details" width="800" height="680" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/16-Product-Details-200x170.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/16-Product-Details-300x255.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/16-Product-Details-400x340.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/16-Product-Details-600x510.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/16-Product-Details-768x653.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/16-Product-Details-800x680.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/16-Product-Details-1024x870.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/16-Product-Details.jpg 1124w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>&nbsp;</p>
<h2>Listing Products Using a Feed on Google Merchant Center</h2>
<p>Using a feed to update your products on Google Merchant Center can save you time. There are a few different methods to generate a feed; first, you can create it manually in a Google Sheets file, and upload this. Or, we can use a plugin or tool on our content management system. We recommend researching these to find the best option depending on your own circumstances. Some are free, some are paid, some are better for small numbers of products, and some are better for larger numbers of products. Your best bet is to head over to Google and search &#8220;Google Shopping Feed&#8221;+&#8221;WooCommerce/Shopify/Magento/Shopwired&#8221;, etc.</p>
<p>In the image below we have selected the option for Scheduled Fetch. With this option, Google will automatically pull information from your feed on a set schedule.</p>
<p><img decoding="async" class="alignnone wp-image-3204 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/Feed-1-800x479.jpg" alt="Google Merchant Center Upload Feed" width="800" height="479" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/Feed-1-200x120.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-1-300x180.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-1-400x240.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-1-500x300.jpg 500w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-1-600x360.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-1-768x460.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-1-800x479.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-1-1024x614.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-1-1200x719.jpg 1200w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-1.jpg 1410w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>We have instructed Google to fetch our shopping feed, every day, at midnight. Make sure the time-zone is correct, and enter the URL for your newly created feed in the &#8220;File URL&#8221; box. If your feed requires a user name or password to access it, please include these in the boxes provided.</p>
<p><img decoding="async" class="alignnone wp-image-3205 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/Feed-2-800x523.jpg" alt="Google Merchant Center Upload Feed Details" width="800" height="523" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/Feed-2-200x131.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-2-300x196.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-2-400x262.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-2-600x392.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-2-768x502.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-2-800x523.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-2-1024x670.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-2-1200x785.jpg 1200w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-2.jpg 1350w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>Once we create our feed, we can then head over to &#8220;All Products&#8221; and see that our images have added. We can see; their images, titles, ID, when they were last updated, price, number of clicks from Google Shopping, number of clicks from Surfaces Across Google, the condition, availability, country of sale, language, source, programmes, and status.</p>
<p><img decoding="async" class="alignnone wp-image-3206 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/Feed-Success-800x372.jpg" alt="Google Merchant Center All Products" width="800" height="372" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/Feed-Success-200x93.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-Success-300x139.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-Success-400x186.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-Success-600x279.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-Success-768x357.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-Success-800x372.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-Success-1024x476.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-Success-1200x558.jpg 1200w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-Success-1536x714.jpg 1536w, https://www.codefixer.com/wp-content/uploads/2020/12/Feed-Success.jpg 1878w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<h2>Activating Surfaces Across Google</h2>
<p>Once we have provided our products and business information, we are now able to activate Google Surfaces. For this, go back to the &#8220;Growth&#8221;, select &#8220;Manage Programs&#8221;, and visit the option for Surfaces, its title should read &#8220;List your online products for free&#8221;. Once here, you&#8217;ll need to confirm that you have read the policies and that your account complies, and click activate.</p>
<p>Following this, your account will be reviewed to ensure it complies by all the policies. This should take approximately 72 hours. If your review is successful, your products should begin to show on Google Search, Images &amp; Shopping for free in no time!</p>
<p><img decoding="async" class="alignnone wp-image-3203 size-fusion-800" src="https://www.codefixer.com/wp-content/uploads/2020/12/17-Activate-800x416.jpg" alt="Google Merchant Center Activate Account" width="800" height="416" srcset="https://www.codefixer.com/wp-content/uploads/2020/12/17-Activate-200x104.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/12/17-Activate-300x156.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/12/17-Activate-400x208.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/12/17-Activate-600x312.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/12/17-Activate-768x399.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/12/17-Activate-800x416.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/12/17-Activate-1024x533.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/12/17-Activate-1200x624.jpg 1200w, https://www.codefixer.com/wp-content/uploads/2020/12/17-Activate-1536x799.jpg 1536w, https://www.codefixer.com/wp-content/uploads/2020/12/17-Activate.jpg 1544w" sizes="(max-width: 800px) 100vw, 800px" /></p>
<p>&nbsp;</p>
<p>If you need help getting started with Google Shopping, or Surfaces Across Google, Contact Us!</p>
<p>The post <a href="https://www.codefixer.com/blog/how-to-get-free-traffic-sales-from-surfaces-across-google/">How To Get Free Traffic &#038; Sales From Surfaces Across Google</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Google Ads Faces Backlash From Advertisers Over Changes</title>
		<link>https://www.codefixer.com/blog/google-ads-faces-backlash-from-advertisers-over-changes/</link>
		
		<dc:creator><![CDATA[Corey Lendrum]]></dc:creator>
		<pubDate>Sat, 10 Oct 2020 18:42:33 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.codefixer.com/?p=3111</guid>

					<description><![CDATA[<p>Google has recently introduced a number of changes to the Google Ads platform over the summer of 2020 which were met with an overwhelmingly negative response from the Google Ads community. Read more on these controversial changes.</p>
<p>The post <a href="https://www.codefixer.com/blog/google-ads-faces-backlash-from-advertisers-over-changes/">Google Ads Faces Backlash From Advertisers Over Changes</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Google has recently introduced a number of changes to the Google Ads platform over the summer of 2020 which were met with an overwhelmingly negative response from the Google Ads community. Some of these changes were implemented to continue the shift towards automation and make the Google Ads UI easier to navigate, whilst others appear to have been introduced for no other reason but to hide information from advertisers.</p>
<p>Below we will detail these changes, and explain the impact each of these changes may have on advertisers on the platform.</p>
<h2>Digital Services Tax (DST)</h2>
<p>On the 1st of September, users of Google Ads received an email from the Google Ads Payments email address, advising that advertisers in the UK, Turkey, and Austria would be subject to extra fees on their Google Ads invoices.</p>
<p>This email, unredacted and in full can be seen below.</p>
<blockquote>
<div class="m_3703231546409434487body">
<p><img decoding="async" src="https://ci4.googleusercontent.com/proxy/nEHx7JWq-LlOqRDdPpixd_5Xq__hNCtenwJz0GWvmIRp6bmWVC8GKcZMramZ9BvIqgLn-I8WEJKMy0c1vMHuvYARXwkaVJoSRSTtn9xJ5bujPLsxPfV9qr6-LK8COIjmzFqsNaCz=s0-d-e1-ft#https://www.gstatic.com/images/branding/googlelogo/2x/googlelogo_color_120x48dp.png" alt="Google" width="120" align="left" vspace="6" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<table role="presentation" border="0" cellspacing="0" cellpadding="0" align="center">
<tbody>
<tr>
<td dir="ltr" valign="top">
<div>Dear Customer,</div>
<p>&nbsp;</p>
<div>On 1 November 2020, Google will begin charging new fees for ads served in the United Kingdom, Turkey and Austria.</div>
<p>&nbsp;</p>
<div></div>
<div><strong>New fees</strong></div>
<p>&nbsp;</p>
<div></div>
<div>As of 1 November 2020, we will begin adding a fee to your next invoice or statement for ads served in specific countries:</div>
<p>&nbsp;</p>
<div></div>
<div></div>
<div>
<table role="presentation" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<ul>
<li></li>
</ul>
</td>
<td valign="top" width="500px">
<div><strong>Ads served in Turkey:</strong> a 5% Regulatory Operating Cost added to your invoice or statement</div>
</td>
<td width="16"></td>
</tr>
</tbody>
</table>
</div>
<div>
<table role="presentation" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<ul>
<li></li>
</ul>
</td>
<td valign="top" width="500px">
<div><strong>Ads served in Austria:</strong> a 5% Austria DST Fee added to your invoice or statement</div>
</td>
<td width="16"></td>
</tr>
</tbody>
</table>
</div>
<div>
<table role="presentation" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<ul>
<li></li>
</ul>
</td>
<td valign="top" width="500px">
<div><strong>Ads served in the United Kingdom:</strong> a 2% UK DST Fee added to your invoice or statement</div>
</td>
<td width="16"></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
</div>
<div>The Regulatory Operating Costs are being added due to significant increases in the complexity and cost of complying with regulations in Turkey. In Austria and the United Kingdom, the DST Fee is driven by the new digital services tax in these countries.</div>
<p>&nbsp;</p>
<div></div>
<div></div>
<div><strong>You can view <a href="https://www.google.com/appserve/mkt/p/AD-FnExN_B8uu8ALbNYoQfi2_Z7GfH8rLm1QK0wo50LGwkGgu0XWTlGKFYEv-Oy1p4YwuyqXKHEDVpjwa_tfwE4Egcm2uq6Vb4DhorHPJiIgcHAz0bmS5gCBzTo3" target="_blank" rel="noopener noreferrer" data-saferedirecturl="https://www.google.com/url?q=https://www.google.com/appserve/mkt/p/AD-FnExN_B8uu8ALbNYoQfi2_Z7GfH8rLm1QK0wo50LGwkGgu0XWTlGKFYEv-Oy1p4YwuyqXKHEDVpjwa_tfwE4Egcm2uq6Vb4DhorHPJiIgcHAz0bmS5gCBzTo3&amp;source=gmail&amp;ust=1601387252631000&amp;usg=AFQjCNFZLYADcpyoZqbqfLN-fkjHBlbKPA">a more complete description of fee changes</a>, but here are the most important changes that may apply:</strong></div>
<p>&nbsp;</p>
<div></div>
<div></div>
<div><strong>Ads purchased through Google Ads</strong></div>
<p>&nbsp;</p>
<div></div>
<div></div>
<div>
<table role="presentation" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<ul>
<li></li>
</ul>
</td>
<td valign="top" width="500px">
<div>These fees will be shown on your invoice or statement as a separate line item per country. They will also be displayed in the &#8216;Transactions&#8217; section of your Google Ads account. You&#8217;ll be charged for advertisements served in the countries mentioned above.</div>
</td>
<td width="16"></td>
</tr>
</tbody>
</table>
</div>
<div>
<table role="presentation" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<ul>
<li></li>
</ul>
</td>
<td valign="top" width="500px">
<div>Any taxes, such as sales tax, VAT, GST or QST, that apply in your country may also apply to the new fees.</div>
</td>
<td width="16"></td>
</tr>
</tbody>
</table>
</div>
<div>
<table role="presentation" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<ul>
<li></li>
</ul>
</td>
<td valign="top" width="500px">
<div>If you pay through monthly invoicing or automatic payments, these fees will be added in addition to your account budget. For example, if you have a budget of €100 and accrue €5 in Austria DST Fees for ads served in Austria, you&#8217;ll be billed €105 (plus any taxes, such as sales tax, VAT, GST or QST, that may apply in your country).</div>
</td>
<td width="16"></td>
</tr>
</tbody>
</table>
</div>
<div>
<table role="presentation" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<div></div>
</td>
<td valign="top" width="500px">
<div><a href="https://www.google.com/appserve/mkt/p/AD-FnEzsjkc9BHuA0wXbcjm_vZahEiZJaEJcs4hO-vfPbSkl06qSEVgOoxeqpBlcr7HjN_tREOocEFSBAnZoO0PLbQa8dadjrlBb4qpGbV59-G42_XlvxXcekMhx" target="_blank" rel="noopener noreferrer" data-saferedirecturl="https://www.google.com/url?q=https://www.google.com/appserve/mkt/p/AD-FnEzsjkc9BHuA0wXbcjm_vZahEiZJaEJcs4hO-vfPbSkl06qSEVgOoxeqpBlcr7HjN_tREOocEFSBAnZoO0PLbQa8dadjrlBb4qpGbV59-G42_XlvxXcekMhx&amp;source=gmail&amp;ust=1601387252631000&amp;usg=AFQjCNGCgbU-92Q1IdOKBJhmxqRWvRax3g">Learn more about adjusting your account budget</a></div>
</td>
<td width="16"></td>
</tr>
</tbody>
</table>
</div>
<div>
<table role="presentation" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top">
<ul>
<li></li>
</ul>
</td>
<td valign="top" width="500px">
<div>If you pay through manual payments, these fees may be charged after your payment has been fully spent. You may be left with an open balance that will be automatically deducted from your next prepayment. For example, if you accumulate €5 of Regulatory Operating Costs for ads served in Turkey, and you make a new payment for €100, you would have €95 credit towards displaying ads (€100 &#8211; €5), and your available balance would show €95.</div>
</td>
<td width="16"></td>
</tr>
</tbody>
</table>
</div>
<p>&nbsp;</p>
<div><a href="https://www.google.com/appserve/mkt/p/AD-FnExN_B8uu8ALbNYoQfi2_Z7GfH8rLm1QK0wo50LGwkGgu0XWTlGKFYEv-Oy1p4YwuyqXKHEDVpjwa_tfwE4Egcm2uq6Vb4DhorHPJiIgcHAz0bmS5gCBzTo3" target="_blank" rel="noopener noreferrer" data-saferedirecturl="https://www.google.com/url?q=https://www.google.com/appserve/mkt/p/AD-FnExN_B8uu8ALbNYoQfi2_Z7GfH8rLm1QK0wo50LGwkGgu0XWTlGKFYEv-Oy1p4YwuyqXKHEDVpjwa_tfwE4Egcm2uq6Vb4DhorHPJiIgcHAz0bmS5gCBzTo3&amp;source=gmail&amp;ust=1601387252631000&amp;usg=AFQjCNFZLYADcpyoZqbqfLN-fkjHBlbKPA">Learn more about country-specific fees</a></div>
<p>&nbsp;</p>
<div></div>
<div></div>
<div>Thank you,</div>
<p>&nbsp;</p>
<div></div>
<div></div>
<div>The Google Payments Team</div>
</td>
</tr>
</tbody>
</table>
</div>
</blockquote>
<p>This came as a surprise to many advertisers, however, those keeping a keen eye on the <a href="https://www.gov.uk/government/publications/introduction-of-the-digital-services-tax/digital-services-tax">UK Governments Digital Services Tax</a> legislation, publically announced in March 2020, expected there to be changes made to how much Tax Google, other Search Engines, Social Media companies, and online market-places would be required to pay.</p>
<p>The <a href="https://www.politico.eu/article/uk-to-bring-in-digital-services-tax-in-2020/">Digital Services Tax (DST) was first announced back in October 2018</a>.</p>
<p>The wording of the policy paper made it very obvious who exactly the Government were targeting following years of controversy surrounding how companies like Google, Facebook &amp; Amazon are taxed on their operations in the UK.</p>
<p>&#8220;The Digital Services Tax will apply to a group’s businesses that provide a social media service, search engine or an online marketplace to UK users. These businesses will be liable to Digital Services Tax when the group’s worldwide revenues from these digital activities are more than £500 million and more than £25 million of these revenues are derived from UK users.&#8221;</p>
<p>What was more surprising to the Google Ads community is how the responsibility for paying this tax was immediately forwarded directly to them, especially with no prior communication or consultation. Google appears to have still not published a press release addressing some of the many concerns of the advertising community one month on from the announcement. This, quite rightly, has the community feeling a bit let down, especially considering that <a href="https://www.statista.com/statistics/268737/googles-digital-advertising-revenue-in-the-uk/">advertisers generated £5.1bn in revenue for Google in the UK during 2019.</a></p>
<h3><strong>So how does this impact advertisers?</strong></h3>
<p>Quite simply, if you&#8217;re paying for ads on Google, be it display, shopping, search, smart, or video campaigns, and based in the UK, you can expect to find a 2% surcharge on your Google Ads bill beginning from the 1st of November.</p>
<h2>Changes to the Search Terms Report</h2>
<p>At the beginning of September, Google Ads account began showing a notification pertaining to the Search Terms Report. This announcement had a significant, and immediate impact on the Search Terms Report and had essentially stripped out a large number of searches from the report. The net effect of this was that only terms which had a &#8220;Significant&#8221; number of searches would be included, which means advertisers are now paying for clicks, without knowing what the user searched for.</p>
<p><img decoding="async" class="alignnone size-full wp-image-3128" src="https://www.codefixer.com/wp-content/uploads/2020/09/search_terms_report.jpg" alt="Google Ads Search Terms Report" width="391" height="163" srcset="https://www.codefixer.com/wp-content/uploads/2020/09/search_terms_report-200x83.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/09/search_terms_report-300x125.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/09/search_terms_report.jpg 391w" sizes="(max-width: 391px) 100vw, 391px" /></p>
<p><a href="https://support.google.com/google-ads/answer/7531771?hl=en#:~:text=Starting%20September%202020%2C%20the%20search,fewer%20terms%20in%20your%20report.">Google announced the following statement on the 1st of September;</a></p>
<blockquote><p>&#8220;Starting September 2020, the search terms report only includes terms that a significant number of users searched for, even if a term received a click. You may now see fewer terms in your report.&#8221;</p></blockquote>
<p>When you consider the fact that 15% of Google Searches are unique, and have never been conducted before, we can expect that a much higher percentage of data from the Search Terms Report will now be removed.</p>
<p>This has led many in the Google Ads community to feel outraged, arguing that this is another step towards hiding details of our Google Ads campaigns in a move towards automated account management.</p>
<h3><strong>What does this mean for advertisers?</strong></h3>
<p>It means pre-emptive negative keyword management is of paramount importance. Ensuring search term accuracy behind a shroud of secrecy is invariably going to be more difficult, as such, we must be watching our search terms like a hawk. This will likely be much more difficult on Broad Match keywords, as such, consider including more +broad +match +modifier, &#8220;phrase match&#8221;, or [exact match] keywords to ensure accuracy.</p>
<h2>User Location Report</h2>
<p>Also in September many of us logged in to our Google Ads account to find that our User Location Report appeared to have disappeared into thin air. Under Locations, we were used to seeing &#8220;User Location Report&#8221;. This is now no longer visible in here. The date coincides with the date that the Search Terms report was changed to only include queries with &#8220;Significant Volume&#8221;.</p>
<p><img decoding="async" class="alignnone size-full wp-image-3136" src="https://www.codefixer.com/wp-content/uploads/2020/09/User-location-settings.jpg" alt="User location settings" width="157" height="341" srcset="https://www.codefixer.com/wp-content/uploads/2020/09/User-location-settings-138x300.jpg 138w, https://www.codefixer.com/wp-content/uploads/2020/09/User-location-settings.jpg 157w" sizes="(max-width: 157px) 100vw, 157px" /></p>
<p>However, whilst the User Location Report was moved, it wasn&#8217;t removed!</p>
<p>To find the new User Location Report, first click on all campaigns, or a specific campaign, and select &#8220;Locations&#8221;, under &#8220;Locations&#8221; on the left side menu. Once you&#8217;re on the Locations Report, select the drop-down which should be currently selecting &#8220;Targeted Locations&#8221; in the top right, just below your selected date range, and click on &#8220;Matched Locations&#8221;. By following these steps you&#8217;ll now be able to see the User Location Report in all its glory!</p>
<p><img decoding="async" class="alignnone size-full wp-image-3137" src="https://www.codefixer.com/wp-content/uploads/2020/09/User-Location-Report.jpg" alt="User Location Report" width="1278" height="539" srcset="https://www.codefixer.com/wp-content/uploads/2020/09/User-Location-Report-200x84.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/09/User-Location-Report-300x127.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/09/User-Location-Report-400x169.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/09/User-Location-Report-600x253.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/09/User-Location-Report-768x324.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/09/User-Location-Report-800x337.jpg 800w, https://www.codefixer.com/wp-content/uploads/2020/09/User-Location-Report-1024x432.jpg 1024w, https://www.codefixer.com/wp-content/uploads/2020/09/User-Location-Report-1200x506.jpg 1200w, https://www.codefixer.com/wp-content/uploads/2020/09/User-Location-Report.jpg 1278w" sizes="(max-width: 1278px) 100vw, 1278px" /></p>
<h3>What impact does this have on advertisers?</h3>
<p>Little to no impact on advertisers. There are just two extra clicks you must make before finding the User Locations Report. I guess it&#8217;s also now called the &#8220;Matched Locations Report&#8221; which is also something probably worth remembering.</p>
<h2>Location Targeting Settings</h2>
<p>Google has had, for quite a while, set your default location selection settings to &#8220;Users in, Or Interested In My Location&#8221;, rather than the alternative option, &#8220;Users in, Or Regularly In My Location&#8221;.</p>
<p>If the default location selection setting is chosen, your ads will not only show for users in your location, but also for users who show an interest in your location. When this setting is selected it is common to find users who are outside your target locations appearing in your Matched Locations Report (see above).</p>
<p>For example, with the default setting selected, if you live in, for example, Belfast, but planning a honeymoon in The Maldives, you may see ads from advertisers based in The Maldives when searching for hotels. This, arguably, is good targeting as the user has shown intent in their behaviours and are likely in the market for a hotel in The Maldives.</p>
<p>On the other hand, if you live in New York and researching family ancestry in Dublin, then use Google to find a local dentist, you would be eligible to be shown an ad from someone targeting users searching for Dentists in Dublin with the default location selection setting enabled.</p>
<p>This is a setting that can waste between 7%-10% of clicks alone, therefore wasting up to 10% of your ad spend.</p>
<p>The alternative setting, &#8220;Users In, Or Regularly In My Location&#8221; can be used to exclude users who are not in your location from being displayed ads from advertisers who are not targeting their location.</p>
<p>Google announced that beginning the 1st of August Google would remove this location targeting setting.</p>
<p><img decoding="async" class="alignnone size-full wp-image-3140" src="https://www.codefixer.com/wp-content/uploads/2020/09/location_targeting_Settings.gif" alt="Google Ads location targeting settings" width="372" height="176" /></p>
<p>Whilst this hasn&#8217;t been implemented yet, this again was a controversial decision by Google which appears to provide no value to the advertiser, or the end-user. Why would an advertiser want to spend money on clicks from outside of their target location, and likewise, why would a user want to be hit with an ad that is completely irrelevant to them?</p>
<h3>What can advertisers do?</h3>
<p>As this hasn&#8217;t been implemented yet, the only thing we can currently do is wait and see. If this is implemented it may come with alternative options, or there may be a workaround. In the meantime, wait it out, keep an eye on your Matched Locations Report, and hope for the best.</p>
<h2>Text Ads Disappearing</h2>
<p>In September many users reported that the option to create a Text Ad was now removed. When you tried to create a Text Ad you were displayed a dialogue box which said;</p>
<p>&#8220;Try a responsive search ad instead, which allows you to provide multiple headlines and description options and then adapts to show the best performing ad for each search. To create a text ad, first, click &#8216;Responsive search ad&#8217; and then &#8216;Switch back to text ads'&#8221;.</p>
<h2><img decoding="async" class="alignnone size-full wp-image-3142" src="https://www.codefixer.com/wp-content/uploads/2020/09/Text_ads.jpg" alt="Google Ads Text Ads Disappearing" width="778" height="553" srcset="https://www.codefixer.com/wp-content/uploads/2020/09/Text_ads-200x142.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/09/Text_ads-300x214.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/09/Text_ads-400x284.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/09/Text_ads-600x426.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/09/Text_ads-768x546.jpg 768w, https://www.codefixer.com/wp-content/uploads/2020/09/Text_ads.jpg 778w" sizes="(max-width: 778px) 100vw, 778px" /></h2>
<p>This appears to only have been tested on a small number of accounts and was not rolled out universally to all accounts. This is another step in the direction of automated ad creatives. Whilst responsive search ads appear to perform very well, it&#8217;s worth noting that often the headline and description combinations, especially whilst the ad is still in learning, can lead to some unusual results with conflicting information. It&#8217;s of paramount importance when creating responsive search ads to understand that this ad can appear in a number of combinations. Headlines or descriptions including information such as &#8220;25+ Years Experience&#8221;, &#8220;Est. 2009&#8221; whilst making sense on their own, can give a contradictory message and undermine user confidence. Make sure your headlines and descriptions are not selected based on Google&#8217;s autocomplete solely and consider pinning headlines and descriptions which are of most importance.</p>
<p>For once, Google provided us with a rather simple workaround for this by clicking on &#8220;Switch back to text ads&#8221; once you select to create an ad. This may be something we will see in the future rolled out across more accounts, and based on the results, this may be the direction search ads are headed.</p>
<h3>What must advertisers do?</h3>
<p>If you would like to create a normal text ad, simply click to create a responsive search ad, and select &#8220;Switch back to text ads&#8221;. You will then be able to create a text ad as normal. This has no lasting impact on advertisers, however, in future, this may be rolled out as Google&#8217;s focus has shifted from manual account management towards their suite of automated tools such as smart bidding, dynamic search campaigns, and smart campaigns.</p>
<p>&nbsp;</p>
<p>If you found this information useful, please consider checking out some of our other<a href="https://www.codefixer.com/blog/"> Blogs articles for up to date Google Ads &amp; SEO news</a>.</p>
<p>&nbsp;</p>
<p>The post <a href="https://www.codefixer.com/blog/google-ads-faces-backlash-from-advertisers-over-changes/">Google Ads Faces Backlash From Advertisers Over Changes</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Your Most Frequently Asked Google Ads/PPC Questions Answered</title>
		<link>https://www.codefixer.com/blog/your-most-frequently-asked-google-ads-ppc-questions-answered/</link>
		
		<dc:creator><![CDATA[Corey Lendrum]]></dc:creator>
		<pubDate>Tue, 25 Aug 2020 11:07:30 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.codefixer.com/?p=2937</guid>

					<description><![CDATA[<p>As a Partnered Google Ads agency, we quite regularly receive questions by inquisitive business owners &amp; marketers about Google Ads, and the benefits of a Google Ads account maintained by Codefixer. Below, Corey, who looks after our Google Ads clients at Codefixer will be answering a small selection of some of the most frequently asked  [...]</p>
<p>The post <a href="https://www.codefixer.com/blog/your-most-frequently-asked-google-ads-ppc-questions-answered/">Your Most Frequently Asked Google Ads/PPC Questions Answered</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>As a <a href="/google-adwords/">Partnered Google Ads agency</a>, we quite regularly receive questions by inquisitive business owners &amp; marketers about Google Ads, and the benefits of a Google Ads account maintained by Codefixer. Below, Corey, who looks after our Google Ads clients at Codefixer will be answering a small selection of some of the most frequently asked Google Ads questions.</p>
<h2>How much does Google Ads cost?</h2>
<p>Google Ads can work for just about any budget and is completely adjustable at any time. Unlike traditional marketing methods, Google Ads works on a daily budget, rather than a campaign budget, meaning that your budget can be increased or decreased very simply from the Google Ads interface. This allows advertisers, and our clients, complete control and flexibility over how much they spend on a month-by-month basis, dependant on seasonal traffic, unexpected closures, or any other event which might restrict or increase the budget available for advertising online. As a Google Partnered Agency, we can also provide you with up to £120 towards your first months spend for newly created accounts.</p>
<h2>How long does it take for Google Ads to work?</h2>
<p>Unlike SEO, Google Ads can provide almost immediate targeted traffic to your website or business with Ads often showing within just hours of the Google Ads account &amp; campaigns being created. Likewise, the performance data received from Google Ads is continual, rather than in weekly, or monthly intervals. This allows us to continually evaluate account &amp; campaign performance. We can then use this data to regularly adjust the account to increase the quality of traffic and the number of conversions.</p>
<p>Whilst a Google Ads account can be set-up and start delivering ads almost immediately, we routinely find that accounts that have been managed and maintained over longer periods of time appear to consistently improve as time goes on. This allows us to provide clients with better stats almost every month!</p>
<h2>What types of products/services should you advertise on Google Ads?</h2>
<p>We have had monumental success with a vast array of products and services on Google Ads and always offer a free, no-obligation consultation for Google Ads clients to evaluate opportunities and give a prediction, based on our experience, of how your Google Ads account should perform. We have over 90% customer retention with the many of our clients staying with us for multiple years.</p>
<p>Google Ads is most profitable for products or services with;</p>
<ul>
<li>A high customer lifetime value &#8211; Businesses that can expect customers to return over a long period of time, such as Solicitors, Dentists, or residential services.</li>
<li>High Margins &#8211; Products or services with high margins allow us to more aggressively target users to allow us to compete better in the market place, such as electrical goods, manufacturers, or large B2B sellers.</li>
<li>Large product/service ranges &#8211; Businesses with a large &amp; diverse range of products or services allow us to more accurately target users for the most profitable/desirable products or services. For example, business services, or e-commerce websites with large product catalogues.</li>
<li>Online/Mobile Businesses &#8211; Businesses that don&#8217;t have a physical location or that travel to the customer&#8217;s location find Google Ads allows us to target users in locations that you choose. This saves time, and money on travelling to further away locations to generate the same work. Our home improvement businesses find cutting down on travel times allow them to manage a larger number of customers, whilst choosing to prioritise advertising services which are of most value to the company.</li>
<li>Specialist products/services &#8211; Business with little to no competition online benefit from lower cost-per-click, and can more easily corner the market getting you to the top of the page, consistently, for your chosen products or services. We have clients who offer parking services who appear on over 80% of searches for keywords we are bidding on.</li>
</ul>
<h2>What types of advertising can you do through Google Ads?</h2>
<ul>
<li>Search &#8211; Google Search Ads show up, normally above the Organic (Non-Paid) search results when a user searches for a keyword that an advertiser is bidding on.</li>
<li>Shopping &#8211; Google Shopping is a means of showing your products to users when users search for them on Google. Read <a href="/blog/how-we-generated-over-1m-for-our-client-using-google-shopping/">How We Generated Over £1m For Our Client Using Google Shopping</a></li>
<li>Display &#8211; Google Display Ads appear on the Google Display Network. The Google Display Network is a network of millions of websites such as news websites, blogs, and forums. Google Display ads are banner ads that appear to users on these websites to users who you are targeting.</li>
<li>Video &#8211; Video Ads can appear on YouTube, websites, and smartphone apps running on Google Video Partners.</li>
</ul>
<h2>Why should I use Codefixer for Google Ads?</h2>
<p>As a Google Partner, we must keep up-to-date with Google&#8217;s internal evaluations based on certifications, account performance, overall ad spend, and company growth. This ensures that we keep up-to-date with Google Ads and follow best-practice.</p>
<p>We have an impressive track record working with some of the largest companies in Northern Ireland in delivering best-in-class Google Ads results. On top of this, we also provide coaching and training, as well as speaking at events across the UK helping other businesses and advertisers get more out of their Google Ads campaigns. As a partner, we can help businesses with expert advice and support with strong working relationships with the Google Support Team.</p>
<p><a href="https://www.google.com/search?q=codefixer&amp;rlz=1C1CHBF_en-GBGB816GB816&amp;oq=codefixer&amp;aqs=chrome..69i57j46j69i60l3j69i61l3.1615j0j1&amp;sourceid=chrome&amp;ie=UTF-8#lrd=0x486108ee801a1981:0xf691ccc223f896d9,1,,,">Find our reviews on Google</a></p>
<p>The post <a href="https://www.codefixer.com/blog/your-most-frequently-asked-google-ads-ppc-questions-answered/">Your Most Frequently Asked Google Ads/PPC Questions Answered</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How Does Google Ads Calculate Your Cost Per Click?</title>
		<link>https://www.codefixer.com/blog/how-does-google-ads-calculate-your-cost-per-click/</link>
		
		<dc:creator><![CDATA[Corey Lendrum]]></dc:creator>
		<pubDate>Fri, 03 Jul 2020 10:11:04 +0000</pubDate>
				<category><![CDATA[News]]></category>
		<guid isPermaLink="false">https://www.codefixer.com/?p=2725</guid>

					<description><![CDATA[<p>How the Google Ads Auction Works Each time a user searches on Google, even before a single result is returned, there is a complex series of calculations done almost instantaneously to determine which content is most suited for the user's search. When a user conducts a search on Google, the Google Ads auction will  [...]</p>
<p>The post <a href="https://www.codefixer.com/blog/how-does-google-ads-calculate-your-cost-per-click/">How Does Google Ads Calculate Your Cost Per Click?</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="fusion-fullwidth fullwidth-box fusion-builder-row-1 fusion-flex-container nonhundred-percent-fullwidth non-hundred-percent-height-scrolling" style="--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;" ><div class="fusion-builder-row fusion-row fusion-flex-align-items-flex-start fusion-flex-content-wrap" style="max-width:1144px;margin-left: calc(-4% / 2 );margin-right: calc(-4% / 2 );"><div class="fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_1_1 1_1 fusion-flex-column" style="--awb-bg-size:cover;--awb-width-large:100%;--awb-margin-top-large:0px;--awb-spacing-right-large:1.92%;--awb-margin-bottom-large:0px;--awb-spacing-left-large:1.92%;--awb-width-medium:100%;--awb-spacing-right-medium:1.92%;--awb-spacing-left-medium:1.92%;--awb-width-small:100%;--awb-spacing-right-small:1.92%;--awb-spacing-left-small:1.92%;"><div class="fusion-column-wrapper fusion-flex-justify-content-flex-start fusion-content-layout-column"><div class="fusion-text fusion-text-1"><h2>How the Google Ads Auction Works</h2>
<p>Each time a user searches on Google, even before a single result is returned, there is a complex series of calculations done almost instantaneously to determine which content is most suited for the user&#8217;s search.</p>
<p>When a user conducts a search on Google, the Google Ads auction will look for eligible ads whose keywords target the user&#8217;s search term.  Each ad which is eligible to appear for the user&#8217;s search will be entered into an auction against the other ads to determine which ads will appear and what position each ad will appear in.</p>
<p>The <a href="https://www.codefixer.com/google-adwords/">Google Ads</a> auction calculates these positions and the cost of each position based on a number of factors. Each of these factors is explained below with an explanation as to how they affect the final cost per click on Google Ads.</p>
<h3>Quality Score</h3>
<p>Quality Score is a score attributed to a specific keyword in the ad auction, displayed on a scale of 1-10 based on its historical performance.</p>
<p>Your Quality Score is calculated based on the following three metrics;</p>
<ul>
<li>Expected Clickthrough Rate</li>
<li>Ad Relevance</li>
<li>Landing Page Experience</li>
</ul>
<p>Quality Score is a useful indicator that helps us understand how our keywords tend to perform in the auction. As the Google Ads auction is completed on a real-time basis, Google uses a similar but slightly different Real-Time Quality Score to calculate your Ad Rank.</p>
<h3>Ad Rank</h3>
<p>Ad Rank is the most important metric in determining whether your ad is eligible to appear for a search or not, and if so, which position your ad will appear in. Our Ad Rank is recalculated each time your ad is eligible to appear in the Google Ads auction. This means your Ad Rank can fluctuate depending on your competition, the context of the user&#8217;s search, and your Real-Time Quality Score at the time of auction.</p>
<p>Your Ad Rank is calculated using the real-time quality score at the time of the auction and your maximum specified cost-per-click, which you have elected as your upper bid limit.</p>
<p><img decoding="async" class="alignnone wp-image-2741 size-fusion-600" src="https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-9-600x120.png" alt="Ad Rank calculation" width="600" height="120" srcset="https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-9-200x40.png 200w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-9-300x60.png 300w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-9-400x80.png 400w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-9-600x120.png 600w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-9-768x154.png 768w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-9-800x160.png 800w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-9.png 1000w" sizes="(max-width: 600px) 100vw, 600px" /></p>
<p>If there are four different ad slots available on the search engine results page, and there are six ads eligible to appear for that search, the four ads with the top Ad Rank will appear, and the remaining two will be excluded. The ad with the highest Ad Rank will appear in the top position, the second-highest in position two, and so on. This is broken down in the table below.</p>
<table style="height: 172px;" width="994">
<tbody>
<tr>
<td><strong>Company</strong></td>
<td><strong>Quality Score</strong></td>
<td><strong>Maximum CPC</strong></td>
<td><strong>Ad Rank</strong></td>
<td><strong>Position</strong></td>
</tr>
<tr>
<td>Example 1</td>
<td>3</td>
<td>£1.50</td>
<td>4.5</td>
<td>4</td>
</tr>
<tr>
<td>Example 2</td>
<td>5</td>
<td>£1.00</td>
<td>5</td>
<td>3</td>
</tr>
<tr>
<td>Example 3</td>
<td>6</td>
<td>£1.25</td>
<td>7.5</td>
<td>2</td>
</tr>
<tr>
<td>Example 4</td>
<td>8</td>
<td>£1.50</td>
<td>12</td>
<td>1</td>
</tr>
<tr>
<td>Example 5</td>
<td>2</td>
<td>£2.00</td>
<td>4</td>
<td>Excl.</td>
</tr>
<tr>
<td>Example 6</td>
<td>1</td>
<td>£3.00</td>
<td>3</td>
<td>Excl.</td>
</tr>
</tbody>
</table>
<p>In the example above, we can see that company Example 4, in spite of not having the highest bid, still ranked in the first position. This is because their Ad Rank was better than all of their competition.</p>
<h3>Ad Rank Threshold</h3>
<p>The Ad Rank Threshold is the reserve bid on the auction. If your bid is below the Ad Rank Threshold, it will not be eligible to show, as can be seen in Example 5 and Example 6 from our previous table.</p>
<p>If there are no other ads eligible for the auction, the Ad Rank becomes the minimum billable unit, in our case, 1 penny.</p>
<h3>Actual Cost Per Click</h3>
<p>Using the maximum CPC and the Ad Rank of the ads in the table above, we can now calculate the cost per click required to achieve a higher position than our competitors.</p>
<p>To calculate this, we must divide the Ad Rank of their ad by our Quality Score plus the minimum billable unit, which in Northern Ireland is 1 penny.</p>
<p><img decoding="async" class="alignnone wp-image-2749 size-fusion-600" src="https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-11-600x185.png" alt="True cpc calculation Google Ads" width="600" height="185" srcset="https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-11-200x62.png 200w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-11-300x92.png 300w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-11-400x123.png 400w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-11-600x185.png 600w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-11-768x236.png 768w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-11-800x246.png 800w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-11-1024x315.png 1024w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-11-1200x369.png 1200w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-11.png 1300w" sizes="(max-width: 600px) 100vw, 600px" /></p>
<p>The lowest required Ad Rank to achieve a position on the page becomes the Ad Rank Threshold.</p>
<p>We have sorted our table from above to be position descending and have excluded the lowest Ad Rank company.</p>
<table style="height: 172px;" width="994">
<tbody>
<tr>
<td><strong>Company</strong></td>
<td><strong>Quality Score</strong></td>
<td><strong>Maximum CPC</strong></td>
<td><strong>Ad Rank</strong></td>
<td><strong>Position</strong></td>
<td><strong>Actual CPC</strong></td>
</tr>
<tr>
<td>Example 4</td>
<td><span style="background-color: yellow;">8</span></td>
<td>£1.50</td>
<td>12</td>
<td>1</td>
<td><span style="background-color: yellow;">£0.95</span></td>
</tr>
<tr>
<td>Example 3</td>
<td>6</td>
<td>£1.25</td>
<td><span style="background-color: yellow;">7.5</span></td>
<td>2</td>
<td>£0.84</td>
</tr>
<tr>
<td>Example 2</td>
<td>5</td>
<td>£1.00</td>
<td>5</td>
<td>3</td>
<td>£1.51</td>
</tr>
<tr>
<td>Example 1</td>
<td>3</td>
<td>£1.50</td>
<td>4.5</td>
<td>4</td>
<td>£1.34</td>
</tr>
<tr>
<td>Example 5</td>
<td>2</td>
<td>£2.00</td>
<td>4</td>
<td>Excl.</td>
<td>N/A</td>
</tr>
</tbody>
</table>
<p>Using the highlighted fields in the table above and using our formula of dividing the Ad Rank of the ad below by our Quality Score and adding 1p (£0.01), we can then calculate the Actual CPC of Example 4 in the table above to achieve position 1. After doing our calculation, as seen below, we are given the Actual CPC of £0.95.</p>
<p><img decoding="async" class="alignnone wp-image-2769 size-fusion-600" src="https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-15-600x100.png" alt="CPC Calculation" width="600" height="100" srcset="https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-15-200x33.png 200w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-15-300x50.png 300w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-15-400x67.png 400w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-15-600x100.png 600w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-15-768x128.png 768w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-15-800x133.png 800w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-15-1024x171.png 1024w, https://www.codefixer.com/wp-content/uploads/2020/07/New-Project-15.png 1200w" sizes="(max-width: 600px) 100vw, 600px" /></p>
<p>We can now see exactly what each example company above will pay for a click. Example 4, whilst being in the top position, will only pay £0.95 for a click, whilst Example 2 needs to pay £1.51 to appear two positions lower. This is because the Ad Relevance, Expected Clickthrough Rate, and Landing Page Experience of Example 2&#8217;s ad is considerably worse than Example 4, therefore Example 4 are rewarded with having to pay a lower CPC to achieve a higher result, as this will be better for the user experience.</p>
<h3>Average Cost Per Click</h3>
<p>Your average CPC displayed on your Google Ads account is calculated based on keyword, ad, ad group, campaign, or account level. As Google Ads is a live auction, the result of each auction will differ depending on competitors, ad extensions, search term relevance, user location, etc.</p>
<p>Your average CPC on Google Ads is the total cost of the clicks in the dataset divided by the number of clicks. For example, for the same keyword and ad combination, you may pay £1 for the first click and £2 for the second click. Your average cost per click would be £1+£2/2, which gives us £1.50.</p>
<h3>How This Impacts Competition Bidding On Your Brand</h3>
<p>Using this information, we are better positioned to stave off competitors who receive clicks for our brand searches.</p>
<p>On many of our client accounts, some competitors aggressively target our brand keywords. This is often due to them hoping to take a small portion of the clicks we receive based on the good reputation of our clients. This, also paired with the fact that half of search engine users in 2020 are unable to accurately identify a paid search ad on Google, according to the <a href="https://www.ofcom.org.uk/__data/assets/pdf_file/0031/196375/adults-media-use-and-attitudes-2020-report.pdf" target="_blank" rel="noopener">Ofcom Adults&#8217; Media Use &amp; Attitudes Report 2020,</a> could potentially result in lost clicks and conversions.</p>
<p>In the screenshot below, we can see our keywords (redacted) from a brand campaign. On this, the Quality Score of the keywords are mainly 10/10, whilst some others including geo terms such as &#8220;Client Name Belfast&#8221; have a slightly lower Quality Score, they, however, rarely fall below about 7/10.</p>
<p>A competitor targeting the same keywords should have a very low Quality Score, generally 1/10 to 2/10. The reasons our Quality Score is much higher are;</p>
<ul>
<li>Our landing page mentions the brand name many times</li>
<li>The URL &amp; Title of the client&#8217;s website contains their brand keywords</li>
<li>Our Ad is very relevant to the users&#8217; search</li>
<li>The historical clickthrough rate of the brand campaign is very high, at approximately 36%.</li>
</ul>
<h3><img decoding="async" class="alignnone size-full wp-image-2821" src="https://www.codefixer.com/wp-content/uploads/2020/07/Brand-Quality-Score.jpg" alt="Brand Quality Score" width="664" height="488" srcset="https://www.codefixer.com/wp-content/uploads/2020/07/Brand-Quality-Score-200x147.jpg 200w, https://www.codefixer.com/wp-content/uploads/2020/07/Brand-Quality-Score-300x220.jpg 300w, https://www.codefixer.com/wp-content/uploads/2020/07/Brand-Quality-Score-400x294.jpg 400w, https://www.codefixer.com/wp-content/uploads/2020/07/Brand-Quality-Score-600x441.jpg 600w, https://www.codefixer.com/wp-content/uploads/2020/07/Brand-Quality-Score.jpg 664w" sizes="(max-width: 664px) 100vw, 664px" /></h3>
<p>With our Maximum CPC set at 40p and with a 10/10 Quality Score, our Ad Rank would be 4. Our competitors with a 1/10 quality score would need to have a Maximum CPC of £4 to achieve a similar Ad Rank at auction!</p>
<p>In the table below we can see how this affects the Actual CPC at the time of auction. For our competitor to beat us at Auction, they would need to pay more than ten times what we need to pay.</p>
<table style="height: 172px;" width="994">
<tbody>
<tr>
<td><strong>Company</strong></td>
<td><strong>Quality Score</strong></td>
<td><strong>Maximum CPC</strong></td>
<td><strong>Ad Rank</strong></td>
<td><strong>Actual CPC</strong></td>
</tr>
<tr>
<td>Codefixer Client</td>
<td><span style="background-color: yellow;">10</span></td>
<td>£0.40</td>
<td>4</td>
<td><span style="background-color: yellow;">£0.41</span></td>
</tr>
<tr>
<td>Competitor</td>
<td>1</td>
<td>£4.00</td>
<td><span style="background-color: yellow;">4</span></td>
<td>£4.01</td>
</tr>
</tbody>
</table>
<p>This can help us understand our competitor&#8217;s strategy and plan a strategy to combat this.</p>
<p>Should we bid on an Absolute Top of Page Rate bid strategy set to 100% with no Maximum CPC? This would rob our competition blind if they&#8217;re running a similar strategy, but it would also cost us significantly.</p>
<p>Or should we use our higher Quality Score keywords to ensure we consistently show above our competition whilst paying 10% of the price they are for their clicks?</p>
<p>This also highlights the importance of bidding on your brand keywords to protect your business from having your hard-earned clients pinched by another business. Monitor your Auction Insights report on Google Ads to keep an eye out for competitors trying to steal your traffic.</p>
<p>I recently wrote an article about <a href="https://www.codefixer.com/blog/should-you-bid-on-your-brand-keywords-in-google-ads/">Whether Or Not You Should Bid On Your Brand Keywords</a>, which investigates this topic in more detail.</p>
<p>Codefixer is a Google Ads Partner Agency in Belfast. If you need help with <a href="https://www.codefixer.com/google-adwords/" target="_blank" rel="noopener">Google Ads Management</a> or <a href="https://www.codefixer.com/google-adwords-training/" target="_blank" rel="noopener">Google Ads Training,</a> don’t hesitate to <a href="https://www.codefixer.com/contact/" target="_blank" rel="noopener">Contact Us</a> about your project!</p>
</div></div></div></div></div>
<p>The post <a href="https://www.codefixer.com/blog/how-does-google-ads-calculate-your-cost-per-click/">How Does Google Ads Calculate Your Cost Per Click?</a> appeared first on <a href="https://www.codefixer.com">Codefixer</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
