Last active
October 25, 2018 12:52
-
-
Save stevengliebe/2abb9fbaa5055c5486af4899511e3b2e to your computer and use it in GitHub Desktop.
How to enable Church Content Pro "Agency Mode" in wp-config.php. https://churchthemes.com/go/agency-mode/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* ChurchThemes.com Agency Mode | |
* | |
* See https://churchthemes.com/go/agency-mode/ for information. | |
* PHP 5.6+ is required. You can use define() with PHP 7+. | |
*/ | |
const CT_AGENCY_MODE = array( | |
'name' => 'Acme Agency', // Agency or freelancer name to show user. | |
'url' => 'http://acmebricks.com', // URL to link name with. | |
'usernames' => array( 'admin', 'otheruser' ), // User(s) to disable Agency Mode for. | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment