WPIntell

Source evidence

Internal Anchors

Webyx for Gutenberg – Fullpage Fullscreen Scrolling Websites · support · 2023-04-25T14:37:00+00:00

mixedsentiment
mediumseverity
0.78relevance
4replies
Evidence linked to opportunitycommercial context

Proof Health

Open evidence

Commercial opportunities need traceable source links before they are treated as build-worthy.

1 / 18 rows with source links

5.6% of this page's analysis has direct source links.

0 build-decision rows missing links

0 rows here require auditable proof before promotion.

17 rows with no attached evidence

0 rows have source counts but still need direct links.

Conversation

support
digital-ninja resolved
I have a page using Webyx It has several slides; each has a unique “Name” I’d like to use the text links on the first slide as quick jumps to other slides in the series When I attempt to create the jump link, Webyx offers other slides in the series as targets, but the links don’t jump me to the correct slide. Using the test url provided, please choose: “What is a brand?” text link to test it out It doesn’t appear I’m able to add a unique ID to the slides? When I do a code inspection, the slide I’m trying to jump to does not have a unique ID?? Using Free version… Thank you. I’m enjoying the capabilities of Webyx. This topic was modified 3 years, 2 months ago by digital-ninja . The page I need help with: [ log in to see the link] Hi, thank you for contacting us and reporting this. As previously answered, currently Webyx navigation system is managed internally , and takes place via: arrows bullets keyboard mouse wheel (vertical) We have explained this in a post below: https://wordpress.org/support/topic/create-link-to-webyx-section-slide/ As for your situation in the Free version you will have to make manual changes to code so you can go directly to the Slide using the following steps. Add a reference to the name you gave your Slide via an attribute or class to the anchor element of your link, like in the example below where we used the data-anchor attribute set to the name of your Slide ( data-anchor=”slide02″ ). <a href="http://new.shawnkelshaw.com/interviews#slide02" data-type="page" data-id="13835" data-anchor="slide02">What is a brand?</a> At this point, through the following script, which will have to be appended to your page as the last script loaded, it will be possible to go directly to the relevant Slide by clicking on the link. Specifically, the following code adds the click event to the anchor element and takes advantage of an internal Webyx movement function to move to the relevant Slide through its name. document.querySelector( '[data-anchor]' ).addEventListener( 'click', function ( e ) { e.preventDefault(); _webyx.goToSP( e.target.getAttribute( 'data-anchor' ), false )}, false ); We are working on adding buit-in anchor management to the Pro version . As for the Free version , we will evaluate in the future if and when to create a special management for jumping between Slides. Best regards, The Webineer Team Topic closed Thank you for information and the time it took to respond to my inquiry. It was our pleasure and we are happy to help. Thank you very much for using Webyx and let us know further ideas or advices. Best regards, The Webineer Team

Comments

4 shown
Webyx 2023-04-26T16:13:00+00:00

Hi, thank you for contacting us and reporting this. As previously answered, currently Webyx navigation system is managed internally , and takes place via: arrows bullets keyboard mouse wheel (vertical) We have explained this in a post below: https://wordpress.org/support/topic/create-link-to-webyx-section-slide/ As for your situation in the Free version you will have to make manual changes to code so you can go directly to the Slide using the following steps. Add a reference to the name you gave your Slide via an attribute or class to the anchor element of your link, like in the example below where we used the data-anchor attribute set to the name of your Slide ( data-anchor=”slide02″ ). <a href="http://new.shawnkelshaw.com/interviews#slide02" data-type="page" data-id="13835" data-anchor="slide02">What is a brand?</a> At this point, through the following script, which will have to be appended to your page as the last script loaded, it will be possible to go directly to the relevant Slide by clicking on the link. Specifically, the following code adds the click event to the anchor element and takes advantage of an internal Webyx movement function to move to the relevant Slide through its name. document.querySelector( '[data-anchor]' ).addEventListener( 'click', function ( e ) { e.preventDefault(); _webyx.goToSP( e.target.getAttribute( 'data-anchor' ), false )}, false ); We are working on adding buit-in anchor management to the Pro version . As for the Free version , we will evaluate in the future if and when to create a special management for jumping between Slides. Best regards, The Webineer Team

Webyx 2023-04-28T07:47:00+00:00

Topic closed

digital-ninja 2023-04-28T10:52:00+00:00

Thank you for information and the time it took to respond to my inquiry.

Webyx 2023-04-29T07:49:00+00:00

It was our pleasure and we are happy to help. Thank you very much for using Webyx and let us know further ideas or advices. Best regards, The Webineer Team