Log in

View Full Version : change advertisement locations


AndrewSimm
05-11-2012, 05:53 PM
I would like to put a square ad in a widget on my main page but I am having issues getting it to work. it can be the same square ad as the archive page which I believe uses the following to grab the ad. Not sure why it isnt work.

{vb:raw ad_location.archive_above_content1}

kh99
05-11-2012, 05:57 PM
You can't include a template tag in a widget. But you might be able to access that ad location using a php direct execution widget and code like:

global $ad_location;

$output = $ad_location['archive_above_content1'];


but I haven't tried it.

AndrewSimm
05-11-2012, 09:59 PM
hmm that seems to just print the date

kh99
05-12-2012, 12:32 AM
By default the php direct execution widget has an example line of code that displays the date. You need to make sure you remove that (and replace it with the code above).