WooCommerce: Scroll To Product Tab @ Single Product Page

Depending on your theme, just creating an href link anchor to a product tab might or might not work i.e. it might not scroll to it as it’s currently closed.

Here comes a way to create href links that not only scroll to the tab, but also open it in case it’s closed (this will guarantee the anchor scroll to the tab). Also, a little jQuery “animate” will provide the smooth scroll and enhance UX. Hope you enjoy!

Create links to smooth scroll to any WooCommerce Product Tab

PHP Snippet: Create Custom Links to Scroll To Product Tabs @ Single Product Page

/**
 * @snippet       Scroll to tab - WooCommerce Single Product
 * @how-to        Get CustomizeWoo.com FREE
 * @author        Rodolfo Melogli
 * @compatible    WooCommerce 3.5.7
 * @donate $9     https://businessbloomer.com/bloomer-armada/
 */

add_action( 'woocommerce_single_product_summary', 'bbloomer_scroll_to_and_open_product_tab', 21 );
 
function bbloomer_scroll_to_and_open_product_tab() {
	
	global $post, $product;	
	
	// LINK TO SCROLL TO DESC TAB
	if ( $post->post_content ) {
		echo '<p><a class="jump-to-tab" href="#tab-description">' . __( 'Read more', 'woocommerce' ) . ' &rarr;</a></p>';
	}
	
	// LINK TO SCROLL TO ADDITIONAL INFO TAB
	if ( $product && ( $product->has_attributes() || apply_filters( 'wc_product_enable_dimensions_display', $product->has_weight() || $product->has_dimensions() ) ) ) {
		echo '<p><a class="jump-to-tab" href="#tab-additional_information">' . __( 'Additional information', 'woocommerce' ) . ' &rarr;</a></p>';
	}
	
	// LINK TO SCROLL TO REVIEWS TAB
	if ( comments_open() ) {
		echo '<p><a class="jump-to-tab" href="#tab-reviews">' . __( 'Reviews', 'woocommerce' ) . ' &rarr;</a></p>';
	}
	
	?>
		<script>
		jQuery(document).ready(function($){
			$('a.jump-to-tab').click(function(e){
				e.preventDefault();
				var tabhash = $(this).attr("href");
				var tabli = 'li.' + tabhash.substring(1);
				var tabpanel = '.panel' + tabhash;
				$(".wc-tabs li").each(function() {
					if ( $(this).hasClass("active") ) {
						$(this).removeClass("active");
					}
				});
				$(tabli).addClass("active");
				$(".woocommerce-tabs .panel").css("display","none");
				$(tabpanel).css("display","block");
				$('html,body').animate({scrollTop:$(tabpanel).offset().top}, 750);
			});
		});
		</script>
	<?php
	
}

Where to add custom code?

You should place PHP snippets at the bottom of your child theme functions.php file and CSS at the bottom of its style.css file. Make sure you know what you are doing when editing such files - if you need more guidance, please take a look at my guide "Should I Add Custom Code Via WP Editor, FTP or Code Snippets?" and my video tutorial "Where to Place WooCommerce Customization?"

Does this snippet (still) work?

Please let me know in the comments if everything went as expected. I would be happy to revise the snippet if you report otherwise (please provide screenshots). I have tested this code with Storefront theme, the WooCommerce version listed above and a WordPress-friendly hosting.

If you think this code saved you time & money, feel free to join 17,000+ WooCommerce Weekly subscribers for blog post updates and 250+ Business Bloomer supporters for 365 days of WooCommerce benefits. Thank you in advance!

Need Help with WooCommerce?

Check out these free video tutorials. You can learn how to customize WooCommerce without unnecessary plugins, how to properly configure the WooCommerce plugin settings and even how to master WooCommerce troubleshooting in case of a bug!

Rodolfo Melogli

Business Bloomer Founder

Author, WooCommerce expert and WordCamp speaker, Rodolfo has worked as an independent WooCommerce freelancer since 2011. His goal is to help entrepreneurs and developers overcome their WooCommerce nightmares. Rodolfo loves travelling, chasing tennis & soccer balls and, of course, wood fired oven pizza.

30 thoughts on “WooCommerce: Scroll To Product Tab @ Single Product Page

  1. hi Aug 22. This is working great on Woodmart Theme. And is really helpful, as customers said they didn’t know more info was available (!)

    Is it possible to have the text only visible to certain categories?
    Or
    Category A says one thing
    Category B says another (or nothing)
    Or
    can the code go directly on the page? so I can only put it where relevant (I’ve tried this, but it comes up with the code)

    Thanks!

    1. Hi Amy!

      1) please take a look at “conditional logic”: https://businessbloomer.com/woocommerce-conditional-logic-ultimate-php-guide/
      2) code goes in functions.php of your child theme, or “Code Snippets” plugin

      1. Hi thank you for that, that is really helpful.

  2. Snippet/code still works.

    I had to add a top offset in order to see the tabs after scrolling.
    This is due to the fact that i have a sticky header/navigation bar which covers the tabs.
    It was achieved by changing the code:

    $('html,body').animate({scrollTop:$(tabpanel).offset().top}, 750);

    to:

    $('html,body').animate({scrollTop:$(tabpanel).offset().top -200 }, 750);

    You can adjust accordinly to your own setup by changing the number “200” after

    .offset().top
      1. Huge thanks to both of you!
        I was trying to add this nice snippet but got a bit annoyed by the auto-scroll which was getting too low, now I understand it comes from the sticky header and fixed the issue.

  3. Hi this is great but on large viewports it still scrolls too far, about 200 pixels below the content in the tab. Any way to revise the script so it doesn’t scroll so far down?

    1. Hi Trudy, I guess you could enter a conditional scroll value based on viewport size. Hope this helps

  4. Hi

    This works perfect on my mobile, but not on my computer. It moves to long down the page.

    Hege

    1. Weird. Do you have absolute positioned divs or similar?

  5. Hi!
    Thank you for the snippet! In my site it scrolls down too much, part of the text remains hidden in Product Description. Can yuo help with this? Thanks in advance!

    1. Hello Anu, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!

  6. Hi Rodolfo,
    Love your site – thanks for all your shared expertise!
    Would it be possible to do this for images in the product page carosel? I.e, when a gallery thumbnail is clicked, the page scrolls back to the top of the main image?

    1. Hi Pete, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!

  7. Hi Rodolfo,

    Nice hack! Can you please write a blog on how we can convert Tabs to Accordion. That would make the product page look sleek on desktop as well as mobile.

    1. Cheers. Maybe one day 🙂

  8. Can this function work with a button?

    1. Hey Leia, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!

      1. Thanks, I understand…
        I’m just trying to style the text different from other links, everything I have tried to change it with css has failed > newbie here… sorry

  9. Hey there,
    Any idea why this does not work on mobile browsers? It scrolls to the tabs, but it doesn’t open the relevant tab. It works fine on desktop. Css selector remain exactly the same (its a responsive site.)

    1. Not sure sorry 😐

  10. Hello
    i have just used your snippet WooCommerce: Scroll To Product Tab @ Single Product Page
    and works fine in my woo product pages.
    The position of the link anchor is above product attr Size – Color.
    I want to position the link down the product attr, and defore the add to cart button.
    Is this possible?

    1. Andreas, thanks so much for your comment! Yes, this is definitely possible, but I’m afraid it’s custom work. If you’d like to get a quote, feel free to contact me here. Thanks a lot for your understanding!

  11. Would love to know how to add the code for a few more custom tabs. Not sure how to call out the specific attributes.

    1. Hey Tony, if you “Inspect” the HTML element you should find the correct names 🙂

  12. Works Great! Very simple and lightweight – strait to the point. I modified it to scroll to an additional tab I use to display a sizing chart. Only took 3 additional lines of code to the function.

    Then I styled it up and made it look all fancy…

    Thank you!

    1. Excellent

  13. Hey,
    Thanks for solution. Snippet work perfectly except it need a tiny change in jQuery part.

    After deactivate all tabs

    <li>

    , targeted tab remain deactivated because for example class name for description is “description_tab” and not “tab-description” anymore, but still we have “aria-controls” with same class name.

    So I changed :

    var tabli = 'li.' + tabhash.substring(1);

    to:

    var tabli = tabhash.substring(1);

    And

    $(tabli).addClass("active");

    to:

    $('[aria-controls="'+tabli+'"]').addClass("active");
    1. Good stuff, thanks Emad 🙂

      1. Emad, thank you very much, you helped me a lot!

Questions? Feedback? Support? Leave your Comment Now!
_____

If you are writing code, please wrap it between shortcodes: [php]code_here[/php]. Failure to complying with this (as well as going off topic, not writing in English, etc.) will result in comment deletion. You should expect a reply in about 2 weeks - this is a popular blog but I need to get paid work done first. Please consider joining BloomerArmada to get blog comment reply priority, ask me 1-to-1 WooCommerce questions and enjoy many more perks. Thank you :)

Your email address will not be published. Required fields are marked *