PluginProbe
Tag Groups is the Advanced Way to Display Your Taxonomy Terms / trunk
Tag Groups is the Advanced Way to Display Your Taxonomy Terms vtrunk
2.2.2 2.2.1 2.2.0 trunk 1.40.0 1.40.2 1.41.0 1.42.1 1.43.0 1.43.1 1.43.10 1.43.10.1 1.43.2 1.43.3 1.43.4 1.43.5 1.43.6 1.43.7 1.43.9 1.44.0 1.44.1 1.44.3 1.44.3.1 2.0.0 2.0.1 All 36 releases
tag-groups / views / admin / onboarding.view.php

onboarding.view.php in Tag Groups is the Advanced Way to Display Your Taxonomy Terms trunk, at views/admin/onboarding.view.php

25 lines 1.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <h2><?php _e('First Steps', 'tag-groups') ?></h2>
2 <div class="tg-onboarding-container">
3 <h3><?php /* translators: %s is the plugin name */ printf(esc_html__('Welcome to %s!', 'tag-groups'), esc_html($title)) ?></h3>
4 <p><?php _e('The plugin is ready for use. If you need some assistance, we can walk you through the basic steps.', 'tag-groups') ?></p>
5 <div style="margin: 50px 0; width: 500px;">
6 <a href="<?php echo esc_url($settings_setup_wizard_link) ?>" class="tg_premium_backend_call_to_action_button"><span class="dashicons dashicons-lightbulb"></span>&nbsp;<?php _e('Start the Setup Wizard', 'tag-groups') ?></a>
7 </div>
8 <div style="clear:both; height: 50px;"></div>
9 <div id="tag_groups_onboarding_accordion">
10 <h3><span class="dashicons dashicons-admin-settings"></span>&nbsp;<?php _e('Or click here if you prefer to do it on your own.', 'tag-groups') ?></h3>
11 <div style="display:none;">
12 <ol>
13 <li><?php /* translators: %s is the href attribute with URL */ printf(esc_html__('Go to the <span class="dashicons dashicons-tag"></span>&nbsp;Tag Groups <a %s>taxonomy settings</a> and <b>select the taxonomy</b> (tag type) of your tags. In most cases just leave the default: Tags (post_tag).', 'tag-groups'), 'href="' . esc_url($settings_taxonomy_link) . '" target="_blank"') ?></li>
14 <li><?php _e('Go to the tag groups admin page and <b>create some groups</b>.', 'tag-groups') ?> <?php /* translators: %s is the href attribute with URL */ printf(esc_html__('You can find these pages listed on your <a %s>Tag Groups home page</a>.', 'tag-groups'), 'href="' . esc_url($settings_home_link) . '" target="_blank"') ?></li>
15 <li><?php _e('Go to your tags and <b>assign them to these groups</b>.', 'tag-groups') ?></li>
16 </ol>
17 </div>
18 </div>
19 </div>
20 <script>
21 jQuery(document).ready(function(){
22 jQuery('#tag_groups_onboarding_accordion').accordion({collapsible:true, active:false});
23 });
24 </script>
25