| 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> <?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> <?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> 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 |
|