Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1247006

    Hi!
    I need help.

    I already use Mailchimp on my Enfold-Website (with the API-Key) and it works.
    Now I want a Popup Sign-up Form which offers Mailchimps and when I make one on the Mailchimp Website (and in my Account), Mailchimp aks me to connect to my URL and wants that I put an Code in the <head>. I couldnt make that…

    How can I handle that?

    Thanks!
    Ivan

    #1247036

    Hey iicinfo,
    If you need to add a script to your <head>, you can add to the Enfold Theme Options > Google Services > Google Analytics Tracking Code field. This field can be used for any script you want to add to your site head, not only Google codes.
    Or you can add your script to this code and add to your functions.php:

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

    This is a good option if you are using a child theme and wish the code to be away from the theme options where a client may alter in error.
    If this doesn’t help, please include an admin login in the private content area and a link to the raw text of the code (DropBox text file) you want to add so we can be of more assistance.

    Best regards,
    Mike

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