Add A New User to Your Google Analytics Account

Add A New User to Your Google Analytics Account

If you’ve been using Google Analytics for tracking your website data, but need to grant access to someone, this is the article for you. The whole process takes less than 5 minutes to complete.

First you’ll want to log into your Google Analytics account. Once logged in you’ll be seeing your main Dashboard with some quick information like a graph and traffic information. Look on the left for the navigation options and click on the Admin link at the bottom left.

Admin Screen

 

Once there, you’ll see your account name and then a few links in the middle. One of which says User Management. You’ll want to click that next. This will bring up a screen with any existing users that have access and also display their level of access. You have the ability at this point to modify any of those rights as well as remove any users who should no longer have access to your data.

On the top right you’ll find a big blue + symbol, click on Add new users.

Google Analytics - Add new user

This will being up a screen that will give you the ability to add a new user. You’ll want to enter their Gmail account. And below that you can specify their level of access in the Permissions box. It’s self explanatory, but if someone needs more than just the ability to view and read your data, you’ll be able to grant that access here.

This is helpful when working with a marketing account manager who will be helping you with your digital marketing efforts, as well as a web designer/developer. The data found in your analytics will help show the following:

  • Number of people visiting your website
  • Where in the world people are visiting your website
  • Keywords people are using
  • Bounce rate
  • Average time spent on each page
  • Audience details
  • Mobile and desktop views and behaviors
  • And so much more

I hope this was quick and helpful to you. If you have any questions please feel free to contact us or leave a comment below.

How To: Create a New User Profile in WordPress

How To: Create a New User Profile in WordPress

Creating a new user profile is essential when you’re going to have multiple people accessing your website. Below are the available roles for user profiles and what access and rights they have.

  • Administrator – The main account(s) with access to everything. Usually reserved for your web designer, and site owner.
  • Author – Can create pages and posts and publish them without the need to have them reviewed.
  • Editor – These user profiles are mainly used for people who will be reviewing posts written by Contributors.
  • Contributor – May create new posts and submit them for review by Editors or Authors and above.
  • Subscriber – Mainly to view new content that is published to your website. May also receive email notifications for new posts.

How To: Add A Menu To Your WordPress Theme

Have you ever installed a new WordPress theme that didn’t have native support for creating and selecting custom menu (navigation bar). Now before you jump in be sure to either do a backup of your files, or as you get to the Functions.php and Header.php files copy the original code to a text editor before you modify it. Once you’ve done these preventative “CYA” measures follow these steps below:

From your Dashboard menu, go to Appearance > Edit and add the code below to the theme’s functions.php file: (in some cases I’ve seen this called “Theme Options” just above where it says “functions.php”. This is the same thing.)

You can add this code below towards the bottom of your page code so that you can easily find it later should you need to reference it.

add_theme_support( ‘menus’ );

(you may need to add this on the next line if you get to the end and your menu doesn’t show up:

add_action( ‘init’, ‘register_my_menus’ );

function register_my_menus() {
register_nav_menus(
array(
‘menu-1’ => __( ‘Menu 1’ ),
)
);
}

User your browser’s Find feature and search for this code in your theme’s Header.php file:

<?php wp_list_pages(‘title_li=&depth=1’); ?>

Highlight this string of code and replace it with this code below:

<?php wp_nav_menu( array( ‘sort_column’ => ‘menu_order’, ‘container_class’ => ‘menu-header’ ) ); ?>

Lastly click on Appearance then Menus and you should be able to create a custom menu.