Woocommerce myaccount edit link not working

Hi there,
in the my account page (woocommerce)

– I click on the tab about the addresses (account addresses) and it correctly shows the billing address and the shipping address
– Now I click on the EDIT link of the billing address but nothing shows up, the only thing that happen is that the page scrolls a little down

Note:
– If I RIGHT CLICK on the EDIT link and open in a new tab: IT WORKS

  1. As for the point 1: In the “order details” tab, I click on VIEW (in order to see a specific order) but nothing shows up, again, the only thing that happen is that the page scrolls a little down.

Note: the same notes as in point 1 above (right clicking in a new tab, works)

Thank you for your support.

Regards.

Hi There,

Could you please try adding this custom code under Theme Options > JS:?

jQuery( function($) {
	$('.vc_tta-tab a').on('click', function( e ){
		setTimeout( function() { 
			$('html, body').stop().stop();
		}, 100 );
	});
	$(document).ready(function() {
		$('.vc_tta.vc_general .vc_tta-panel-title > a, .vc_tta.vc_general .vc_tta-panel-title > a, .vc_tta-tab a').off('click touchstart touchend');
	});

});

Let us know how it goes!

I have investigated further and I think the cause has nothing to do with that specific page or woocommerce neither.

The cause is that I am customizing the page with visual composer and I was using visual composer tabs. Using cornerstone tabs make everything working fine.

So please hold on with this issue, I’ll be back with a more precise question if needed.

Ok thank you for the information.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.