Hi,
I have this code to add description to request page.
I would like to add line breaks as show below but its not working.
add_filter(
'hivepress/v1/forms/request_update',
function( $form ) {
$form['description'] = 'first phrase <br>
second phrase <br>';
return $form;
},
1000
);
I though of using templates but whenever you try to edit a template. its remove all the blocks and gives you an empty page. you cannot add the block that we’re previously there.
so this code at least helps to add a description but it renders in a straight line without any breaks
please help.