Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #4025070
Small plugin update
Open

Comments

  •  1
    Audrius started the conversation

    Hi. Woocommerce has now Brands support as default option. It's nice feature, which simplifies the life, but product Brand is not visible in bundled products list (it makes life more complicated).

    My suggestion is to add an option, to show brand name in a products list.

    Here is the product with a brand in a name: https://soranora.lt/odos-prieziura/green-tea-fresh-cleanser-2/

    But brand name is not visible in a bundle: https://soranora.lt/rinkiniai/riebios-veido-odos-rinkinys/

    Same option to show Brand should be available in other plugins too.

  •  1,478
    Dustin replied

    Hi Audrius,

    Thanks for your suggestion, we will check and add that feature soon.

    Currently, you can add the custom code below to show the brand under the bundled sub-products' names. (How to add custom code? ↗):

    add_action( 'woosb_after_item_name', function ( $product ) {
    	echo '<div class="woosb-brand">' . get_the_term_list( $product->get_id(), 'product_brand', '', ', ', '' ) . '</div>';
    } );

    Best regards,
    Dustin