I can't restrict Breadcrumbs showing in every page

Permalink 2 users found helpful
I'm developing a site in C5 & I'm the new one in C5. I have added a add-ons for showing breadcrumbs. I want to display this not in all pages but few pages that I need. I have managed it through block.

citytech2
 
TheRealSean replied on at Permalink Reply
TheRealSean
You can use either Page Designs and create a basic page layout that includes the breadcrumbs.

Or add a Page attribute something like show_breadcrumbs then in your page theme file

I used something similar for my image column

<?php if($c->getAttribute('display_image_column')==true){?>
         <div id="img-col"><?php 
         $a = new Area('Image Column');
         $a->display($c);         
         ?></div>
            <?php }?>