Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1011742

    Please show me where to copy the Google code and paste it onto every page of your website.
    1. Paste code in as high in the <head> of the page as possible.
    2. Paste code in immediately after the opening <body> tag.

    #1011771

    Hey fattlco,

    Please paste it in the Google Analytics box under Enfold->Google Services.

    Best regards,
    Rikard

    #1011791
    This reply has been marked as private.
    #1011795

    Hi,

    Please add this code to the child theme functions.php:

    
    function avia_header_scripts_custom(){
    ?>
    <script type="text/javascript">
    <!-- Add your code here -->
    </script> 
    <?php
    }
    add_action('wp_head', 'avia_header_scripts_custom');
    
    

    and replace:

    
    
    <!-- Add your code here -->
    

    with your google code. The code will then appear in the head section.

    Best regards,
    Peter

    #1011803
    This reply has been marked as private.
    #1011810

    Hi,

    You can use the ava_after_body_opening_tag action hook – insert this code into your child theme functions.php

    
    function avia_body_scripts_custom(){
    ?>
    <script type="text/javascript">
    <!-- Add your code here -->
    </script> 
    <?php
    }
    add_action('ava_after_body_opening_tag', 'avia_body_scripts_custom');
    
    

    and replace:

    
    
    <!-- Add your code here -->
    

    with your google code. The code will then appear in the head section.

    Best regards,
    Peter

    #1014850

    Works perfectly, thanks!

    #1014855

    Hey!
    Great, glad I could help you :)

    Best regards,
    Peter

    #1015011

    Dude I may have spoken too soon. It broke my homepage.
    I use the color section with a background video. Broke everything.

    #1015155

    Hi Justin,

    Where can we see the results you are getting? Also please post the complete code you are using and where you are adding it.

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.