function add_linebreak_shortcode() {
return ‘
’;
}
add_shortcode(‘br’, ‘add_linebreak_shortcode’ );
I have added the above shortcode to add link break with [br]. It can work well in all pages except ‘checkout’, which is the page that I need.
For example, I edited my shipping to be DHL [br] 2-3 delivery days [br] tracking available.
What I want to see
DHL
2-3 delivery days
tracking available
but what I see
DHL 2-3 delivery days tracking available.
In fact, I see the shortcode working well for that split second before it’s not there.

