PDA

View Full Version : amazon widget in single post



jdownloads
02-07-2012, 10:33 AM
Hello,

I would like to put an amazon carousel widget right after the text in single posts. I realize there is a section for in post ads but, I don't want the amazon widget to show on the HOME page.

I am familiar with editing the templates but, I'm just not sure where to place the amazon code in the single post template. I want the ad to show immediately after the text in the post.

Any help? Thanks in advance.

Tim

Dan Nickerson
02-07-2012, 11:58 AM
In single.php find this code.

<?php
if($topAd['inpostad2'] != '' && !$custom_fields['_mcf_postDisableInPostAd'][0]) {
echo '<div id="socratesinpostadbottom" style="clear: both; display: block;">'.stripslashes($topAd['inpostad2']).'</div><br><br>';
}
?>

That is our inpost ad code. You can just remove that and place your code there.. or place your code before or after it.

jdownloads
02-07-2012, 02:04 PM
That did the trick, thank you!