开发者 | nravota12 |
---|---|
更新时间 | 2024年4月9日 04:25 |
PHP版本: | 5.2.4 及以上 |
WordPress版本: | 6.5 |
版权: | GPLv2 |
/wp-content/plugins/
directoryFrom the WordPress admin, go to Settings => Simple Tour Guide and add as many steps as you want.
Sure, you can! Inspect a page element with the browser dev tool (right click with the mouse => inspect element) and then add its selector in the "Step Position" field from "Create a Tour" tab. You can add class, id or tag selector like so: .class
, #id
, tag
. If you do not assign a selector, that is also fine, the step will appear exactly in the middle of the screen.
Absolutely! In fact, by default the plugin hides the tour when the user finishes or dismisses it. However, you can also choose to display the steps on every page reload (test mode) from the "Tour Options" tab.
Go to "Tour Options" tab, uncheck "Show the tour on all pages" box and copy the plugin shortcode [stg_kef]
. Then, navigate to a page or post you want, click "edit"
and paste the shortcode on the top of the post content.
Go to "Style" tab and customize accordingly. For additional customizations, you can use the .stg
classname or add a custom class to each step from the "Create a Tour" tab. Go to Аppearance => Customize => Additional css
and add your own custom styles there.
The plugin currently supports only one tour, however you can add an additional tour. Check Shepherd.js documentation on how to do it, as well as the last question in this section (you would need to add some custom code to make it work).
Yes, this feature is available since version 1.03. All you need to do is check the option "Show modal background overlay when the tour is active" in the Tour options tab. This will disable any site interaction until the user has finished or dismissed the tour.
This may happen when you link a step to a page element that is hidden with css on specific screen sizes. For example, a menu item on mobile that is hidden until the user opens the menu. If the user has not opened the menu yet, the tour might stop in the middle. Luckily, there are a few ways to handle this. The easiest way to fix this is not to attach the step to the element and the step will appear in the middle of the screen. Since version 1.04, you can skip a step if the element which is attached to it appears off-screen. All you need to do is go to "Tour Options" and add a tick to "Skip a step if a step is attached to an element but the element is not visible". Please note that skipping a step will not work for elements that are completely non-existent in the DOM (for example content for logged-in users). In this case, the best option would be to use custom css to hide the step. Another solution could be to "detach" the element from its step for that screen size only. In this way, the step will appear in the center of the screen and the tour will continue to work just fine. Add the following css to Appearance => Theme => Customize: @media(max-width:62em) { .stg[data-popper-reference-hidden]{ opacity: 1 !important; visibility: visible !important; left: 50% !important; top: 50% !important; transform: translate(-50%, -50%) !important; pointer-events: auto !important; } .stg[data-popper-reference-hidden] > .shepherd-arrow { display: none; } } The above code targets mobile and tablet users only and detaches a step that was linked to an element which is not visible.
The skip a step option works only for elements that are hidden or off-screen but not for non-existent elements. If the element is missing from the DOM, the step should still appear in the middle of the screen and this is the standard behavior. However, you can still hide it with custom css.
A valid use case for this is if you have extra content for logged in users and you want to hide the step that is linked to it for non-logged in users. To do that, you need to go to plugin settings page => create a tour tab => custom css class and add a custom class name to the step you want to hide, lets say my-hidden-step
. After that, go to appearance => customize => additional css and add the following code:
.shepherd-enabled.my-hidden-step {
visibility: hidden;
}
.logged-in .my-hidden-step {
visibility: visible;
}
The above code will hide the step for non-logged in users but still show it to logged in users.
Since version 1.02 you can! You can check the option "Show the tour to logged in users only" in the Tour Options tab.
No, the scope of this plugin is the site frontend only. To display a tour in the CMS, you can try the Custom Welcome Guide plugin. = Can I customize the tour beyond the existing options? You can override the plugin's default js file and enqueue your own: function my_modified_tour() { wp_dequeue_script( 'simple-tour-guide' ); wp_deregister_script( 'simple-tour-guide' ); wp_enqueue_script( 'custom-tour', get_stylesheet_directory_uri() . '/assets/js/custom-tour.js', array(), '', true ); } add_action( 'wp_enqueue_scripts', 'my_modified_tour' ); In this way, you will be able to create your own custom tour and get access to all the options provided by the Shepherd.js library. Happy Coding!