@samliew Does this also work for Dynamic content? I want to put prev/next buttons for the content pages in my blog posts (close to 2000 pages). Thanks!
One of my radio button groups was misnamed on the 2nd answer so it had to be filled out twice. I fixed that and all is well. Again, really appreciate the help.
We can let designers use custom attributes to have more control over what button links to the next/prev tab. This way we could design sequential flows with the tabs, and have a separate button inside each tab. This gives more flexibility for design and more creative capabiities. Also it separates the style from action, the trigger button can have any classes you want
In the code we could use jQuery traversing to easily find next/prev items on which we trigger click
Here’s a rough sketch, only showing “next” action
$(document).on(‘click’, ‘[tabs-nav=“next”]’, function() {
$(this).closest(‘.tabs-wrapper’).find(‘.w-tab-link.w–current’).next(‘.w-tab-link’).click();
//here we could add code to loop the tabs or gray out the next button if there are no more tabs
});
Look at the person with the answer you found in this conversation; and message them in their profile. In your account there’s a message button on top. Then add @ sign with their name to contact them privately.
This would be exactly what I’ve spent AGES looking for - a hybrid between the slider and the tabs widget - if it could be set to cycle through the tabs automatically like a slider can be. Is that possible please?