-
Author
-
April 15, 2015 at 13:35 #54551raulpuhuParticipant
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.
April 15, 2015 at 18:00 #54633LauraModeratorHello 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 solutionLaura 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 🙂
April 15, 2015 at 18:05 #54634RaduModeratorHello,
Add this snippet to your kleo-child functions.php
COPY CODEfunction 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 solutionApril 16, 2015 at 14:21 #54790RaduModeratorBoth 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 -
AuthorPosts
The forum ‘KLEO’ is closed to new topics and replies.