ofrayechiel
Forum Replies Created
-
Update in case somebody else comes across this:
The issue was not specific to this plugin, but rather on the HTTP server, which was proxied by cloudflare WAF. See this article for information on how to restore the IP address of visitors on the web server: https://developers.cloudflare.com/support/troubleshooting/restoring-visitor-ips/restoring-original-visitor-ips/#web-server-instructions
Done, thank you!
https://wpmudev.com/forums/topic/forminator-pdf-generator-add-on-formatting-group-fields-in-pdf/
- This reply was modified 1 year, 4 months ago by ofrayechiel.
Hi, I’m also using Forminator Pro with the PDF addon and having issues with group fields. I’ve tried searching on the WPMU Hub for relevant topics in the support forums and couldn’t find anything. Where can I find the ticket that was opened there?
Hi Dmytro! Thank you so much!
I’ll note that I’m using the Snippets plugin to add custom code. I’m not sure if the MU Plugins is what handles the <code> element on this line or not. However, once I changed this line:
page_id=<code>#forminator-custom-form-<?php echo($form_id); ?>--page-${page-1}</code>;
to this:
page_id='#forminator-custom-form-<?php echo($form_id); ?>--page-' + (page - 1);
The code started working for me. It specifically hides the save and continue link when clicking previous/next paging buttons (presumably by binding to
'forminator.front.pagination.move'
? What event should I bind to if I also want the link hidden when paginating by using the bar at the top (see image below)?Thank you so much for your help!
Ofra- This reply was modified 1 year, 4 months ago by ofrayechiel.
- This reply was modified 1 year, 4 months ago by ofrayechiel.
Hi, Since there are other plugins experiencing the same issue, would it be possible to share here what resolves the issue?
Thanks in advance! ??
Forum: Plugins
In reply to: [Object Sync for Salesforce] syntax error, unexpected ‘=>’ (T_DOUBLE_ARROW)@jonathanstegall I believe you are correct that line 59 should only run on PHP >= 7.4, but I think PHP will try to compile the line in any case, and then the Syntax Error occurs. In other words, I don’t think the if clause will prevent the PHP 7.3 compiler from throwing the “CRITICAL syntax error, unexpected ‘=>’ (T_DOUBLE_ARROW)” and crashing the site.
I cannot find a better solution so I will try to upgrade my PHP version as soon as possible.
Forum: Plugins
In reply to: [Object Sync for Salesforce] syntax error, unexpected ‘=>’ (T_DOUBLE_ARROW)Update:
My server runs PHP version 7.3.15 (Supports 64bit values)PHP manual states “Arrow functions were introduced in PHP 7.4 ”
Should I downgrade the plugin to the previous version?