Hello,
To add the “Close” button there, add the following code to the file woodmart/inc/template-tags.php
http://prntscr.com/uxid83
echo '<div class="widget-heading"><a href="#" class="close-side-widget wd-cross-button wd-with-text-left">Close</a></div>';
and put this code to the custom JS section on document ready in Theme Settings
jQuery('.mobile-nav .close-side-widget').on('click', function(){
jQuery('.mobile-nav').removeClass('act-mobile-menu');
jQuery('.woodmart-close-side').removeClass('woodmart-close-side-opened');
jQuery('.mobile-nav .searchform input[type=text]').blur();
});
Regards