Replies: 1
Hello guys,
I am changed “Product description” to “Product title” with this code at functions.php file:
add_filter( 'woocommerce_product_description_heading', 'paulc_product_title' );
function paulc_product_title() {
return get_the_title();
}
Now I want to add one word before “Product title” – for example product title is TOYOTA COROLLA and I want to add word CAR before TOYOTA COROLLA at product description. Any ideas how I can do it?
Peter