Hi Team, I am using Multi-line Meta Field . However When I am putting content, it is showing all content in single line and not breaking it in separate lines.
Any suggestions will be appreciated.
Make sure that the meta field is set up as a “Text area” field type. This allows for multiple lines of text to be entered.
When entering content into the meta field, make sure to press the “Enter” key on your keyboard to create a new line. Simply pressing the space bar will not create a new line.
If you are copying and pasting content into the meta field, make sure to remove any line breaks or formatting that may be causing the issue.
If the above steps do not resolve the issue, you can try adding some custom CSS
.meta-field-class {
white-space: pre-line;
}
Replace “.meta-field-class” with the class name of your meta field.