jhwardjr
Forum Replies Created
-
Same error for me. Crashes my site when this plugin is installed.
AiloraBlue:
I had the same problem. To change the value of the Recipient field which is greyed out for some reason and not accessible in the setup menu do the following.
Here is how I fixed this on my website.
Go to the mySQL database that was installed by WordPress. Using a mySQL tool like phpMyAdmin look for the Table xxxx_options. The xxxx is the prefix that was used when then WordPress was installed. The default for many installations is wp_ so if you did a default installation look for the Table wp_options.
Click on this Table to see the values stored in this Table. This Table stores a lot of WordPress parameters so be careful what you change.
You are looking for the Row that has the option_name of
wp-greet-fields
the next field is option_values and it is a set of 6 digits (something like 111110)
These digits correspond to the options in the setup screen
First digit is a 1 so the Sendername is Mandatory
Second digit is a 1 so the Sender is Mandatory
Third digit is a 1 so the Recipientname is Mandatory
Fourth digit is a 1 so the Recipient is Mandatory
Fifth digit is a 1 so the Subject is Mandatory
Sixth digit is a 0 so the Message is NOT MandatoryWhat you see may be different based on the values you have checked on the Setup Screen.
To turn off the Recipientname change the third digit to a 0
Save the change and the Recipientname is no longer Mandatory when sending emails.
You also may want to remove this field from the Email Form that is located in
wpg-form.php
So the Recipientname is not displayed on the screen.
Hope this helps.
jhwardjr