• Resolved suarezlopezd

    (@suarezlopezd)


    Dear Tito,

    Thanks for your support in the previous questions. Just want to know if it could be possible adding a hook or whatever, to show the brand description at the end of each product in the simple product page…

    Looking to hear back from you.

    Best!

Viewing 1 replies (of 1 total)
  • Plugin Contributor titodevera

    (@titodevera)

    Hi suarezlopezd.

    Add this code to your functions.php.

    
    function pwb_custom_brand_description(){
    	$brands = wp_get_post_terms( get_the_ID(), 'pwb-brand' );
    	foreach( $brands as $brand ) {
    		echo '<p>'.$brand->description.'</p>';
    	}
    }
    add_action( 'woocommerce_after_single_product', 'pwb_custom_brand_description' );
    

    More info about single product page hooks here

    ??

Viewing 1 replies (of 1 total)
  • The topic ‘Add brand description to Simple Product Page’ is closed to new replies.