Viewing 1 replies (of 1 total)
  • Hi there Rafael,

    You can use a filter (on your child theme functions.php file) to remove them:

    add_filter( 'fb_og_desc', 'remove_line_breaks' );
    function remove_line_breaks( $desc ) {
    	return trim( preg_replace( '/\s\s+/', ' ', $desc ) );
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Line brakes on description’ is closed to new replies.