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.
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
} );
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
Hi Viktor,
Please add the custom code below to display any text on that position. (How to add custom code? ↗):
Best regards,
Dustin
Great, thank you!