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

Okay
  Public Ticket #3827437
Meta data to bundled products' titles
Open

Comments

  •  3
    Viktor started the conversation

    Hi!

    Is there a way to add a meta data to the bundled products' titles like where I marked with arrows in the attached picture? My partner sells theater tickets and she needs to display the events' dates in this place. I found the code in includes/class-woosb.php file what should modify but modifing the plugin's main files is very bad idea and overriding this file isn't working.

    Regards,

    Viktor

    Attached files:  lcjhjrz6.jpg

  •  1,355
    Dustin replied

    Hi Viktor,

    Please add the custom code below to display any text on that position. (How to add custom code? ↗):

    add_action( 'woosb_after_item_name', function ( $product ) {
    	if ( $product->get_sku() ) {
    		echo '<div class="woosb-sku">SKU: ' . $product->get_sku() . '</div>';
    	}
    
    	// OR display another information here
    } );

    Best regards,
    Dustin

  •  3
    Viktor replied

    Great, thank you!