Google Analytics Setup Process

Table of Contents: Creating a New Google Analytics Account How to Add a Google Analytics Admin User Setting Up the Google Analytics Settings for Best Practices How to Setup Ecommerce Tracking in Google Analytics Setting Up Custom Alerts (alerting for site performance issues) Setting Up the Vacation Guide Goal tracking Creating a New Google Analytics Account … Continued

DNS Status of Sites Hosted Through LiveRes

Unlike many website hosts, we have direct access to LiveRes through our umbrella of Inhabit IQ. While getting access to your customer’s DNS information, you may be able to simply reach out to their direct representative to clarify the DNS status of your customer’s site. However! They may note that you’ll need access from their … Continued

Modifying a PIR for the Start of a New Year

At the beginning of a new year, you will need to make several changes to the PIR in DataStudio and the Report Overview Google Sheet file for your customers. Otherwise, the PIR will not reflect data for the current year. Below is a video that walks you through step-by-step instructions of what to change and … Continued

Automatic Site Launch

Launch Instructions Setup the live account and database through cPanel following the normal procedure. SSH into the account using the command ssh -p 2200 USERNAME@q4-host.com or ssh -p 2200 USERNAME@vrhost.q4-vr.com depending on whether it is launching on the B&B/hotel or VR server and enter the password at the prompt that follows. The user name and … Continued

Creating a PIR in DataStudio in Onboarding

To create a brand-new Partnership Impact Report (PIR) for your customer, please following the below steps: Before a PIR can be created, the CSM must gain access to the customer’s booking engine, Google Analytics account, Search Console, Facebook (if applicable), and anything else that will need to be included in the PIR (ex. Instagram, Google … Continued

Creating Custom Emails for Contact Form 7 Forms

When a user submits a Contact Form 7 form, we have the option to send that user an e-mail. If you would like to customize this e-mail to match the customer’s standard e-mail template from their e-mail marketing template, you can do so by following the below steps: Create the custom e-mail in the customer’s … Continued

Booking Engine Ecommerce Setup Instructions

ThinkReservations: Go to Settings>Business Settings Scroll down toward the bottom and make sure Universal Analytics is checked for the GOOGLE ANALYTICS setting. For the ACCOUNT ID, input the customer’s UA tracking code including the UA- part of the code (ex. UA-1234567-1) ResNexus: Go to Settings>Reservation Sources For Google Analytics ID, input the customer’s UA tracking … Continued

Tracking Code Instructions for Non-Q4Launch Websites

Hey guys, We’ve had a few clients come on-board lately who either have outdated GA (google analytics) code or no tracking code on their non-Q4L website.   Tracking is critical to measuring performance so it’s very important to get it set up promptly when an account comes onboard. There’s a specific ecommerce-ready code implementation that we … Continued

How to Setup Call Forwarding In Zoom

Please go to the following url link below and it will walk you through how to setup a “Custom Call routing”. This will give you several call forwarding options. For example, you can have it call your Zoom desktop during working hours, Zoom’s mobile app (on your phone) after hours, send to someone else for … Continued

Redirect All The Things!

# BEGIN redirect all the things RewriteEngine on RewriteCond %{HTTP_HOST} ^www\.(.+) RewriteRule ^ https://%1%{REQUEST_URI} [L,R=301] RewriteCond %{HTTPS} !=on [NC] RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/ RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] # END redirect all the thing