Skip to content

Commit 9e3838d

Browse files
authored
Merge pull request #50 from AyeCode/master
pull
2 parents 3a220e7 + f27a0a5 commit 9e3838d

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ __Please Note:__ GitHub is for bug reports and contributions only - if you have
3232
At this point you're waiting on us to merge your pull request. We'll review all pull requests, and make suggestions and changes if necessary.
3333

3434
# Additional Resources
35-
* [UsersWP Developer's Codex](https://userswp.io/docs/)
35+
* [UsersWP Developer's Codex](https://userswp.io/documentation/)
3636
* [General GitHub Documentation](https://help.github.com/)
3737
* [GitHub Pull Request documentation](https://help.github.com/send-pull-requests/)
3838
* [PHPUnit Tests Guide](https://phpunit.de/manual/current/en/writing-tests-for-phpunit.html)

admin/class-admin-setup-wizard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ public function setup_ready() {
715715
<h2><?php esc_html_e( 'Learn more', 'userswp' ); ?></h2>
716716
<ul>
717717
<li class="uwp-getting-started">
718-
<a href="https://userswp.io/docs/?utm_source=setupwizard&utm_medium=product&utm_content=getting-started&utm_campaign=userswpplugin"
718+
<a href="https://userswp.io/documentation/?utm_source=setupwizard&utm_medium=product&utm_content=getting-started&utm_campaign=userswpplugin"
719719
target="_blank"><?php esc_html_e( 'Getting started guide', 'userswp' ); ?></a>
720720
</li>
721721
<li class="uwp-newsletter">

admin/class-admin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function __construct() {
7373
'slug' => 'userswp',
7474
'version' => USERSWP_VERSION,
7575
'support_url' => 'https://userswp.io/support/',
76-
'documentation_url' => 'https://docs.userswp.io/',
76+
'documentation_url' => 'https://userswp.io/documentation/',
7777
'activated' => get_option( 'uwp_installed_on', 0 ),
7878
)
7979
);
@@ -851,7 +851,7 @@ public function process_user_actions() {
851851
public static function plugin_row_meta( $links, $file ) {
852852
if ( USERSWP_PLUGIN_BASENAME == $file ) {
853853
$row_meta = array(
854-
'docs' => '<a href="' . esc_url( 'https://docs.userswp.io/' ) . '" aria-label="' . esc_attr__( 'View UsersWP Documentation', 'userswp' ) . '">' . esc_html__( 'Docs', 'userswp' ) . '</a>',
854+
'docs' => '<a href="' . esc_url( 'https://userswp.io/documentation/' ) . '" aria-label="' . esc_attr__( 'View UsersWP Documentation', 'userswp' ) . '">' . esc_html__( 'Docs', 'userswp' ) . '</a>',
855855
'support' => '<a href="' . esc_url( 'https://userswp.io/support/' ) . '" aria-label="' . esc_attr__( 'Visit UsersWP support', 'userswp' ) . '">' . esc_html__( 'Support', 'userswp' ) . '</a>',
856856
'translation' => '<a href="' . esc_url( 'https://userswp.io/translate/projects' ) . '" aria-label="' . esc_attr__( 'View translations', 'userswp' ) . '">' . esc_html__( 'Translations', 'userswp' ) . '</a>',
857857
);

admin/class-uwp-admin-help.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function add_tabs() {
6262
public function get_support_tab_content() {
6363

6464
$support_html = "<h2>".__('Help & Support','userswp')."</h2>";
65-
$support_html .= "<p>".sprintf(__('Should you need help understanding, using, or extending UsersWP <a href="%1$s">please read our documentation</a>. You will find all kinds of resources including snippets, tutorials and much more.,','userswp'),'https://userswp.io/docs/?utm_source=setupwizard&utm_medium=product&utm_content=getting-started&utm_campaign=userswpplugin')."</p>";
65+
$support_html .= "<p>".sprintf(__('Should you need help understanding, using, or extending UsersWP <a href="%1$s">please read our documentation</a>. You will find all kinds of resources including snippets, tutorials and much more.,','userswp'),'https://userswp.io/documentation/?utm_source=setupwizard&utm_medium=product&utm_content=getting-started&utm_campaign=userswpplugin')."</p>";
6666
$support_html .= "<p>".sprintf(__('For further assistance with UsersWP core or with premium extensions sold by UsersWP you can use our <a href="%1$s">support forums</a>.','userswp'),'https://userswp.io/support/?utm_source=setupwizard&utm_medium=product&utm_content=docs&utm_campaign=userswpplugin')."</p>";
6767
$support_html .= "<p>".__('Before asking for help we recommend checking the system status page to identify any problems with your configuration.','userswp')."</p>";
6868
$support_html .= "<p><a class='button button-primary' href='".admin_url( 'admin.php?page=uwp_status' )."'>".__( 'System status', 'userswp' )."</a> <a class='button' href='https://userswp.io/support/?utm_source=setupwizard&utm_medium=product&utm_content=docs&utm_campaign=userswpplugin'>".__( 'UsersWP support', 'userswp' )."</a></p>";

0 commit comments

Comments
 (0)