[woocommerce_my_account]
[woocommerce_my_account]
© 2025 PatchVerse. All rights reserved.
				
					jQuery(document).ready(function($) {
  $('a[href="#reviews"]').on('click', function(e) {
    e.preventDefault();
    // Find the tab button labeled "Reviews" and click it
    $('.elementor-tab-title:contains("Reviews")').trigger('click');
    // Smooth scroll to the tab area
    $('html, body').animate({
      scrollTop: $('.elementor-tabs').offset().top - 100
    }, 500);
  });
});