Jump to content

Archived

This topic is now archived and is closed to further replies.

Grant Turck

Add Script After Opening Body Tag

Recommended Posts

Grant Turck

What file do I need to add code to in my pl-framework-pagelines child theme to insert script after opening body tag on every page?

Can you someone provide me with the code also?

Share this post


Link to post
Share on other sites
Andrew

Hey @Grant Turck ... easiest way to do this is with a plugin, or Google Tag Manager (there are WP plugins for it)

 

if you want to add with a hook, it goes something like this in your function.php in a child theme: 

add_action('wp_footer', 'my_script');

function my_script(){
?>
// script code here
<?php 

}

 

Share this post


Link to post
Share on other sites
Grant Turck

Where can I find <body <?php body_class(); ?>> within Pagelines? 

Share this post


Link to post
Share on other sites
Andrew

why do you need that? you should be using hooks for everything...

It is inside a function call...

Share this post


Link to post
Share on other sites
Grant Turck

Because it's how to insert the google tag manager script after the body tag. The second piece of the tag manager script must be placed after the opening body tag (not in the footer). If the script is not placed immediately before the opening body tag then tag manager won't function properly. 

See: http://www.internoetics.com/2014/01/02/add-a-hook-in-wordpress-after-the-opening-body-tag/

Share this post


Link to post
Share on other sites
Andrew

try attaching to the pagelines_before_page hook :P

Share this post


Link to post
Share on other sites

  • Similar Content

    • flourishdesignstudio
      By flourishdesignstudio+
      I am working on a multisite installation and had some questions regarding the themeing options. All the sites will have the same structure but each individual site would need a different h1 font and link color. I had originally thought that I would program/edit the parent theme to have a certain set of templates, font sizes, etc. and then that would feed to all the individual sites where I could activate the child theme and use the child theme to define the individual sites' specific link color, heading fonts, etc. So, what I was shooting for was:
      Parent theme = shared by all sites
      Child theme = specific to the minor customizations on a per site basis.
      Is this possible? Am I misunderstanding how these would actually deploy to the different sites?
    • jagipson
      By jagipson+
      Should be a simple answer but not sure why its not doing this.  I have a child theme installed on pagelines 5 that has a hook so it will write over the theme css. Strange is that when I am on the frontend the code works but in the dashboard your theme takes over my code and its no where to be found. See examples attachments
      @Andrew @Danny


    • TallTree
      By TallTree+
      Hi,
      I am trying to remove the sidebar areas from my child theme (pagelines.com) from the post pages on a site:
      https://staging4.talltreemusicfestival.com/2017/grand-analog/
      The content is all the way to the left and very small, and the two sidebar areas are taking up a lot of space.
      What I'm after is content to the left, taking up most of the space, and then a small sidebar width on the right for widgets.
      I've tried selecting 'read width content' and 'full width content' in the edit screen for the WP content section, but it doesn't change.  If I try to move the sidebars (1 or 2) to the left, it doesn't change.
      If I select the pagelines framework theme (not child), the two sidebars go away when not selecting them in the edit screen..
      Can someone please tell me what I'm doing wrong?
      Thanks in advance.
      -Matt
       
    • dbrowne02
      By dbrowne02+
      Hi, I noticed that framework and pagelines.com child theme has a number of errors when run through themecheck. The others, like material and bootstrap, don't have any errors when run through theme check. Is there a way to get it so that there are no errors on the child theme?

    • DanatTLFN
      By DanatTLFN
      Hi Pagelines Team,
      I am interested in setting up a bbPress forum on my website.
      Unfortunately, I have never set up a child theme for my site and have been just using the drag and drop system to put together my site on the main theme. If I am to install the child theme, and activate it, what do I stand to lose in terms of design and current configuration settings on the backend?
      Thank you for taking this time to read this.
      Kind regards,
      Dan
×