Problems, need help? Have a tip or advice? Post it here.
3 posts Page 1 of 1
I have ad areas on obituaries.php in the sidebar...
Code: Select all
<div class="sidebar-add-place">
               <A HREF="www.marioncountynews.net/yourpage.html">
<IMG SRC="<cms:show sidebarAd19_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT="">
</A>
            </div>
         </section> <!-- /#sidebar-older-post -->

         <section id="sidebar-entertainment-post">
         <div class="sidebar-add-place">
               <A HREF="www.marioncountynews.net/yourpage.html">
<IMG SRC="<cms:show sidebarAd20_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT="">
</A>
            </div>    
         </section>  <!-- /#sidebar-entertainment-post -->


         <section id="ccr-sidebar-add-place">
            <div class="sidebar-add-place">
               <A HREF="www.marioncountynews.net/yourpage.html">
<IMG SRC="<cms:show sidebarAd21_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT="">
</A>
            </div>


And on obituaries_list.html:
Code: Select all
<div class="sidebar-add-place">
            <cms:pages masterpage='obituaries.php'>   
                     <A HREF="www.marioncountynews.net/yourpage.html">
<IMG SRC="<cms:show sidebarAd19_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT="">
</A></cms:pages >
            </div>
         </section> <!-- /#sidebar-older-post -->

         <section id="sidebar-entertainment-post">
         <div class="sidebar-add-place">
            <cms:pages masterpage='obituaries.php'>      
                   <A HREF="www.marioncountynews.net/yourpage.html">
<IMG SRC="<cms:show sidebarAd20_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT="">
</A></cms:pages >
            </div>    
         </section>  <!-- /#sidebar-entertainment-post -->

                               
         <section id="ccr-sidebar-add-place">
            <div class="sidebar-add-place">
            <cms:pages masterpage='obituaries.php'>   
                         <A HREF="www.marioncountynews.net/yourpage.html">
<IMG SRC="<cms:show sidebarAd21_image />" BORDER="0" WIDTH="370" HEIGHT="250" ALT="">
</A></cms:pages >
            </div>

The problem Im having is when I add the ads to page view they seem to multiply in list view page....Where I should only have 3 ads showing on list view page it seems it adds all the ads from page view onto listview as well.....How can I fix this?
Your entries multiply on your list-view because you have three <cms:pages>...</cms:pages> loops. Perhaps you want to give the relevant documentation a read - docs/tags-reference/pages.html.

If you need further assistance on this matter, post your obituaries.php template definition, including all of the editable regions. Also, state how you want these entries listed in your sidebar - all of them, a select few, etc...
Ive tried the "limit" tag and I cant use the "page ID" tag to try to stop all images multiplying on list view but doesnt seem to work.

EDIT: I had placed the "limit" tag in the wrong spot..I fixed the tag in the correct position and it works perfect....Thank you.
3 posts Page 1 of 1