Ralf Weber
Forum Replies Created
-
Forum: Plugins
In reply to: [CryptX] Security check failed. Please try againHi @gokeeffe87,
The easiest way would probably be to delete the directory “wp-content/plugins/cryptx” (but only the cryptx directory!) on your web server and then install the latest version from the WordPress repository.PS: A review of the plugin helps other users and me 😀
Forum: Plugins
In reply to: [CryptX] What Setting for Form FieldsHello, sorry for the delay.
You can add the page ID(s) in the “Excluded Post/Page IDs” settings field on the “General” page of the CryptX settings. It’s a comma-separated list if you want to include multiple IDs. This should resolve your issue.Please mark this thread as solved if I was able to help you.
PS: A review of the plugin helps users and me 😀
Forum: Plugins
In reply to: [CryptX] CryptX links missing javascript: in Elementor Text Editor widgetHi @pbmedia,
first of all, thank you for the tip!I was able to reproduce the problem locally on my system when I included an email address in a text in Elementor. However, I haven’t been able to find the cause yet.
BUT, as a first workaround, disabling the widgets in the CryptX settings helped me. If this also works for you, I would appreciate your feedback.
I will still try to find and resolve the cause of this strange behavior.
Forum: Plugins
In reply to: [CryptX] Fatal error: Call to undefined function __doing_it_wrong()Thank you for the feedback. I have fixed the bug in version 4.0.11.
Forum: Plugins
In reply to: [CryptX] Critical Error – Break SiteIt’s great to read that your problem was also solved.
Forum: Plugins
In reply to: [CryptX] Critical Error – Break SiteHello. I’ve released version 4.0.10, which fixes a bug that was causing a critical error. Perhaps this is the same bug you’re experiencing; if so, the new version should resolve the issue. If not, please let me know.
Forum: Plugins
In reply to: [CryptX] Fatal TypeError in processWidgetContentVersion 4.0.10 with the fix is released.
The If statement is there so that the entire method doesn’t have to run if no widget data (false) has been passed.
Forum: Plugins
In reply to: [CryptX] Critical Error – Break SiteI suspect this is the same problem as in this case…
Forum: Plugins
In reply to: [CryptX] Fatal TypeError in processWidgetContentHi @mkoscher
thanks for providing the stack trace.Is it possible, that you edit the code to see, if this solves it?
…/wp-content/plugins/cryptx/classes/CryptX.php
replace the lines 1107 – 1108…public function processWidgetContent(array $instance, $widget, $args): array
{with…
public function processWidgetContent(array|false $instance, $widget, $args): array|false
{
if ($instance === false) {
return false;
}Unfortunately, I couldn’t reproduce the error on my test system, but the change didn’t cause any new problems.
If this resolves the issue, I will release a fixed version as soon as possible.
Forum: Plugins
In reply to: [CryptX] Critical Error – Break SiteHello, I’m sorry you’re having this problem and I hope I can help. I also use CryptX on my own sites, which also use the Divi theme, but so far without any issues.
Did the error email give you any more specific information about the cause?
Perhaps you could tell me which plugins you’re using, then I can try to reproduce the problem, if possible.Forum: Plugins
In reply to: [CryptX] Alternate Linktext not working anymoreVersion 4.0.9 should fix the issue.
Forum: Plugins
In reply to: [CryptX] Alternate Linktext not working anymoreHi,
let me check the reason. I will fix it as soon as possible.Forum: Plugins
In reply to: [CryptX] Security check failed. Please try againHi @kl0082 ,
I also found this warning; it’s already fixed locally on my system and will be available with the next update.
Thanks for the heads-up.
Forum: Plugins
In reply to: [CryptX] Security check failed. Please try againI can only apologize. The check of the _wpnonce field should, of course, only be performed if data has been sent from the CryptX settings page. Why I removed the check from the code before uploading the version remains a mystery to me.
The problem is fixed in version 4.0.8 and should already be available.
Thanks for reporting the problem 👍
Forum: Plugins
In reply to: [CryptX] Use in Elementor’s Icon List widget inserts spaceFirst of all, a quick&dirty css solution for your problem:
ul.elementor-icon-list-items li.elementor-icon-list-item a:first-child {
width: auto;
}The different behavior on your screenshot is easy to explain.
At the “problem” list (top) you have the ‘mailto’-link oh the list element. And on the other “correct” list, you added only the mail as plain text not as a link. So, on the second cryptx could add the mailto correct without changing the elementor html structure.If I think about it, you should try to remove the mailto-link on the top list item, to solve your problem. Can you try this?