wilderbee
Forum Replies Created
-
Forum: Plugins
In reply to: [WPBruiser {no- Captcha anti-Spam}] how to protect custom formsHi, thanks! I’m referring to forms created manually with html <form> <table> code.
Plugin forms are great, I use one that is on your list. But in several instances the layout restrictions are not so helpful. A good ole’ table would tighten it up perfectly (within limits for screen-size responsiveness).
Forum: Plugins
In reply to: [Contact Form DB] filter for exact name but case insensitiveThank you! That is a nice chunk of help. Cannot test until next week, going live with what we’ve got then patch it up on the other side after all else shakes out. Many thanks.
Forum: Plugins
In reply to: [Contact Form DB] filter for exact name but case insensitivePlease, any ideas, anyone, how to to search by exact match but not be case sensitive? Or how to suppress the above error message would do. Or maybe how to force a letter in the input field when the user does not, to prevent the empty-field error message? Or maybe how to require that field (or rather two fields at the same time) have something in it before a search will run? Any workarounds? Have come a long way but always there is more, PHP/Java is yet on my horizon. Thank you!
Forum: Plugins
In reply to: [Contact Form DB] reverse chron order, sort by date timeOkay, thank you, I will follow up on that. Will post again if I get a solution. There is time before the amount of data catches up to critical for the reverse chron — going with the scrollbar which is more important for now.
Forum: Plugins
In reply to: [Contact Form DB] reverse chron order, sort by date timeUnfortunately no. Receive data order desired but lose the shading for alternate rows. At end of data instead of a scrollbar it displays the code following the ‘aaSorting’:[] as if the code broke there? Have searched the aaSorting term and syntax appears to be correct. If I move it to another location in the dt_options string (with separating comma) then the code breaks at that new location. I do not know dt_options, had picked the phrase from CFDB documentation, your help very much appreciated!
In case it could make a difference in Submitted date formats, data source is “Fast Secure Contact Form” not “Contact Form 7”.
Forum: Plugins
In reply to: [Contact Form DB] reverse chron order, sort by date timeFurther testing today isolated the offending phrase, it is the one that adds the scrollbar — which I was thrilled to discover as scrollbar is essential.
”’dt_options=”bJQueryUI:true, sScrollX:’100%’, bScrollCollapse:true” ”’
So I believe the question has evolved to how to get a scrollbar that does not disable the sort order?
Many thanks! Code below:”'[cfdb-datatable form=”myform2″ dt_options=”bJQueryUI:true, sScrollX:’100%’, bScrollCollapse:true” id=”myid” style=”#myid td { font-size: 140%; }” show=”Submitted,date_time,Last-Name,First-M,Company,Address,City,State,Zip,Phone,from_email,akismet,Submitted Login,ip_address,email_to,name_to” headers=”email_to=Record Emailed To,name_to=Staff Name,ip_address=IP Address,Submitted Login=Login ID,date_time=Date Declared,akismet=Akismet” orderby=”Submitted DESC” ]”’
Forum: Plugins
In reply to: [Contact Form DB] filter for exact name but case insensitiveStumbled upon something called strtolower. Works — except when corresponding input field is left empty returns big error message “Warning: strtolower() expects parameter 1 to be string, array given in …” No harm to functionality, just ugly and scary to users. Is there a way to avoid/suppress that message — or another method to do an exact match that is not case sensitive?
‘<form action=”” method=”POST”>Zip Code: <input type=”text” name=”zip5″ /> Last Name: <input type=”text” name=”last-name” /> First Name: <input type=”text” name=”first-m” /> <input type=”hidden” name=”x” value=”1″/> <input type=”submit” /> </form>’
‘[cfdb-datatable form=”my-form2″ show=”date,last-name,first-m,city,state,zip5″ filter=”zip5=$_POST(zip5)&&strtolower(last-name)=strtolower($_POST(last-name))&&first-m~~/$_POST(first-m).*/i&&intval(1)=$_POST(x)” ]’
Forum: Plugins
In reply to: [Fast Secure Contact Form] Display Submit Button in line with previous fieldYes, frustrations then joy of working it out. Everyone on a learning curve. Have you worked with margin? Safest to always use it in the format of
margin: 0 0 0 0;
Each zero is a placeholder for (clockwise) top; right, bottom, and left margins. Substitute your values for each placeholder. They can be positive or negative! Decimals are okay too! Units can be % or px or em (% is recommended for best response to screen sizes). This gives amazing placement control of elements but requires incremental testing to find the right value or combination of values for your situation.Play with it. Always put a value for each of the four directions, if only a zero, otherwise it may get confused. I knew the -12% example above would move it way to far upwards. Intended to clearly show a movement as small values can be very subtle.
If your submit button is too big, change the font-size as % or px or em. On the [Style] tab, the settings for my “Submit button” are:
cursor:pointer; margin:-2% 0 0 0; font-size:100%; font-weight:normal; color: #222222; background-color:#FFFFCEHope it works out.
Forum: Plugins
In reply to: [Fast Secure Contact Form] Display Submit Button in line with previous fieldMy workaround below. Play with the percentage. On my site, the % holds relative position when the screen is resized. Interested to know if it helps you.
On the form [Style] tab:
Submit DIV:
margin: -12% 0 0 0; float:right;Submit button:
color:black; background-color:red; border:gray;Forum: Plugins
In reply to: [Fast Secure Contact Form] Reset button not clearing fieldsThank you. My demo is using the href workaround in lieu of a Reset button. This 3-step form will soon be moved (or recreated) on a standalone WordPress site (i.e. not multiuser). Will update if or not that fixes the Reset button for us.
Forum: Plugins
In reply to: [Fast Secure Contact Form] remove, hide, disable Submit buttonOnly a workaround that is subject to wayward clicks. Thus not truly resolved but can let it rest for now. Thank you.
Forum: Plugins
In reply to: [Fast Secure Contact Form] remove, hide, disable Submit buttonIn case it helps someone else, my workaround is to move the Submit button out of the way and make it invisible. Hopefully it will not get mistakenly clicked but have defined the redirection in case it does. Thus for my Form3 which is only for printing:
FSCF> Form3> Styles> Submit DIV:
margin: -5% 0 0 0; float:right; (moves it up and to the right)FSCF> Form3> Styles> Submit button:
color:transparent; background-color:transparent; border:transparent;Forum: Plugins
In reply to: [Fast Secure Contact Form] Reset button not clearing fieldsAs a workaround I removed the Reset button from all three forms in the 3-step set. Each form now has an href link labeled “Click HERE to clear the form”, “Click HERE if you prefer to cancel”, “Click HERE to clear the screen after printing” — all of which for now return to a blank Form1. Serves well enough for the today’s demo. Maybe later make my own Reset button but placement might be troublesome.
On Form3 which is only for printing I was able to hide the Submit button. Hopefully it will not get mistakenly clicked but have defined the redirection in case it does.
…….Form3> Styles> Submit DIV:
…….margin: -5% 0 0 0; float:right;
……(moves it up and to the right)
…….Form3> Styles> Submit button:
…….color:transparent; background-color:transparent; border:transparent;Many thanks!
Forum: Plugins
In reply to: [Fast Secure Contact Form] Reset button not clearing fieldsPS running the most recent versions of everything.
Forum: Plugins
In reply to: [Fast Secure Contact Form] Reset button not clearing fieldsOk have turned off all plugins except FSCF and CFDB and Akismet.
The test domain is on a WPMU multisite so other domains on the system are running all plugins. Have tested with two browsers. Have tested with alternate theme (Twenty Sixteen). In addition to my original 3-step form I created a new very simple 2-step form.Consistently finding:
– On any form, at any step, the Reset button is not returned to the screen if the form fails verification.
– On any form that is the LAST form in a set (either 2-step or 3-step) the Reset button will not work at all, with or without captcha filled out, or a fresh captcha requested and filled.
– On a middle form (Form2 of a 3-step set) the Reset button will work, unless that form fails verification and is returned to the screen, in which case the Reset button is not returned to the screen.Any ideas on how to make the Reset work consistently? In this case it is very important to erase form data as many users will be a visitor on someone else’s computer and will not be able to clear cookies, reboot or whatever. (Even if they knew how.)
Also, is there ANY way to turn autocomplete off for these forms — to keep a following person from guessing and recapturing information?
Many thanks.