Hello
If you want the social icons to open in a new page instead of the parent window you can use the following method:
Go to this Social Icon addon directory and open site.php file. After that find below code
foreach ($this->addon->settings->sp_social_icons_item as $key => $social_item) {
$output .= '<span style="display:inline-block;">';
$output .= '<a href="' . $social_item->url . '">';
$output .= '<i class="fa ' . $social_item->icon . ' "></i>';
$output .= '</a>';
$output .= '</span>';
}
Now, change this line
$output .= '<a href="' . $social_item->url . '">';
to
$output .= '<a target="_blank" href="' . $social_item->url . '">';