Questions tagged [redux-framework]

A simple options framework for WordPress themes and plugins.

Redux Framework is a simple options framework for themes and plugins.

Redux Framework is open source, and the source code can be found on GitHub.

163 questions
2
votes
1 answer

Redux Framework slides field - wp_editor instead of textfield

I'm trying to customize slides default field (slides field - Redux framework) in order to include wp editor instead of textarea (description area) original file is here :…
Darko
  • 883
  • 8
  • 22
2
votes
3 answers

Redux WP Framework. A simple working code example?

Can anyone who successfully used this framework help me? Redux states that it utilizes a global variable for referencing all of the saved options in the database. My goal is to access these stored options, so I can figure out how to call…
j-grimwood
  • 341
  • 2
  • 7
  • 17
2
votes
3 answers

redux framework wordpress calling variable

I have installed the redux plugin via wordpress and great and all. I have been using the demo content to get the used to the framework, but I can't figure out how to call the data in the template? I have been using option tree for a long time and…
op1001
  • 338
  • 2
  • 5
  • 15
1
vote
1 answer

How to check if WooCommerce plugin is enabled?

I'm trying to check if woo commerce plugin is active then add some options to the option panel. but this code doesn't work right. can anyone tell me what is wrong? thanks. if( class_exists( 'WooCommerce' )) {//add options}
IRDN
  • 87
  • 10
1
vote
0 answers

How to Escape php line to validete on envato theme check?

Got a warning in envato theme checker that it should be escaped. This is the error Found echo $ in the file abc.php. Possible data validation issues found. All dynamic data must be correctly escaped for the context where it is rendered. this is the…
Van Dyke
  • 23
  • 5
1
vote
0 answers

Import/Export WordPress demo

We are a team of developers who are beginning to publish our theme on Themeforest. We are facing an issue in presenting the demo of our theme and wanted to seek your help. Whenever we try to export our theme demo content and import it somewhere…
1
vote
1 answer

How can I remove opacity, visibility and transition form Redux framework "Typography Fields"?

How can I remove this code of CSS without editing redux core files? opacity: 1; visibility: visible; -webkit-transition: opacity 0.24s ease-in-out; -moz-transition: opacity 0.24s ease-in-out; transition: opacity 0.24s ease-in-out; When I add…
BM RAFIQ
  • 185
  • 1
  • 2
  • 12
1
vote
2 answers

how to integrate redux framework metabox into custom post type?

I am using Redux Framework for theme development but I stuck on Metabox. I tried this doc https://docs.reduxframework.com/extensions/metaboxes/ but I didn't get any result. I am unable to get the custom field on selected custom post type. In…
1
vote
0 answers

How to specify output directory of CSS file in scssphp

I'm using Redux Framework and SASS. I've checked the http://leafo.net/scssphp/docs/ documentation, but I can't seem to find any mention of output css file directory mentions. And also how do I pass the Redux variables(taken from options field) to…
bob_harper
  • 11
  • 4
1
vote
3 answers

how to display upload or default logo in redux framework option

I am using Redux Framework for Wordpress theme. Then upload logo from redux options panel. here is my redux option code : array( 'id' => 'opt_header_logo', 'type' => 'media', 'url' => true, 'title' => __('Logo',…
gul rathod
  • 121
  • 11
1
vote
2 answers

Multiple ReduxFramework Plugin Error

1- I have created new theme using ReduxFramework . I can use option panel to change everything on my theme . 2- I have created new plugin using ReduxFramework . I can use option panel to change everything on my plugin . The problem is : If I…
1
vote
1 answer

Integrating Relay with Redux in React Native App

I am new to react-native.My application currently uses redux,react-redux,router flux & navigator. The back end i need to work with is GraphQL. What should i do now? Can i integrate Relay to my app without affecting anything related to redux or…
Wolverine
  • 3,616
  • 1
  • 22
  • 32
1
vote
1 answer

WP-Less, Less and PhpStorm compile

Im creating wp theme using Redux framework, WP-Less for compiling styles in LESS. Working in PhpStorm. Now, i want to change some colors dynamically from Redux and pass them to my main style.less file which will be compiled in style.css. The…
1
vote
1 answer

Redux framework issue: How to show output from admin panel to front end

I'm new in redux framework. I can't shown a text from admin panel to front end. I did this step: I changed this:-> 'opt_name' => $zboom, apply in footer.php: I think all are ok. My…
1
vote
0 answers

EventBus in React / Redux Applications

I am new to react and wondering what the best way to have decoupled communication in a modular React based application. Actually my issue is a plain old JavaScript abstraction over a restful API that is consumed by a React application. I have a…
1 2
3
10 11