Hello, @backpackingseries !
Thank you for using our plugin.
Apologies for the late response.
For your last query, you will need to remove the anchor tag from the code. Please go to ..\wp-content\plugins\ultimate-author-box-lite\inc\frontend\frontend-default\components folder and replace the code in the uab-component-name.php file with the following code:
<?php defined( 'ABSPATH' ) or die( 'No script kiddies please!' ); ?>
<?php
if($uab_template_type == 'uab-template-5'){
?>
<?php if(!empty($uab_profile_data[0]['uab_company_designation']) || !empty($uab_profile_data[0]['uab_company_separator']) || !empty($uab_profile_data[0]['uab_company_name'])):?>
<div class="uab-company-info">
<?php if(!empty($uab_profile_data[0]['uab_company_designation'])):?>
<span class="uab-company-designation">
<?php esc_html_e($uab_profile_data[0]['uab_company_designation']);?>
</span>
<?php endif;?>
<?php
if (!empty($uab_profile_data[0]['uab_company_url'])){
?><span class="uab-designation-separator"><?php
isset($uab_profile_data[0]['uab_company_separator'])?esc_html_e($uab_profile_data[0]['uab_company_separator']):esc_html_e(' at','ultimate-author-box');?></span>
<a href="<?php esc_attr_e($uab_profile_data[0]['uab_company_url']);?>" target="<?php esc_attr_e($uab_general_settings['uab_link_target_option']);?>"><?php esc_html_e($uab_profile_data[0]['uab_company_name']);?></a>
<?php
}
?>
</div>
<?php endif;?>
<div class="uab-display-name">
<!-- User Display Name -->
<?php esc_html_e(the_author_meta( 'display_name', $author_id)); ?>
</div>
<?php
}
else{
?>
<div class="uab-display-name">
<!-- User Display Name -->
<?php esc_html_e(the_author_meta( 'display_name', $author_id)); ?>
<?php
if($uab_template_type == 'uab-template-1'){
$user_meta=get_userdata($author_id);
$user_roles=$user_meta->roles;
$user_role_lists = $this->get_editable_roles();
foreach($user_role_lists as $user_role_list => $value){
//echo $user_role_list;
foreach($user_roles as $role=>$val){
//echo $val;
if($user_role_list == $val){
?><span class="uab-user-role"><?php esc_html_e($user_role_lists[$user_role_list]['name']);?></span><?php
}
}
}
}?>
</div>
<?php if(!empty($uab_profile_data[0]['uab_company_designation']) || !empty($uab_profile_data[0]['uab_company_separator']) || !empty($uab_profile_data[0]['uab_company_name'])):?>
<div class="uab-company-info">
<span class="uab-company-designation">
<?php esc_html_e($uab_profile_data[0]['uab_company_designation']);?>
</span> <?php
if (!empty($uab_profile_data[0]['uab_company_url'])){
?><span class="uab-designation-separator"><?php
isset($uab_profile_data[0]['uab_company_separator'])?esc_html_e($uab_profile_data[0]['uab_company_separator']):esc_html_e(' at','ultimate-author-box');?></span>
<a href="<?php esc_attr_e($uab_profile_data[0]['uab_company_url']);?>" target="<?php esc_attr_e($uab_general_settings['uab_link_target_option']);?>"><?php esc_html_e($uab_profile_data[0]['uab_company_name']);?></a>
<?php
}
?>
</div>
<?php endif;?>
<?php
}
Hope this helps.
Thank you!