hunnicutt77
Forum Replies Created
-
Forum: Plugins
In reply to: [EventCalendar] White screen of death when accessing the pluginI’m having the same issue. Everything is updated. I’ve disabled every other plugin and reactivated one by one and the issue remains. I can see the list of events, duplicate, etc. but when I go to edit, the screen is blank.
Forum: Plugins
In reply to: [Visual Form Builder] My forms suddenly stopped working.Update// no good news…
I created a new site on my multisite installation (not a copy of an existing site).
I created a new form with VFB with one field, the preset ’email’ field and made it required.
When I submit, it’s the same issue, the page refreshes, but there is no on-page confirmation or email sent or entry in the dashboard.
Is it a multisite issue? VFB works great on the dozen other sites I have it on.
Except, it worked 2 weeks ago?Forum: Plugins
In reply to: [Visual Form Builder] My forms suddenly stopped working.Hey nai888…
I’m experiencing the exact same issue as you with MU network and no on-page confirmation, email, etc. Two weeks ago it was all working fine…?
I don’t fully understand what worked for you here:
The one that didn’t work finally did work when I no longer included a textbox which was validating URL and no longer submitted a website starting with “https://”.
Can you be more specific?
I did create a new test form with only one required field, on a new page, and that responded the same.
Thanks so much…
Forum: Plugins
In reply to: [Visual Form Builder] Display Name of User in Entries List#sosimple
Thank you so much…and thanks for posting…
Forum: Plugins
In reply to: [Visual Form Builder] Display Name of User in Entries ListHey IceyD…
What was your fix? I’m looking for the same thing…thanks…
Forum: Plugins
In reply to: [Dropfiles free] Config area errorHey:
It means that you have double colons {::} in your code. It’s actually on 3 lines of the form.php file. – 145/235/264
You have to change line 145 from this:
if(class_exists($class)){ return $class::getfield($input[$field[0]]); }
to this:
if(class_exists($class)){ return $class->getfield($input[$field[0]]); }
And change the
::
to->
on the other two lines as wellI personally still wind up having another issue with line 145 (above)…
Once I do this first fix, I receive an error on the same file, same line:
Fatal error: Call to a member function getfield() on a non-object in /home/anytestm/public_html/wp-content/plugins/dropfiles-free/libraries/form.php on line 145
I can’t seem to figure that one out. When I remove that line of code, the ‘Config’ page shows in the dashboard, but nothing is operable…I’d love some help on that….