Admin Tour
Admin Tour helps you to create a tour for admin. Admin user can go through the tour and they will get the knowledge about how to use the admin panel.
Next Milestone 20
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 2 of 2| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| walkthrough | 66 | — | Tag | 18 hours ago |
| introduction | 184 | — | Tag | 18 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.4
- Last Updated
- Oct 17, 2025
- Requires WP
- 6.6+
- Tested Up To
- 6.8.3
- PHP Version
- 8.1 or higher
- Author
- KrishaWeb
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 2
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Admin Tour
// Register pointer for contact form 7.
$pointers['toplevel_page_wpcf7'] = array(
'screen_info' => array(
'name' => __( 'Contact form List', 'admin-tour' ),
'url' => add_query_arg( array( 'page' => 'wpcf7' ), admin_url( 'admin.php' ) ),
),
array(
'id' => 'add_new',
'tagget_element' => '.page-title-action', // jQuery selector ID, class or any other method.
'title' => __( 'Add new', 'admin-tour' ),
'content' => __( 'Add new form.', 'admin-tour' ),
'position' => array(
'edge' => 'left',
'align' => 'left',
),
'url' => add_query_arg( array( 'page' => 'wpcf7-new' ), admin_url( 'admin.php' ) ),
),
array(
'id' => 'edit',
'tagget_element' => '#the-list tr:eq(0) .title', // jQuery selector ID, class or any other method.
'title' => __( 'Edit form', 'admin-tour' ),
'content' => __( 'Edit contact form.', 'admin-tour' ),
'position' => array(
'edge' => 'bottom',
'align' => 'left',
),
),
);
return $pointers;
} );
screen_info array is used for the dahboard widget, what ever text you wish to keep there, you can keep it here.
Can I reorder the steps?
Yes, you can do it easily using this filter:
add_filter( 'wat_pointers', function( $pointers ) {
// default the below pointer will be added to the last
$pointers['general'][] = array(
'id' => 'menu_comments',
'tagget_element' => '#menu-comments', // jQuery selector ID, class or any other method.
'title' => __( 'Comments', 'admin-tour' ),
'content' => __( 'You can hover the category and you will see the edit option, click on it to edit that category.', 'admin-tour' ),
'next_pointer' => '',
'position' => array(
'edge' => 'left',
'align' => 'left',
),
);
// Change pointer ordering as per your wish
$reorder = array( 'menu_posts', 'menu_media', 'menu_pages', 'menu_comments', 'menu_users', 'wat_widget' );
$pointers['general'] = wat_reorder_pointers( $pointers['general'] );
return $pointers;
} );
return 60 * DAY_IN_SECONDS;
} );
$roles[] = 'shop_manager';
return $roles;
} );
I have an idea for a great way to improve this plugin.
Great! I’d love to hear from you at support@krishaweb.com