📖 DOC: Updated branding.

This commit is contained in:
Austin Ginder 2018-08-08 21:09:36 -04:00
parent 4049e7a90f
commit 3d74b40f6c
12 changed files with 25 additions and 25 deletions

View file

@ -1,5 +1,5 @@
=== CaptainCore GUI ===
Author URI: https://anchor.host
Author URI: https://twitter.com/austinginder
Plugin URI: https://captaincore.io
Contributors: austinginder
Tags: hosting, dns, wp hosting, web host, website management, web host business
@ -13,7 +13,7 @@ Toolkit for running your own WordPress hosting business

== Description ==

CaptainCore is an open sourced toolkit made and used by [Anchor Hosting](https://anchor.host). If your a geek take a look on Github and help contribute! If you just want to pay someone to setup and run CaptainCore for your business then check out [CaptainCore.io](https://captaincore.io). We'll handle getting your business and hosting customers moved over.
[CaptainCore GUI](https://captaincore.io) is a WordPress plugin part of the CaptainCore toolkit (a powerful toolkit for managing WordPress sites via SSH & WP-CLI). Requires a connection with a CaptainCore CLI (see installation notes).

== Installation ==


View file

@ -3,7 +3,7 @@
/**
* The admin-specific functionality of the plugin.
*
* @link https://anchor.host
* @link https://captaincore.io
* @since 0.1.0
*
* @package Captaincore
@ -18,7 +18,7 @@
*
* @package Captaincore
* @subpackage Captaincore/admin
* @author Anchor Hosting <support@anchor.host>
* @author Austin Ginder
*/
class Captaincore_Admin {


View file

@ -5,7 +5,7 @@
*
* This file is used to markup the admin-facing aspects of the plugin.
*
* @link https://anchor.host
* @link https://captaincore.io
* @since 0.1.0
*
* @package Captaincore

View file

@ -8,17 +8,17 @@
* registers the activation and deactivation functions, and defines a function
* that starts the plugin.
*
* @link https://anchor.host
* @link https://captaincore.io
* @since 0.1.0
* @package Captaincore
*
* @wordpress-plugin
* Plugin Name: CaptainCore GUI
* Plugin URI: https://captaincore.io
* Description: Toolkit for running your own WordPress hosting business
* Description: Open Source Toolkit for Managing WordPress Sites
* Version: 0.2.7
* Author: Anchor Hosting
* Author URI: https://anchor.host
* Author: Austin Ginder
* Author URI: https://twitter.com/austinginder
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: captaincore
@ -4372,9 +4372,9 @@ add_action( 'woocommerce_payment_complete', 'captaincore_woocommerce_payment_com
function captaincore_get_checkout_payment_url( $payment_url ) {

// Current $payment_url is
// https://anchor.host/checkout/order-pay/1918?pay_for_order=true&key=wc_order_576c79296c346&subscription_renewal=true
// https://captcore-sitename.com/checkout/order-pay/1918?pay_for_order=true&key=wc_order_576c79296c346&subscription_renewal=true
// Replace with
// https://anchor.host/checkout-express/1918/?pay_for_order=true&key=wc_order_576c79296c346&subscription_renewal=true
// https://captcore-sitename.com/checkout-express/1918/?pay_for_order=true&key=wc_order_576c79296c346&subscription_renewal=true
$home_url = esc_url( home_url( '/' ) );

$new_payment_url = str_replace( $home_url . 'checkout/order-pay/', $home_url . 'checkout-express/', $payment_url );

View file

@ -3,7 +3,7 @@
/**
* Fired during plugin activation
*
* @link https://anchor.host
* @link https://captaincore.io
* @since 0.1.0
*
* @package Captaincore
@ -18,7 +18,7 @@
* @since 0.1.0
* @package Captaincore
* @subpackage Captaincore/includes
* @author Anchor Hosting <support@anchor.host>
* @author Austin Ginder
*/
class Captaincore_Activator {


View file

@ -3,7 +3,7 @@
/**
* Fired during plugin deactivation
*
* @link https://anchor.host
* @link https://captaincore.io
* @since 0.1.0
*
* @package Captaincore
@ -18,7 +18,7 @@
* @since 0.1.0
* @package Captaincore
* @subpackage Captaincore/includes
* @author Anchor Hosting <support@anchor.host>
* @author Austin Ginder
*/
class Captaincore_Deactivator {


View file

@ -6,7 +6,7 @@
* Loads and defines the internationalization files for this plugin
* so that it is ready for translation.
*
* @link https://anchor.host
* @link https://captaincore.io
* @since 0.1.0
*
* @package Captaincore
@ -22,7 +22,7 @@
* @since 0.1.0
* @package Captaincore
* @subpackage Captaincore/includes
* @author Anchor Hosting <support@anchor.host>
* @author Austin Ginder
*/
class Captaincore_i18n {


View file

@ -3,7 +3,7 @@
/**
* Register all actions and filters for the plugin
*
* @link https://anchor.host
* @link https://captaincore.io
* @since 0.1.0
*
* @package Captaincore
@ -19,7 +19,7 @@
*
* @package Captaincore
* @subpackage Captaincore/includes
* @author Anchor Hosting <support@anchor.host>
* @author Austin Ginder
*/
class Captaincore_Loader {


View file

@ -6,7 +6,7 @@
* A class definition that includes attributes and functions used across both the
* public-facing side of the site and the admin area.
*
* @link https://anchor.host
* @link https://captaincore.io
* @since 0.1.0
*
* @package Captaincore
@ -25,7 +25,7 @@
* @since 0.1.0
* @package Captaincore
* @subpackage Captaincore/includes
* @author Anchor Hosting <support@anchor.host>
* @author Austin Ginder
*/
class Captaincore {


View file

@ -3,7 +3,7 @@
/**
* The public-facing functionality of the plugin.
*
* @link https://anchor.host
* @link https://captaincore.io
* @since 0.1.0
*
* @package Captaincore
@ -18,7 +18,7 @@
*
* @package Captaincore
* @subpackage Captaincore/public
* @author Anchor Hosting <support@anchor.host>
* @author Austin Ginder
*/
class Captaincore_Public {


View file

@ -5,7 +5,7 @@
*
* This file is used to markup the public-facing aspects of the plugin.
*
* @link https://anchor.host
* @link https://captaincore.io
* @since 0.1.0
*
* @package Captaincore

View file

@ -19,7 +19,7 @@
* For more information, see the following discussion:
* https://github.com/tommcfarlin/WordPress-Plugin-Boilerplate/pull/123#issuecomment-28541913
*
* @link https://anchor.host
* @link https://captaincore.io
* @since 0.1.0
*
* @package Captaincore