Files
ultimatemember/includes/admin/templates/welcome/start.php
T
nikitozzzzzzz 9e53314c3a !!! IMPORTANT 2.0 version before upgrade please run full backup of your site !!!
- new code structure, optimized for next development;
  - created spl_autoloader for remove includes;
  - UM classes with namespaces;
  - deprecated global $ultimatemember; variable (use UM() instead);
- new UM/WP roles logic;
- new settings class and logic (deprecated Redux framework, deprecated some old options, added some new options);
- new dependencies class for extensions;
- WP native styles for backend fields;
- new upgrades and license activations for extensions;
- new logic form backend forms and fields;
- created uninstall.php file for delete permanently all UM settings;
- optimized registration/upgrade profile process;

Deprecated Hooks:

um_new_user_registration_plain
um_user_registration_extra_hook
um_add_user_frontend
um_post_registration_global_hook
um_admin_extend_directory_options_general (was action...will be filter)
2017-07-26 14:57:52 +03:00

61 lines
3.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php include_once UM()->admin()->templates_path . 'welcome/about_header.php'; ?>
<div class="changelog">
<h3>Getting Started</h3>
<div class="feature-section">
<p>Ultimate Member has been designed to be as easy to use as possible and you shouldnt run into any difficulties. However, the plugin contains lots of different elements so we have created the following page to help you get started with Ultimate Member.</p>
</div>
</div>
<div class="changelog">
<div class="feature-section under-the-hood two-col">
<div class="col">
<h4>Automatically installed pages</h4>
<p>Upon activation the plugin will install 7 core pages. These pages are required for the plugin to function correctly and cannot be deleted.</p>
<p>
<ul>
<li><a href="<?php echo um_get_core_page('register'); ?>" target="_blank">Register</a></li>
<li><a href="<?php echo um_get_core_page('login'); ?>" target="_blank">Login</a></li>
<li><a href="<?php echo um_get_core_page('user'); ?>" target="_blank">User</a></li>
<li><a href="<?php echo um_get_core_page('members'); ?>" target="_blank">Members</a></li>
<li><a href="<?php echo um_get_core_page('account'); ?>" target="_blank">Account</a></li>
<li><a href="<?php echo admin_url('post.php?post=' . UM()->config()->permalinks['logout'] . '&action=edit'); ?>" target="_blank">Logout</a></li>
<li><a href="<?php echo um_get_core_page('password-reset'); ?>" target="_blank">Password Reset</a></li>
</ul>
</p>
</div>
<div class="col">
<h4>Getting started</h4>
<p>The plugin has several different elements in the WordPress admin that allow you to customize your community/membership site:</p>
<p>
<ul>
<li><a href="<?php echo admin_url('admin.php?page=ultimatemember'); ?>" target="_blank">Dashboard</a></li>
<li><a href="<?php echo admin_url('admin.php?page=um_options'); ?>" target="_blank">Settings</a></li>
<li><a href="<?php echo admin_url('edit.php?post_type=um_form'); ?>" target="_blank">Forms</a></li>
<li><a href="<?php echo admin_url('edit.php?post_type=um_role'); ?>" target="_blank">Member Levels</a></li>
<li><a href="<?php echo admin_url('edit.php?post_type=um_directory'); ?>" target="_blank">Member Directories</a></li>
</ul>
</p>
</div>
</div>
</div>
<div class="changelog feature-list">
<h2>Need more help?</h2>
<div class="feature-section">
<p>If you have run into an issue with Ultimate Member, you should first have a look at our documentation and perform a search of the docs. If, after performing a search of the docs you can not find anything related to your issue/question then you can submit a <a href="https://wordpress.org/support/plugin/ultimate-member" target="_blank">support ticket</a>.</p>
<p class="um-admin-notice" style="text-align:center"><a href="http://docs.ultimatemember.com/" target="_blank" class="button button-primary">View Documentation</a></p>
</div>
</div>
<?php include_once UM()->admin()->templates_path . 'welcome/about_footer.php'; ?>