Hi @rsl89,
By default, the Tooltips of the Dokan Common Links get styles from the library that cannot be changed.
But you can change the position from top to right by adding the following code snippet at the bottom of your child theme’s functions.php file.
#-- Vendor Dashboard Common Links --#
function vendor_dashboard_common_links($common_links){
$common_links = '<li class="dokan-common-links dokan-clearfix">
<a title="' . __( 'Visit Store', 'dokan-lite' ) . '" class="tips" data-placement="right" href="' . dokan_get_store_url( dokan_get_current_user_id() ) . '" target="_blank"><i class="fa fa-external-link"></i></a>
<a title="' . __( 'Edit Account', 'dokan-lite' ) . '" class="tips" data-placement="top" href="' . dokan_get_navigation_url( 'edit-account' ) . '"><i class="fa fa-user"></i></a>
<a title="' . __( 'Log out', 'dokan-lite' ) . '" class="tips" data-placement="left" href="' . wp_logout_url( home_url() ) . '"><i class="fa fa-power-off"></i></a>
</li>';
return $common_links;
}
add_filter( 'dokan_dashboard_nav_common_link', 'vendor_dashboard_common_links' );
Thank you!