This topic has 3 replies, 3 voices, and was last updated 9 years by Radu.

  • Author
  • #54551
     raulpuhu
    Participant

    Hello.

    I would like to place ads or banner ads at the beginning and end of each page and search files, I mean, in the pages of categories, tags, archives, search results … What is the file that should change? , what lines of those files I insert my code with advertising?

    Thank you.

    #54633
     Laura
    Moderator

    Hello try the plugin ad injector 🙂 i think it will do the trick

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    #54634
     Radu
    Moderator

    Hello,

    Add this snippet to your kleo-child functions.php

    COPY CODE
    
    
    function ads_before_content() {
    
        echo '
        <div style="width:728px;height:90px;background-color:red;display:block;margin:0 auto;">
        728 AD
        </div>
        ';
    
    }
    
    add_action ('kleo_before_main', 'ads_before_content');
    
    function ads_after_content() {
    
        echo '
        <div style="width:728px;height:90px;background-color:red;display:block;margin:0 auto;">
        728 AD
        </div>
        ';
    
    }
    
    add_action ('kleo_after_main', 'ads_after_content');
    
    

    Replace code from echo with your desired code.

    Cheers

    Radu

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #54790
     Radu
    Moderator

    Both answers are correct.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 4 posts - 1 through 4 (of 4 total)

The forum ‘KLEO’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?