Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #22475
    camus
    Member

    Hi,

    First, congrats for this very clear and elegant theme.
    My site is not yet online and I’m trying to define structure. Catch Evolution seems parfect theme for my usage but I try to add google leaderboard 728×90 banner under the first menu, above the pages, without success. Do you know how to do that ?

    TIA

    #22492
    Sakin
    Keymaster

    @camus: Sorry there is no option to add element under the first menu and above the pages. For that you need to build child theme and then create functions.php file in your child theme and add the code as per you need using action hool.
    This is sample code to be added in child theme functions.php file.

    <?php
    /**
     * Ads below header menu
     */
    function catchevolution_child_headerads() { ?>
    	<!--- Your Ads Code -->
    <?php     
    }
    add_action( 'catchevolution_after_header', 'catchevolution_child_headerads', 20 );
    #22515
    camus
    Member

    OK Sakin,

    Thank you for fast answer. But please, in one future version, consider to add this possibility.

    #22536
    Sakin
    Keymaster

    @camus: Will add in our request list. But these ads features position are many. So, it’s difficult to manage it all. Then best way to do it by building child theme.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Ad under the first menu’ is closed to new replies.