• I am trying to add Amazon UK and CA code to my back end. It says to “Copy the JavaScript code and integrate into the footer/before the end tag of the body of your website.”
    In Edit Themes, Theme Footer (footer.php) — Is it there and exactly what point in the code should I add the html code tag that Amazon sent me?
    I have a custom theme.
    Below are the last 6 lines of html code–where should I put the JavaScript code?
    Thanks.

    </div>
    </div>
    </div>
    <?php wp_footer(); ?>
    </body>
    </html>

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • You need to go to the footer.php file and place the code </div>
    </div>
    </div>
    <?php wp_footer(); ?>
    <!– here place the code –>
    </body>
    </html>

    Moderator t-p

    (@t-p)

    I have a custom theme.

    If this was a custom theme, you may have to go back to your developer team and ask them to make the necessary change(s) to the theme.

    The code will function if you place it

    </div>
    Here
    <?php wp_footer(); ?>
    </body>

    or

    </div>
    <?php wp_footer(); ?>
    Here
    </body>

    I will pick the first option.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Where is my themes header php?’ is closed to new replies.