Hi nickg108,
i have modify the following file “widget_in.php” under DIRECTORY_ROOT\wp-content\plugins\login-with-ajax\widget\default\widget_in.php
in this way
if ( $lwa_data['profile_link'] == '1' ) {
if( function_exists('bp_loggedin_user_link') ){
?>
<a href="https://eshop.local/profilo" ><?php echo strtolower(__('profile')) ?></a><br/>
<?php }else{ ?>
<a href="https://eshop.local/profilo" ><?php echo strtolower(__('profile')) ?></a><br/>
instead of
if ( $lwa_data['profile_link'] == '1' ) {
<a href="<?php //bp_loggedin_user_link(); ?>"><?php esc_html_e('Profile','login-with-ajax') ?></a><br />
<?php
}else{
?>
<a href="<?php echo trailingslashit(get_admin_url()); ?>profile.php"><?php esc_html_e('Profile','login-with-ajax') ?></a><br/>
<?php
}
I hope to be state aid