Support Forum

Ad managment

LI lisalew
lisalew
Member

Is there a way to insert ads between the forum posts using an existing wordpress plugin?  Or do you have an ad managment plugin that works with Simple Press?  Or is there a developer out there I could pay to do this for me?  I am using wp125 ads on the sidebar of my forum, but I would like to display ads (of a different dimension) in-between the forum posts as well.

2 Answers

New Answer

MP Mr Papa
Mr Papa
Member

you should be able to tag the template tag (ie function call) given to you by wp125 ads and add it to your sp theme where you want it to display…

BR Brandon
Brandon
Member

Easiest way I have found is to create a function in the spFunctions.php file. Then you can call it whenever you need.

Ie:

function spSpecialContent() {
echo “Stuff here”;

}

Then just spSpecialContent() where you want it.