This topic has 7 replies, 4 voices, and was last updated 8 years, 1 months ago ago by Jack Richardson
Hello,
This is the name of your page, just rename the “Shop” page in wp-admin panel > Pages.
Best regards,
Jack Richardson.
ok thanks. but i want if it is posible the name of the product.
Hello,
Unfortunately there is no such possibility. Sorry.
Regards,
Eva Kemp.
Hello,
You can try edit theme-function.php file is in the /wp-content/themes/legenda/framework directory on line 4796.
Change the following code <h1 class="title"><span><?php woocommerce_page_title(); ?></span></h1>
to this
<h1 class="title"><span><?php
if ( is_product() ) {
echo get_the_title();
} else {
woocommerce_page_title();
}
?></span></h1>
We recommend to make changes in the child theme https://codex.wordpress.org/Child_Themes to keep modifications saved after theme update.
Regards,
Rose Tyler.
ok i will try this thanks
Hello,
You’re welcome.
Best regards,
Jack Richardson.
You must be logged in to reply to this topic.Log in/Sign up