mimioguy
Forum Replies Created
-
Thanks for reaching out. I’ve already implemented an alternative forms plugin because I have a quick turnaround on this project.
The purpose of this review was to point out that multiple server instances don’t work as simply as suggested on your forums, and that there isn’t a direct way to get support from Formidable once your license expires.
License verification just says “too many websites” whenever trying to activate it. Even after de-activating the code on production (which breaks our forms), the staging server still receives the same license verification error messages.
There really is no way to ask for help from Formidable Forms after the expiration of your license without paying more money. There is no “problems” category in the helpdesk any more.
The problem code is located in /plugins/buddypress-global-search/includes/main-class.php
This error can be fixed by changing Line 535 from this:
un = $(this).attr("id");
to this:
un = jQuery(this).attr("id");In addition, if you want to clear the Send To field after clicking on a suggested user, add the following code after Line 501:
jQuery('#send-to-input').val('');This is definitely broken in v1.1.2
Why on earth is BuddyBoss putting raw code from Buddypress (public function messages_autocomplete_init_jsblock) in their main-class.php file and breaking core functionality on the platform?