Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Plugins & Atahualpa (http://forum.bytesforall.com/forumdisplay.php?f=16)
-   -   Breadcrumb NavXT integration (http://forum.bytesforall.com/showthread.php?t=3215)

Wimbledon Aug 31, 2009 11:32 PM

Breadcrumb NavXT integration
 
So the version of Atahualpa can be easily updated in the future, is there a way to insert the Breadcrumb NavXT code as a CSS/HTML insert?

I'd like the code on all pages (except those on the homepage) in the area above the kicker in the page/post info area.

Breadcrumb NavXT code:

HTML Code:

<div class="breadcrumb">
<?php
if(function_exists('bcn_display'))
{
        bcn_display();
}
?>

</div>

Is this possible?

Flynn Sep 1, 2009 04:33 AM

You could put this into

Style & edit CENTER COLUMN -> Content ABOVE the LOOP

as

PHP Code:

<?php if ( !is_front_page() ) { ?>
<div class="breadcrumb">
<?php
if(function_exists('bcn_display'))
{
    
bcn_display();
}
?>
</div>
<?php ?>



Wimbledon Sep 1, 2009 08:37 AM

Flynn saves the day again! Don't know what I'd do without your help, thanks! :)

avatar33 Oct 20, 2010 10:20 AM

Quote:

Originally Posted by Flynn (Post 13859)
You could put this into

Style & edit CENTER COLUMN -> Content ABOVE the LOOP

as

PHP Code:

<?php if ( !is_front_page() ) { ?>
<div class="breadcrumb">
<?php
if(function_exists('bcn_display'))
{
    
bcn_display();
}
?>
</div>
<?php ?>



this helped me too! Thanks chief!


All times are GMT -6. The time now is 08:11 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.