I want show only part of product name in my website, but show full name only in product page, Checkou, Cart and Invoice, like this:
Some one can Help me?
I want show only part of product name in my website, but show full name only in product page, Checkou, Cart and Invoice, like this:
Some one can Help me?
Share Improve this question asked Oct 13, 2019 at 20:32 Ademir OgliariAdemir Ogliari 11 bronze badge1 Answer
Reset to default 0I solved this problem with:
function hide_product_title_part( $title, $id ) {
if ( ( is_front_page() || is_shop() || is_product_tag() || is_product_category() ) && get_post_type( $id ) === 'product' ) {
if (strstr($title, ":")) {
$new_title = explode(":", $title);
return $new_title[1];
} else {
return $title;
}
} else {
return $title;
}
}
add_filter( 'the_title', 'hide_product_title_part', 10, 2 );