The follow table is a list of available filter hooks within Redux Framework that developers may use in their own code. Please note, a solid understand of PHP and WordPress action hooks is required. As always, please be sure to replace {opt_name} with the opt_name string of your Redux instance. Thanks to @paulthecoder for compiling […]
Category: Advanced
Filter Hooks
The follow table is a list of available filter hooks within Redux Framework that developers may use in their own code. Please note, a solid understand of PHP and WordPress filter hooks is required. As always, please be sure to replace {opt_name} with the opt_name string of your Redux instance. Thanks to @paulthecoder for compiling […]
The Redux API
With Redux 3.5+, we’ve completely redesigned the way in which config files for Redux Framework options panels are created. In the past, the process involved creating a PHP class, dividing the declaration of arguments, help tabs, and section into different functions and feeding them into a new instance of the Redux Framework object (see sample-config-legacy.php […]
Support Defined
Who are we? We maintain an open source project entitled Redux Framework. It is used by hundreds of thousands of users across the world, in all walks of life. Redux Framework is used primarily by developers. That means if users of our developers approach us, it is often difficult and sometimes impossible to provide the […]
IDE Snippets & Templates
Thanks to the great work of our community, and notably @karimhossenbux of Kimono Themes, we now have Snippers for Redux for various IDEs. If you would like to contribute to this effort, please contact [email protected]. NetBeans Code Templates PHP Storm Live Templates Sublime Text Snippets
Generating a Support Hash
In order to provide you with the best support possible, we request you generate a support hash. Doing so is quite easy. Please note, Redux 3.4.4.8+ is required for this.If you have an early version, please update. First proceed to the Redux Support tab within your Redux instance. You can get there by one of […]
The Redux WP_Filesystem Proxy
Redux has a WordPress filesystem proxy built in to help you read and write files that will pass Theme-Check. You can use these calls the moment a Redux object has been loaded (your Redux config has been run). Getting Started First, you must get the Redux object. The easiest method is as follows: Now that […]
WPML Integration
So you have embedded Redux into your theme or plugin, and you want to translate it with WPML. What happens with the option fields used with Redux?Can they also be translated with WPML? The answer is yes and we’ll explain everything in simple steps. Step 1: Find your opt_name variable The opt_name variable can be […]
Update an Option Outside the Options Panel
Most of the time, options for your theme or plugin will be set via the options panel. But what if you have a need to update an option someplace else? Perhaps an option would need to be changed behind the scenes, based on certain conditions, can it be done? You better believe it! SETting it […]
Setting Redux Values on Plugin Activation
Because of how/when Redux must run to work both embedded in themes and within plugins, a little massaging must occur if you want to set Redux values on plugin activation. In short, if you’re not using the save_defaults argument you will have to manually set the values in the database. So the typical set_option and […]