Quantcast
Channel: WordPress.org Forums » [WooCommerce] Support
Viewing all articles
Browse latest Browse all 104029

cydiasa on "[Plugin: WooCommerce - excelling eCommerce] How to remove admin name from the shop page"

$
0
0

So here is how i fixed this. the code is in your template header and this is the bit of code you need to remove.

<h1 class="entry-title">
                        <?php if ( is_day() ) : ?>
                        <?php echo get_the_date(); ?>
                        <?php elseif ( is_month() ) : ?>
                        Monthly Archives: <?php echo get_the_date( 'F Y' ); ?>
                        <?php elseif ( is_year() ) : ?>
                        <?php echo get_the_date( 'Y' ); ?>
                        <?php elseif(is_category()) : ?>
                        <?php echo single_cat_title( '', false ); ?>
                        <?php elseif(is_tag()) : ?>
                        <?php echo single_tag_title(); ?>
                        <?php else : the_post(); ?>
                        <?php echo get_the_author(); ?>
                        <?php rewind_posts(); endif; ?>
      </h1>

Img links
Before
After


Viewing all articles
Browse latest Browse all 104029

Trending Articles