GA – Universal Analytics Universal Analytics refers to the previous generation of Google Analytics for measuring website traffic. If you set up Google Analytics for your website prior to October 14, 2020, you probably created a Universal Analytics property. GA4 – Google Analytics 4 Google Analytics 4 (formerly known as…
Read More
Posts in Web Development
How to remove empty lines in Visual Studio Code
Method 1: Here are step by step instructions to remove those empty lines. Open your code in Visual Studio Code From Edit Menu, select Replace or use a short cut key (command + Option + F on Mac or Ctrl + H on Windows) In the find box type…
Read More
Image Optimization: A Practical Guide
Since Google penalizes pages that load too slowly by showing them lower in search results, improving load times is a no brainer way to increase traffic, sales and conversions. Images often account for most of the downloaded bytes on a page. As a result, optimizing images can often yield some…
Read More
Find out why you can’t reach your site without www
Users should be able to reach your site using both www and non-www URLs. If you can access your website using your Domain without “www.” (example.com) but with “www.” it won’t load, most likely you need to check your DNS zone settings to see if you have an “A” record…
Read More
How to Create Archives for Custom Taxonomies in WordPress
Step 1: 1. Creating a Custom Post Type To create a custom post type, add the following code in your theme’s functions.php file add_action('init', 'create_post_type'); function create_post_type() { register_post_type( 'project', array( 'labels' => array( 'name' => __('Projects'), 'singular_name' => __('Project'), 'all_items' => __('All Projects') ), 'public' => true,…
Read More
How to add two Descriptions to a Shopify Collections Page Template
Step 1: Modifying the Shopify Theme 1. Navigate to Online Store > Themes or go to the link https://your-shopify-store/admin/themes 2. Click the drop-down menu labelled Actions on the Live Theme, then click the Edit Code. 3. Open the collection-template.liquid file 4. Perform a search within the code…
Read More