Kev Provance
Forum Replies Created
-
Forum: Plugins
In reply to: [Redux Framework] Critical error after updateSorry, but ‘same here.’ doesn’t tell me anything. You can start with the specific error, the name of the theme. I would also recommend downloading v4.3.23 from here https://github.com/reduxframework/redux-framework/archive/refs/heads/master.zip in the event the error pertains to the custom_fonts extension.
As we have no control over what theme authors do and have no access to premium themes, you’ll also advise the theme author of the error so they can remove the custom_fonts extension from their theme.
Forum: Plugins
In reply to: [Redux Framework] fatal error after latest updateAlso, you could try manually installing v4.3.23 from our repo and see if that stops the error. It *should* help, but as I don’t have access to the theme, it’s guesswork until they remove the outdated version.
https://github.com/reduxframework/redux-framework/archive/refs/heads/master.zip
- This reply was modified 3 years, 7 months ago by Kev Provance.
Forum: Plugins
In reply to: [Redux Framework] fatal error after latest updateYou’re going to have to contact the theme author and have them remove the custom_fonts extension as it’s now part of Redux. As I do not have access to the theme, there isn’t much else I can do.
Forum: Plugins
In reply to: [Redux Framework] Critical error when updating optionsYou’ll need to contact whoever does support for your web hosting and ask them to enable the PHP ‘ctype’ extension. It’s supposed to be installed and enabled by default. In your case, it isn’t and thus the issue.
Good luck!
Forum: Plugins
In reply to: [Redux Framework] Color setting homepage overwrittenIt sounds as if they are embedding Redux 3.
Redux 3 has been sunset and is no longer supported or maintained. It also contains several security issues. You will need to contact the author of your theme and suggest in very strenuous terms they update Redux, immediately.
Be advised, you are using a premium theme, and support for those here in this forum is not allowed, per WordPress guidelines. We also don’t support individual themes as we didn’t write them and cannot debug them.
Good luck.
Forum: Plugins
In reply to: [Redux Framework] Color setting homepage overwrittenYou have the Redux demo enabled. In the admin screen, click Settings and select Redux. At the top is a link to disable the demo panel. Click that. This will disable the demo and remove the output from the demo panel.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Jetpack SocialSo…you took a feature that used to be free and now are trying to cash in on it. Bad form. And please, spare me the “But you get 30 a month free” justification for ‘ungifting.’ Y’all had to know you were going to alienate some users and didn’t much care.
Forum: Plugins
In reply to: [Redux Framework] Critical Error When redux InstalledAlso, please be advised if you are using a version this theme updated before September of this year, there was an issue with their support plugin and Redux’s Social Icons extension that causes a critical error when activating Redux. It has been fixed on their end. Please ensure you are using the latest version of that theme by checking their ThemeForest page. As support for premium themes is not permitted here via WordPress posting guidelines, that is all I can advise you to do.
Please post back here if the update has fixed the issue. If not, I will need to know the specific error message.
Forum: Plugins
In reply to: [Redux Framework] Critical Error When redux InstalledHi,
I’ll need you to be specific about the error message, as ‘critical error’ is too vague and doesn’t tell me anything. Once I have this information I can tell you if it’s theme-related. In 99.9 percent of these cases, it’s usually the theme, and Ekko is a theme that has problems with this. There are several past posts where this has been an issue, and it’s been a problem with the theme.
Thanks.
Forum: Plugins
In reply to: [Redux Framework] my repeater field return nothingYou’ve got the grouped_values arg set to false. This means the variable you are attempting to access will, in fact, be empty.
To get the values, you’ll have to access the repeater’s field IDs directly:var_dump($settting['title_field']);To understand the difference of the two modes and how to access the data, see the help page for the Repeater field: https://devs.redux.io/core-extensions/repeater.html
Good luck.
- This reply was modified 3 years, 7 months ago by Kev Provance.
Forum: Plugins
In reply to: [Redux Framework] Redux Framework WarningIt means that for whatever reason, your site isn’t able to connect with the CDN. I just checked the CDN directly and through my install of Redux and everything is operating as expected. Perhaps it was temporarily down at the time.
Forum: Plugins
In reply to: [Redux Framework] my repeater field return nothingThe first thing I would do is get rid of the extension. It’s no doubt outdated. Repeater is now part of the Redux core. Please make sure you are using the latest version of Redux and attempt the code again. If the problem persists, I will need you to post your ENTIRE options config so I may try it here.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Jetpack CommentsOkay, I discovered the problem. It’s a conflict with the WPBruiser plugin (https://wordpress.org/plugins/goodbye-captcha/). It looks as if that plugin has been abandoned.
To make the two work together, one will have to disable the “Protect Comments Form” in the WPBruiser > WordPress options.
FYI for anyone experiencing this issue.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Jetpack CommentsUpdate: I ran the theme (one I wrote…I do this professionally) and also tried it against the twenty-twenty-two theme on another install and received the “nonce verification failed.’ message, which I see has been an ongoing issue.
Fortunately, I have PHP debugging experience. The reason this happens is that the nonce generated at page load is not the same nonce that Jetpack checks again upon submission.
Upon further digging, the nonce is different because wp_get_current_user fails upon submission, and returns 0 as the user_id when it is typically something else at page load (in my case, 2).
I’m not sure why the wp_get_current_user fails upon submission. Hopefully, the developers can figure it out. For posterity, I checked this not only with my theme but also twenty-twenty-two. Both produced the same error for the same reasons.
I’m seeing this too. Fortunately, I have PHP debugging experience. The reason this happens is that the nonce generated at page load is not the same nonce that Jetpack checks again upon submission.
Upon further digging, the nonce is different because wp_get_current_user fails upon submission, and returns 0 as the user_id when it is typically something else at page load (in my case, 2).
I’m not sure why the wp_get_current_user fails upon submission. Hopefully, the developers can figure it out. Fort posterity, I checked this not only with my theme but also twenty-twenty-two. Both produced the same error for the same reasons.