Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #853286

    anilanvesh
    Participant

    Hello Team,

    I want to place AdSense leader board ad above main navigation bar. I’m using X child theme and activated renew stack. Kindly help.

    #853315

    Rue Nel
    Moderator

    Hello There,

    Thanks for writing in! Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.

    Once you already have your child theme active and ready, please insert this following code in your child theme’s functions.php file.

    // Add AdSense above the navbar
    // =============================================================================
    function adsense_leatherboard(){ ?>
      
      <div class="custom-ad x-container max width center-text pam">
        <!-- AdSense Leatherboard -->
        <img src="http://placehold.it/768x90" alt="Adsense Ad">
      </div>
    
    <?php }
    add_action('x_before_view_global__navbar', 'adsense_leatherboard');
    // =============================================================================

    Please let us know if this works out for you.