Site Search Tracking In Google Analytics Without Query Parameters
This article is in conjunction with the article Understanding site search tracking in Google Analytics where I introduced the concept of ‘site search tracking’ in Google Analytics and also introduced ‘GET based’ and ‘POST based’ search engines.
Today I am going to show you how to set up site search tracking in Google Analytics for a POST based search engine.
If you use a search engine that is POST based, then most likely the search page URL does not contain query/category parameters and search terms.
So instead of a search page URL, like the one below:
Your search page URL may look like the one below:
No matter what you search and how many times you search, your search page URL remains intact as the search information is sent from a user’s web browser to your web server within the body of the HTTP request and not via the search page URL.
If you are using a POST based search engine then Google recommends the following two methods to set up site search tracking in GA :
- Convert your POST based search engine to GET based search engine.
- Send virtual pageviews along with query parameters and a search term whenever a search is performed on your website.
Method #1: Convert your POST based search engine to GET based search engine (Recommended)
Configure the site search engine on your website in the way that it sends search information (like search query parameter, search terms) from a user’s browser to your web server via search page URL (instead of within the body of HTTP request).
So whenever a search is performed on your website, both the search query parameter and search terms are appended to the search page URL like the one below:
https://www.optimizesmart.com/search/?s=keyword
So basically convert your POST based search engine to GET based search engine.
Once this task is complete then configure the site search settings in your Google Analytics reporting view i.e. set the ‘Site Search Tracking’ toggle button to ON and enter your query parameter in the text box under ‘Query Parameter’:
Note: I would recommend that you convert your POST based search engine to GET based search engine. Not only then it will be easier to set up site search tracking, you will also be able to use search results as landing pages for your marketing campaigns. Since GET requests can be bookmarked and cached, it will be easier for your users to return to their previous search on your website.
Method #2: Send virtual pageviews whenever a search is performed
If for some reason, it is absolutely not possible to convert your POST based search engine to GET based search engine then you can send virtual pageviews whenever a search is performed on your website.
Customize your Google Analytics tracking code in the way that whenever a search result page is loaded into a user’s web browser (i.e. the search is performed on your website), the search query/category parameter along with the search term is appended to the request URI. For example:
ga(‘send’, ‘pageview’, ‘/search/?s=keyword’); // rewriting request URI on page load
Here you would need to write a code which can identify and extract search term from your HTML DOM and then append query/category parameter to it before sending it as a virtual pageview to GA.
So for example, if a user searched for the keyword ‘enhanced ecommerce tracking’ on your website, he may see the search result page with the following URL:
https://www.optimizesmart.com/search/
But the request URI sent for this page to GA would be:
/search/?s=enhanced+ecommerce+tracking
instead of the usual:
/search/
Once this task is complete then configure the site search settings in your Google Analytics reporting view i.e. set the ‘Site Search Tracking’ toggle button to ON and enter your query parameter in the text box under ‘Query Parameter’.
Related Article: Creating and using Site Search Funnel in Google Analytics
Other articles on specialized tracking in Google Analytics
- How to see Organic Search Keywords in GA4 (Google Analytics 4)
- Google Analytics Ecommerce Tracking Tutorial
- Google Tag Manager Event Tracking Tutorial
- Google Analytics Event Tracking Tutorial
- Google Analytics Store Visits Tracking Tutorial
- Offline Conversion Tracking in Google Analytics – Tutorial
- Ecommerce Tracking Google Tag Manager (GTM) – Tutorial
- Tracking Virtual Pageviews in Google Tag Manager – Tutorial
- Google Tag Manager YouTube Video Tracking
- Google Analytics Virtual Pageviews Tutorial
- Google Analytics YouTube Integration & Analysis Tutorial
- Google Analytics for Facebook Tutorial
- Cross Domain Tracking in Google Analytics – Complete Guide
- How to use two Google Analytics codes on one page
- How to correctly use referral exclusion list in Google Analytics
- Google Analytics Calculated Metrics – Tutorial
- Creating your own Google Analytics Tag Auditing System
- Google Tag Manager Search Tracking without Query Parameter
- Tracking Google Analytics Paypal Referral and other payment gateways
- How to Track Phone Calls in Google Analytics 4 – Call Tracking Tutorial
- How to track leads in Google Analytics via CRM
- Postbacks in Google Analytics Explained
- Subscription & Recurring Revenue Analytics in Google Analytics
- Track the Impact of Google Analytics Cookie Consent on Website Traffic
- Tracking Offline Conversions in Google Ads
- Implementing Scroll Tracking via Google Tag Manager
- Scroll Depth Tracking in Google Tag Manager – Tutorial
- Site Search Tracking In Google Analytics Without Query Parameters
- Google Tag Manager Youtube Video Tracking via YouTube Video Trigger
- How to Correctly Measure Conversion Date & Time in Google Analytics
- Google Analytics Social Tracking – Twitter, Facebook, Google Plus and LinkedIn
- Cross Domain Tracking in Google Analytics – Complete Guide
- Google Analytics Linkedin & Twitter Tracking
- Creating Content Group in Google Analytics via tracking code using gtag.js
- Google Analytics Site Search Tracking via Query Parameters
- Google Analytics Site Search Tracking Tutorial
- Creating and Using Site Search Funnel in Google Analytics
- How to add Facebook Pixel to Google Tag Manager
- AMP Google Analytics Tracking – Learn to track AMP pages
- Setting up Sales Funnel across websites in Google Analytics
- Google Analytics 4 Regex (Regular Expressions) Tutorial
This article is in conjunction with the article Understanding site search tracking in Google Analytics where I introduced the concept of ‘site search tracking’ in Google Analytics and also introduced ‘GET based’ and ‘POST based’ search engines.
Today I am going to show you how to set up site search tracking in Google Analytics for a POST based search engine.
If you use a search engine that is POST based, then most likely the search page URL does not contain query/category parameters and search terms.
So instead of a search page URL, like the one below:
Your search page URL may look like the one below:
No matter what you search and how many times you search, your search page URL remains intact as the search information is sent from a user’s web browser to your web server within the body of the HTTP request and not via the search page URL.
If you are using a POST based search engine then Google recommends the following two methods to set up site search tracking in GA :
- Convert your POST based search engine to GET based search engine.
- Send virtual pageviews along with query parameters and a search term whenever a search is performed on your website.
Method #1: Convert your POST based search engine to GET based search engine (Recommended)
Configure the site search engine on your website in the way that it sends search information (like search query parameter, search terms) from a user’s browser to your web server via search page URL (instead of within the body of HTTP request).
So whenever a search is performed on your website, both the search query parameter and search terms are appended to the search page URL like the one below:
https://www.optimizesmart.com/search/?s=keyword
So basically convert your POST based search engine to GET based search engine.
Once this task is complete then configure the site search settings in your Google Analytics reporting view i.e. set the ‘Site Search Tracking’ toggle button to ON and enter your query parameter in the text box under ‘Query Parameter’:
Note: I would recommend that you convert your POST based search engine to GET based search engine. Not only then it will be easier to set up site search tracking, you will also be able to use search results as landing pages for your marketing campaigns. Since GET requests can be bookmarked and cached, it will be easier for your users to return to their previous search on your website.
Method #2: Send virtual pageviews whenever a search is performed
If for some reason, it is absolutely not possible to convert your POST based search engine to GET based search engine then you can send virtual pageviews whenever a search is performed on your website.
Customize your Google Analytics tracking code in the way that whenever a search result page is loaded into a user’s web browser (i.e. the search is performed on your website), the search query/category parameter along with the search term is appended to the request URI. For example:
ga(‘send’, ‘pageview’, ‘/search/?s=keyword’); // rewriting request URI on page load
Here you would need to write a code which can identify and extract search term from your HTML DOM and then append query/category parameter to it before sending it as a virtual pageview to GA.
So for example, if a user searched for the keyword ‘enhanced ecommerce tracking’ on your website, he may see the search result page with the following URL:
https://www.optimizesmart.com/search/
But the request URI sent for this page to GA would be:
/search/?s=enhanced+ecommerce+tracking
instead of the usual:
/search/
Once this task is complete then configure the site search settings in your Google Analytics reporting view i.e. set the ‘Site Search Tracking’ toggle button to ON and enter your query parameter in the text box under ‘Query Parameter’.
Related Article: Creating and using Site Search Funnel in Google Analytics
Other articles on specialized tracking in Google Analytics
- How to see Organic Search Keywords in GA4 (Google Analytics 4)
- Google Analytics Ecommerce Tracking Tutorial
- Google Tag Manager Event Tracking Tutorial
- Google Analytics Event Tracking Tutorial
- Google Analytics Store Visits Tracking Tutorial
- Offline Conversion Tracking in Google Analytics – Tutorial
- Ecommerce Tracking Google Tag Manager (GTM) – Tutorial
- Tracking Virtual Pageviews in Google Tag Manager – Tutorial
- Google Tag Manager YouTube Video Tracking
- Google Analytics Virtual Pageviews Tutorial
- Google Analytics YouTube Integration & Analysis Tutorial
- Google Analytics for Facebook Tutorial
- Cross Domain Tracking in Google Analytics – Complete Guide
- How to use two Google Analytics codes on one page
- How to correctly use referral exclusion list in Google Analytics
- Google Analytics Calculated Metrics – Tutorial
- Creating your own Google Analytics Tag Auditing System
- Google Tag Manager Search Tracking without Query Parameter
- Tracking Google Analytics Paypal Referral and other payment gateways
- How to Track Phone Calls in Google Analytics 4 – Call Tracking Tutorial
- How to track leads in Google Analytics via CRM
- Postbacks in Google Analytics Explained
- Subscription & Recurring Revenue Analytics in Google Analytics
- Track the Impact of Google Analytics Cookie Consent on Website Traffic
- Tracking Offline Conversions in Google Ads
- Implementing Scroll Tracking via Google Tag Manager
- Scroll Depth Tracking in Google Tag Manager – Tutorial
- Site Search Tracking In Google Analytics Without Query Parameters
- Google Tag Manager Youtube Video Tracking via YouTube Video Trigger
- How to Correctly Measure Conversion Date & Time in Google Analytics
- Google Analytics Social Tracking – Twitter, Facebook, Google Plus and LinkedIn
- Cross Domain Tracking in Google Analytics – Complete Guide
- Google Analytics Linkedin & Twitter Tracking
- Creating Content Group in Google Analytics via tracking code using gtag.js
- Google Analytics Site Search Tracking via Query Parameters
- Google Analytics Site Search Tracking Tutorial
- Creating and Using Site Search Funnel in Google Analytics
- How to add Facebook Pixel to Google Tag Manager
- AMP Google Analytics Tracking – Learn to track AMP pages
- Setting up Sales Funnel across websites in Google Analytics
- Google Analytics 4 Regex (Regular Expressions) Tutorial
My best selling books on Digital Analytics and Conversion Optimization
Maths and Stats for Web Analytics and Conversion Optimization
This expert guide will teach you how to leverage the knowledge of maths and statistics in order to accurately interpret data and take actions, which can quickly improve the bottom-line of your online business.
Master the Essentials of Email Marketing Analytics
This book focuses solely on the ‘analytics’ that power your email marketing optimization program and will help you dramatically reduce your cost per acquisition and increase marketing ROI by tracking the performance of the various KPIs and metrics used for email marketing.
Attribution Modelling in Google Analytics and BeyondSECOND EDITION OUT NOW!
Attribution modelling is the process of determining the most effective marketing channels for investment. This book has been written to help you implement attribution modelling. It will teach you how to leverage the knowledge of attribution modelling in order to allocate marketing budget and understand buying behaviour.
Attribution Modelling in Google Ads and Facebook
This book has been written to help you implement attribution modelling in Google Ads (Google AdWords) and Facebook. It will teach you, how to leverage the knowledge of attribution modelling in order to understand the customer purchasing journey and determine the most effective marketing channels for investment.