-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Google Analytics Support Added - Logo Support Added. If the logo is disabled, then the Title should be activated. - Color Scheme Feature Added - User friendly Options Panel Added - iFrame support Added - Few Minor Bugs Fixed - #27 fixed - #23 fixed - #9 implemented - #5 fixed
- Loading branch information
1 parent
6682524
commit 7139963
Showing
301 changed files
with
46,997 additions
and
20 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
## Cust Redux Build Instructions | ||
|
||
### NEVER modify anything in the redux-framework folder | ||
Redux works because it's extensible by hooks. If you modify the core directory, | ||
or attempt to add your own stuff within the core directory, any other version of | ||
Redux WILL override your code. Never ever modify the ReduxCore, only extend it | ||
via hooks and filters. ;) | ||
|
||
#### ~/admin/options-init.php | ||
Your options configuration. | ||
|
||
|
||
#### ~/admin/tgm/tgm-init.php (If you opted to use it) | ||
You can add additional plugins if desired. | ||
|
||
#### Learn About Redux Extensions | ||
https://docs.reduxframework.com/extensions/using-extensions/ | ||
|
||
#### ~/admin/redux-extensions/extensions | ||
Place all extensions within this directory. An example would look like: | ||
|
||
* ~admin | ||
* redux-extensions | ||
* extension | ||
* metaboxes | ||
* extension_metaboxes.php | ||
|
||
#### ~/admin/redux-extensions/configs | ||
Place any custom configs extensions, that should not be added to the standard | ||
options-init.php file, within this folder. These will be auto-loaded. | ||
|
||
|
||
### For further instructions or assistance, please visit http://docs.reduxframework.com |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
// Load the TGM init if it exists | ||
if ( file_exists( dirname( __FILE__ ) . '/tgm/tgm-init.php' ) ) { | ||
require_once dirname( __FILE__ ) . '/tgm/tgm-init.php'; | ||
} | ||
|
||
// Load the embedded Redux Framework | ||
if ( file_exists( dirname( __FILE__ ).'/redux-framework/framework.php' ) ) { | ||
require_once dirname(__FILE__).'/redux-framework/framework.php'; | ||
} | ||
|
||
// Load the theme/plugin options | ||
if ( file_exists( dirname( __FILE__ ) . '/options-init.php' ) ) { | ||
require_once dirname( __FILE__ ) . '/options-init.php'; | ||
} | ||
|
||
// Load Redux extensions | ||
if ( file_exists( dirname( __FILE__ ) . '/redux-extensions/extensions-init.php' ) ) { | ||
require_once dirname( __FILE__ ) . '/redux-extensions/extensions-init.php'; | ||
} |
Oops, something went wrong.