Reply 285020 to: Link to record in (General Tabs)

Avatar: Olga Barlow
Olga Barlow
Support staff
April 21, 2021 at 13:52

Hello,

We added ID field for the tab title. So add the ID https://prnt.sc/11sy8kd
And then use the below code on the page

<script>
document.addEventListener('DOMContentLoaded', function() {
	jQuery(function($){

	let strings = ['?chastye_voprosy',
	'?oformleniye_zakaza',
	'?vozvrat'];
	strings.forEach( (string,i) => {
	if (window.location.href.indexOf(string) > -1) {
		string = string.replace('?', '');
		if ( $('[id="'+string+'"]').length > 0 ) {
			$('[id="'+string+'"]').click();
			$('html, body').animate({
				scrollTop: $('[id="'+string+'"]').offset().top - 100
			},'slow');
		};
		}
	}); 
});
});
</script>

If you have more questions about additional customization submit request here because additional customization is outside the scope of our support.

Regards

Go To The Whole Conversation In Topic
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.