Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #957886

    Hi there,
    We’re tying to add the tracking code for Agile CRM. Without saying precisely how to do so, they say:

    “Copy and paste the below code in your webpage’s HTML just before the </BODY> tag to enable tracking / API methods.”

    Can you tell us how we can do that in WordPress, please? Also we cannot see any Editor or php files in our Child Theme under Appearances (no link showing).

    Many thanks

    #958725

    Hey rpl_admin,

    You can put the code for the crm tracking using this snippet and adding the code to the functions.php

    
    function add_crm_tracking(){
    
    ?>
    	<script>
    		//your code here
    	</script>
    <?php
    }
    add_action('wp_head', 'add_crm_tracking'); 
    

    The Appearance > Editor can be hidden by a security plugin, are you using one of those?

    Best regards,
    Victoria

    #960323

    Hi Victoria,

    Many thanks for this – very kind of you.

    Issue is now resolved.

    Thanks again,

    Robert

    #961550

    Hi Robert,

    Glad you got it working for you! :)

    If you need further assistance please let us know.

    Best regards,
    Victoria

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