Example #1
0
 function sensei_breadcrumbs()
 {
     global $woo_options;
     if (isset($woo_options['woo_breadcrumbs_show']) && 'true' == $woo_options['woo_breadcrumbs_show']) {
         woo_breadcrumbs();
     }
 }
Example #2
0
function woostore_breadcrumb()
{
    global $woo_options;
    if ($woo_options['woo_breadcrumbs_show'] == 'true') {
        woo_breadcrumbs();
    }
}
Example #3
0
 function woo_display_breadcrumbs()
 {
     global $woo_options;
     if (isset($woo_options['woo_breadcrumbs_show']) && $woo_options['woo_breadcrumbs_show'] == 'true' && !is_home()) {
         echo '<section id="breadcrumbs" class="content-container-fullwidth">';
         woo_breadcrumbs();
         echo '</section><!--/#breadcrumbs -->';
     }
 }
Example #4
0
 function woo_display_breadcrumbs()
 {
     global $woo_options;
     if (isset($woo_options['woo_breadcrumbs_show']) && $woo_options['woo_breadcrumbs_show'] == 'true' && !is_home()) {
         echo '<section id="breadcrumbs">';
         woo_breadcrumbs();
         echo '</section><!--/#breadcrumbs -->';
     }
 }
Example #5
0
 function woo_display_breadcrumbs()
 {
     global $woo_options;
     if (is_home()) {
         return;
     }
     if (isset($woo_options['woo_breadcrumbs_show']) && $woo_options['woo_breadcrumbs_show'] == 'true') {
         echo '<section id="breadcrumbs">';
         echo '<div class="wrapper">';
         woo_breadcrumbs();
         echo '</div><!--/.wrapper -->';
         echo '</section><!--/#breadcrumbs -->';
     }
 }
Example #6
0
    function whitelight_before_content()
    {
        ?>
		<!-- #content Starts -->
		<?php 
        woo_content_before();
        ?>
	    <div id="content">
	    	<div class="col-full">
			<?php 
        global $woo_options;
        if ($woo_options['woo_breadcrumbs_show'] == 'true') {
            woo_breadcrumbs();
        }
        ?>
	        <!-- #main Starts -->
	        <?php 
        woo_main_before();
        ?>
	        <div id="main" class="col-left">
	    <?php 
    }
    function smpl_before_content()
    {
        ?>
		<!-- #content Starts -->
		<?php 
        woo_content_before();
        ?>
	    <div id="content" class="col-full">
			<?php 
        global $woo_options;
        if ($woo_options['woo_breadcrumbs_show'] == 'true') {
            echo '<div id="breadcrumbs">';
            woo_breadcrumbs();
            echo '</div>';
        }
        ?>
	        <!-- #main Starts -->
	        <?php 
        woo_main_before();
        ?>
	        <div id="main" class="col-left">
	    <?php 
    }
Example #8
0
 * Setup default variables, overriding them if the "Theme Options" have been saved.
 */
$settings = array('thumb_single' => 'false', 'thumb_w' => 710, 'thumb_h' => 180, 'thumb_align' => 'alignleft');
$settings = woo_get_dynamic_values($settings);
?>
       
    <div id="content">
    	
    	<div class="col-full">
    		
    		<?php 
if (isset($woo_options['woo_breadcrumbs_show']) && $woo_options['woo_breadcrumbs_show'] == 'true') {
    ?>
				<section id="breadcrumbs">
					<?php 
    woo_breadcrumbs();
    ?>
				</section><!--/#breadcrumbs -->
			<?php 
}
?>
    		
			<section id="main" class="col-left">
			           
	        <?php 
if (have_posts()) {
    $count = 0;
    while (have_posts()) {
        the_post();
        $count++;
        ?>
 function woocommerceframework_breadcrumb()
 {
     global $woo_options;
     if ($woo_options['woo_breadcrumbs_show'] == 'true') {
         woo_breadcrumbs();
     }
 }
Example #10
0
    <div class="body-content">
        <?php 
if (have_posts()) {
    $count = 0;
    ?>

            <h1 class="detal"><?php 
    the_title();
    ?>
</h1>
            <?php 
    $args = array('separator' => '/', 'show_posts_page' => FALSE);
    ?>

            <?php 
    woo_breadcrumbs($args);
    ?>
 
            </nav>
            <?php 
    while (have_posts()) {
        the_post();
        $count++;
        ?>

                <?php 
        the_content();
        ?>

        <?php 
        edit_post_link(__('{ Edit }', 'woothemes'), '<span class="small">', '</span>');
Example #11
0
function woostore_breadcrumb()
{
    if (wootique_get_woo_option('woo_breadcrumbs_show') == 'true') {
        woo_breadcrumbs();
    }
}
Example #12
0
 function woo_projects_breadcrumbs()
 {
     global $woo_options;
     if (isset($woo_options['woo_breadcrumbs_show']) && $woo_options['woo_breadcrumbs_show'] == 'true') {
         woo_breadcrumbs();
     }
 }
    function woo_display_top_section()
    {
        global $woo_options, $post;
        $title = '';
        if (is_category()) {
            $title = __('Archive', 'woothemes') . ' | ' . single_cat_title('', false);
        } elseif (is_day()) {
            $title = __('Archive', 'woothemes') . ' | ' . get_the_time(get_option('date_format'));
        } elseif (is_month()) {
            $title = __('Archive', 'woothemes') . ' | ' . get_the_time('F, Y');
        } elseif (is_year()) {
            $title = __('Archive', 'woothemes') . ' | ' . get_the_time('Y');
        } elseif (is_author()) {
            $title = __('Archive by Author', 'woothemes');
        } elseif (is_tag()) {
            $title = __('Tag Archives', 'woothemes') . ' | ' . single_tag_title('', false);
        } elseif (is_search()) {
            $title = __('Search Results', 'woothemes');
        } elseif (is_single() && get_post_type($post->ID) == "post") {
            $title = __('Blog', 'woothemes');
        } else {
            $title = get_the_title();
        }
        if (is_woocommerce_activated()) {
            if (is_product() || is_shop() || is_product_category() || is_product_tag()) {
                $title = __('Shop', 'woothemes');
            }
        }
        ?>
		
	<?php 
        if (!is_home()) {
            ?>
	<section id="top-section">
		<div class="col-full">
			<header>
				<h1><?php 
            echo $title;
            ?>
</h1>
				<?php 
            if (isset($woo_options['woo_breadcrumbs_show']) && $woo_options['woo_breadcrumbs_show'] == 'true') {
                ?>
					<div id="breadcrumbs">
						<?php 
                woo_breadcrumbs();
                ?>
					</div>
				<?php 
            }
            ?>
			</header>
		</div><!--/.col-full -->
	</section><!--/#top-section -->
	<?php 
        }
    }