Hello @esenko,
We are really happy you like our theme. If you want to duplicate the team member widget, you need to create a child theme (here is a doc about this: https://docs.themeisle.com/article/14-how-to-create-a-child-theme) and duplicate the code from functions.php, below this:
/****************************/
/****** team member widget **/
/***************************/
until the zerif_team_widget class ends.
Of course, you need to change the name and id-s to have a different widget.
Also, you need to add:
add_action(‘widgets_init’, ‘zerif_child_register_widgets’);
function zerif_child_register_widgets() {
register_widget(‘zerif_team_widget_2’);
}
where zerif_team_widget_2 is the name of the new widget.
Best regards and a Merry Christmas,
Rodica