Custom slugs for Each Tab

Probably some javascript that’s capturing the click which you will need to find and turn off, changing the anchor tags href to your links once the js has been fixed should make the tabs go to the correct page rather then opening a normal tab and work like allmovie.

Change order of combined product tabs

Literally just swap the order of them in the code: add_filter( ‘woocommerce_product_tabs’, function( $tabs ) { $tabs[‘description’][‘callback’] = function() { global $product; if ( $product && ( $product->has_attributes() || apply_filters( ‘wc_product_enable_dimensions_display’, $product->has_weight() || $product->has_dimensions() ) ) ) wc_get_template( ‘single-product/tabs/additional-information.php’ ); } wc_get_template( ‘single-product/tabs/description.php’ ); }; return $tabs; }, 98 );

Visual and Text tabs missing from Editor

Your problem could be one of 2 things: This could be because for some reason the tabs were disabled. To enable it log into your WordPress admin > WordPress Main Menu > Users > Edit(user with the issue) > First Option Top of Screen is “Visual Editor”> Unchecked the box > clicked save, and everything … Read more