Kev Provance
Forum Replies Created
-
Forum: Plugins
In reply to: [Redux Framework] XSS VulnerabilityThere is no report on Wordfence to offer you. The notification came directly from WordPress saying: The Redux Framework plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the ‘data’ parameter in all versions up to, and including, 4.5.7 due to insufficient input sanitization and output escaping.
It was in the shortcodes extension: https://plugins.trac.wordpress.org/browser/redux-framework/tags/4.5.7/redux-core/inc/extensions/shortcodes/class-redux-shortcodes.php#L205
It’s since been patched.
Forum: Plugins
In reply to: [Redux Framework] This string is hardcoded and cannot be translatedI’ll get to it in the next update. No ETA since one was released today. Thanks!
You have to use something like TGM to install the plugin. wp.org will not allow developers to embed Redux any longer. There’s nothing we can do about that. We also no longer support embedding if Redux due to issues such as this.
Forum: Plugins
In reply to: [Redux Framework] Page Edits Error after UpdateRedux does not interact with Elementor. If you are having issues with Elementor, you must file a report with them. It could also be a theme issue, which we do not support.
Forum: Plugins
In reply to: [Redux Framework] Redux FrameworkYou’ll need to contact Elementor about issue with Elementor. They need to be the ones to find the issue and report it to us. Thanks.
Download, install, and activate this beta version of Redux: https://github.com/reduxframework/redux-framework/archive/refs/heads/master.zip, version 4.5.7.4.
You will need to locate the theme’s options config file and add
'custom_fonts' => false,to the global arguments. Since we do not support themes that use Redux or have access to them, I could not tell you where in the theme that file is. Also, if you add that line and the theme is updated, it will overwrite your change. I would advise contacting the theme author and asking them to include that line in their global args section.Right now, it’s all part of Redux. I’ll look into a way to programmatically turn it off.
There’s a server permissions issue there that needs to be addressed. I’m guessing the custom-fonts folder wasn’t proper created in the sites upload folder. The VIP permissions system is an intricate one that I know nothing about. It’s an issue I also cannot address since it’s not my server. Contact whomever administers your server and tell them about the error.
Forum: Plugins
In reply to: [Redux Framework] Redux keeps crashing my adminThe post author file a report with our support forum. It was answered there.
Forum: Plugins
In reply to: [Redux Framework] URGENT: Redux Framework plugin breaking theme layoutIt sounds like Redux’s demo mode is enabled. Go to Settings > Redux > on on the screen that opens, click “Disable Panel Demo”
If such a menu/screen does not exist, it’s because the theme author removed it, in which case you’ll have to report this issue to them to have them resolve it.
Good luck.
Forum: Plugins
In reply to: [Redux Framework] Issue when taxonomy query in redux optionsMy guess is the necessary WordPress API isn’t yet loaded. It would depend on when you are loading the option config. Try loading it on an “init” hook. get_posts will not function properly before that hook has fired.
This isn’t not a Redux issue per se but more of a theme development issue and falls outside the scope of our support. Stackoverflow is a better resource for theme development issues.
Forum: Plugins
In reply to: [Redux Framework] Disable ‘Add Widget Area’ formI added a new global arg,
widget_areato enable to disable the widget area extension. Please try out via the Redux beta here: https://github.com/reduxframework/redux-framework/archive/refs/heads/master.zipForum: Plugins
In reply to: [Redux Framework] Disable ‘Add Widget Area’ formIf this is in a theme you are using, you’ll have to contact the theme author. We do not support themes that use Redux.
Forum: Plugins
In reply to: [Redux Framework] Redux Framework Is Conflicting with WoocommerceThis issue is actually with your theme. Somewhere in the theme is a setting that is controlling this option. When you disable Redux, you disable that option, and Redux takes the blame, when it has nothing to do with the issue.
We do not support themes that use Redux. You’ll need to contact the theme author and ask them which option is controlling this feature.
Good luck.
What counts as empty data? a blank string? null? 0? What if those results are what specific developers want? Filtering them out based on what you may consider empty could cause issues for others. We must consider everyone and backward compatibility.
Use the following filter to manipulate the data to save from metaboxes:
( ‘redux/metaboxes/save’, $to_save, $to_compare, $sections )