fbpx

Content Marketing

The Best Solutions for Our Clients

Real-time Keyword Data

Integer varius ac ligula eget mollis. Sed interdum lacinia lorem at malesuada.

Scalable Keyword Growth

Maecenas vel tellus ultrices, suscipit erat ut, vehicula sapien. Aliquam posuere.

ROI Obsessed Keywords

Pellentesque tristique neque vel erat vestibulum auctor Aenean euismod ullamcorper.

Total Growth Visibility

Etiam ut tortor nec orci euismod rhoncus. Duis a lectus sed quam sollicitudin.

Content Marketing

If You Can Dream It,
We Can Rank It

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras bibendum auctor justo, ac bibendum neque sollicitudin ac. Duis feugiat non urna nec tincidunt. Sed nec est eget sem sodales ultricies vitae a elit. Donec velit massa, dapibus eu facilisis eu.

Active Clients
0 +
Projects Done
0 +
Team Advisors
0 +

OUR SERVICES

Our full-service SEO team integrates content into a complex strategy to increase your site’s visibility and conversions.

RECENT PROJECTS

Our Latest Case Studies

PRICING PLANS

The Best Solutions for Our Clients

GET STARTED

We Like to Start Your
Project With Us

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras bibendum auctor justo, ac bibendum neque sollicitudin ac. 

function getDomainAndPage() { // Get the current URL var currentUrl = window.location.href; // Split the URL to extract the domain and page var urlParts = currentUrl.split("/"); var domain = urlParts[2]; // Get the domain var page = urlParts[urlParts.length - 1]; // Get the last part as page // Return domain and page as an object return { domain: domain, page: page }; } // Function to push domain/page information to Google Tag Manager function pushDataToGTM() { // Get domain and page information var domainAndPage = getDomainAndPage(); // Push domain and page information to dataLayer window.dataLayer = window.dataLayer || []; window.dataLayer.push({ 'event': 'domainPageInfo', 'domain': domainAndPage.domain, 'page': domainAndPage.page }); } // Call the function to push data to Google Tag Manager pushDataToGTM(); // Function to modify Contact Form 7 submission function modifyCF7Submission() { // Capture the form submission event document.addEventListener('wpcf7mailsent', function(event) { // Get the form element var form = event.detail.target; // Get domain and page information var domainAndPage = getDomainAndPage(); // Create a hidden input field for domain var domainInput = document.createElement('input'); domainInput.setAttribute('type', 'hidden'); domainInput.setAttribute('name', '_domain'); domainInput.setAttribute('value', domainAndPage.domain); // Create a hidden input field for page var pageInput = document.createElement('input'); pageInput.setAttribute('type', 'hidden'); pageInput.setAttribute('name', '_page'); pageInput.setAttribute('value', domainAndPage.page); // Append the hidden input fields to the form form.appendChild(domainInput); form.appendChild(pageInput); }, false); } // Call the function to modify CF7 submission modifyCF7Submission(); // Execute this function when the Contact Form 7 is submitted document.addEventListener('wpcf7mailsent', function(event) { var formData = getDomainAndPage(); // Push the domain and page information to the dataLayer window.dataLayer = window.dataLayer || []; window.dataLayer.push({ 'event': 'cf7Submission', 'domain': formData.domain, 'page': formData.page }); }, false);