Hi Bibhash,
Thank you for reaching out to us.This would require custom development as this is not a theme feature by default and is outside of our support scope, but we will do our best to help you getting started with the customization but we will not be able to implement it. To have a click effect on hover, you can add the following code in the Theme Options > JS:
jQuery(document).ready(function($){
$('.tp-tab').hover(function() {
if(!$(this).hasClass('selected')) {
$(this).click();
}
});
});
Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.
Don’t forget to clear all caches including your browser’s cache after adding the code. Hope this helps!