Thank you Roger.
I got the plugin installed and activated and I am able to create ads with no problems as far as the plugin functionality goes but I must have misunderstood how to apply the snippet of php code.
Let me try to be specific.
In your page.php template, in the sidebar, insert
<?php AdServe("sw-zone-id" . $post->ID); ?>
I am using a theme called "i3theme". The code of the document page.php has only one line which calls the sidebar (just before the footer, at the very bottom), here is the whole code for page.php:
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h1><?php the_title(); ?></h1>
<div class="entry">
<?php the_content('<p>Continue reading »</p>'); ?>
<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
<?php edit_post_link('Edit', '<p>', '</p>'); ?>
</div><!--/entry -->
</div><!--/post -->
<?php endwhile; endif; ?>
</div><!--/content -->
<div id="footer">
<a href="http://www.ndesign-studio.com/resources/wp-themes/">WP Theme</a> & <a href="http://www.ndesign-studio.com/stock-icons/">Icons</a> by <a href="http://www.ndesign-studio.com">N.Design Studio</a>
<span id="mangoorange">, columnized by <a href="http://www.mangoorange.com/">MangoOrange</a></span>
</div>
</div><!--/left-col -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
I don't know how you call this type of programming expression. It looks to me as if it is going to retrieve the actual code for the sidebar from somewhere else. Anyway the point is that I don't know where to insert your suggested line of code.
Since I can not see a way to insert your suggested code in this page.php document I thought that maybe I could have used the same code in the actual sidebar.php document. So that is what I did and this is what the last few lines of the document look like:
<!--sidebox end -->
<div id="links" class="dbx-box">
<div class="sidebar_header"><div class="dbx-handle"><?php _e('Sponsor'); ?></div></div>
<div class="dbx-content">
<ul>
<?php AdServe("sw-zone-id" . $post->ID); ?>
</ul>
</div>
</div>
<?php endif; ?>
</div><!--/sidebar -->
Then you say:
And then assign the ad(s) you need to zone sw-zone-idnn where nn is the Page id of your page.
As pages ID I use the post title for SEO reasons, therefore the URL for the page that I am testing is http://www.digitaleramarketing.info/identity-theft/identity-theft-prevention/ , so I gave the ad a zone name of sw-zone-ididentity-theft-prevention
Well by looking at all this you probably already know why the ad does not show up in the post page sidebar (or any other page for that matter).
Deeply appreciating any help you can give me. It is very critical to my project to be able to combine each post with the sidebar ads pertinent to the specifics of the post.
Thank you very much.
Marco