Hi borntorun1234,
Are you comfortable making some minor edits to the code? If so, you’ll want to open up the /wp-content/plugins/business-profile/template-functions.php file and find these lines of code.
if ( $bpfwp_controller->display_settings['show_address'] ) :
?>
<div class="bp-address" itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
<?php echo nl2br( $address['text'] ); ?>
</div>
<?php else : ?>
<meta itemprop="address" content="<?php echo esc_attr( $address['text'] ); ?>">
<?php endif; ?>
These lines can be adjusted to the following:
if ( $bpfwp_controller->display_settings['show_address'] ) :
?>
<div class="bp-address">
<?php echo nl2br( $address['text'] ); ?>
</div>
<?php endif; ?>
<meta itemprop="address" content="<?php echo esc_attr( $address['text'] ); ?>">
If you’re not used to doing this, be careful and backup the file before modifying it. It’s easy to accidentally bring down your site when editing these files. ??