Best Premium and Free WordPress Themes › Forums › Corporate Plus Pro › Woo commerce Shop › Reply To: Woo commerce Shop
May 13, 2016 at 7:04 am
#5892
acmethemes
Keymaster
Hello Cherie,
Please edit the woocommerce.php file of the theme, you will find this code in line number 14 to 16
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
</header><!-- .entry-header -->
and please replace the above code with the following code.
<header class="entry-header">
<?php
if ( is_shop() ) {
$name = get_the_title( get_option( 'woocommerce_shop_page_id' ) );
echo '<h1 class="entry-title">'.$name.'</h1>';
}
else{
the_title( '<h1 class="entry-title">', '</h1>' );
}
?>
</header><!-- .entry-header -->
If you feel any difficulty on this, please let us know.
Note : We will be updating this in the core theme in the next version
Best Regards,
Acme Themes