Hi,
Thanks for contacting us and choosing our product!
About this issue it’s not happen on our demo site & develop site:
https://prnt.sc/22R7cYbfEa47
Maybe you installed some extra plugins and it can causes the issue.
We resolved it for you by go to: wp-content/plugins/haru-teespace/ then open file haru-teespace.php
and changed the code on line 627,628 from:
wp_register_style( 'select2', plugins_url( HARU_TEESPACE_CORE_NAME . '/assets/lib/select2/select2.min.css' ), array(), false, 'all' );
wp_register_script( 'select2', plugins_url( HARU_TEESPACE_CORE_NAME . '/assets/lib/select2/select2.full.min.js' ), array( 'jquery' ), false, false );
to
wp_enqueue_style( 'select2', plugins_url( HARU_TEESPACE_CORE_NAME . '/assets/lib/select2/select2.min.css' ), array(), false, 'all' );
wp_enqueue_script( 'select2', plugins_url( HARU_TEESPACE_CORE_NAME . '/assets/lib/select2/select2.full.min.js' ), array( 'jquery' ), false, false );
Now it’s working fine.
Hope this helps!
****
Regards,
HaruTheme