Comments 1YOYO started the conversationJune 16, 2022 at 3:20amHow do I list the bundled items as a list on the checkout page?1 Like 767Janilyn repliedJune 17, 2022 at 7:54amHi Yoyo,Thanks for contacting us here.We’ve received your ticket and assigned one of our developers to help you with that. He’ll be looking into your question and responding with specific instructions as soon as possible. Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back. Best regards.Janilyn T. - WPClever Support Agent 1,226Dustin repliedFebruary 13, 2023 at 4:24amHi Yoyo,I'm so sorry for the late reply! I must have overlooked your ticketTo display bundled items as a list, please add the below custom code (How to add custom code?) add_filter( 'woosb_order_bundled_product_names', 'your_woosb_order_bundled_product_names', 99, 1 ); function your_woosb_order_bundled_product_names( $names ) { return '<ul>' . str_replace( '; ', '', $names ) . '</ul>'; } add_filter( 'woosb_order_bundled_product_name', 'your_woosb_order_bundled_product_name', 99, 1 ); function your_woosb_order_bundled_product_name( $name ) { return '<li>' . $name . '</li>'; }Best regards,Dustin1 Like 1YOYO repliedFebruary 13, 2023 at 6:14am感謝您的幫助。 Sign in to reply ...
How do I list the bundled items as a list on the checkout page?
Hi Yoyo,
Thanks for contacting us here.
We’ve received your ticket and assigned one of our developers to help you with that.
He’ll be looking into your question and responding with specific instructions as soon as possible.
Please stay patient as we're having very heavy workloads, it might take some time for our developers to reach back.
Best regards.
Janilyn T. - WPClever Support Agent
Hi Yoyo,
I'm so sorry for the late reply! I must have overlooked your ticket
To display bundled items as a list, please add the below custom code (How to add custom code?)
Best regards,
Dustin
感謝您的幫助。