Michael Simpson
Forum Replies Created
-
Forum: Plugins
In reply to: [Community Yard Sale] Results not showing@howardowens thanks for letting us know.
Forum: Plugins
In reply to: [Contact Form DB] Trying to save a custom form to the dbI have no idea what those columns are. How are you creating your form? Are you using a plugin or putting HTML in your post?
Forum: Plugins
In reply to: [Community Yard Sale] Results not showingYou can contact me for support off-line at info@cfdbplugin.com
And of course, esmi’s warning is entirely correct.
Forum: Plugins
In reply to: [Contact Form DB] Trying to save a custom form to the dbI don’t know what _TCM_Cache_Query_2 is. Do you have some caching plugin that might be interfering?
Forum: Plugins
In reply to: [Contact Form DB] My messages don't arriveForum: Plugins
In reply to: [Contact Form DB] cfdb is not saving page title and urlI don’t have an answer as to why the sticky form does not have the data. I suppose that when CFDB asks CF7 for that information (by calling its function wpcf7_special_mail_tag), CF7 does not provide a value in that situation.
Forum: Plugins
In reply to: [Contact Form DB] Filter on Meta FieldVery nice.
Forum: Plugins
In reply to: [Contact Form DB] Does sorting must be case-sensitive ?Be careful not to have curly-quotes in the shortcode.
Forum: Plugins
In reply to: [Contact Form DB] Does sorting must be case-sensitive ?It doesn’t have an option directly. But you could try making a temporary field will everything uppercase then sort by that.
If you are sorting by field “last_name”, create last_name_uc field and sort by that.
[cfdb-table form="myform" trans="last_name_uc=strtoupper(last_name)&& SortByField(last_name_uc)"]Forum: Plugins
In reply to: [Contact Form DB] PHP7 Compatibility?The mysqli stuff is code is OK b/c it supports both mysqli and deprecated mysql with an “if” that makes it use the right one so that is both forward and backwards compatible. Whatever you ran is picking on the backwards compatible code but the correct new mysqli code is also there.
The first warning about the old constructor is actually in a test code file which doesn’t actually run on your site, but I’ll update that for good measure.
Forum: Plugins
In reply to: [Form to Post] Why not add tax_input to the $simpleFields array?Sure.
I made you a committer. You can make changes to the following branch in isolation, then I can merge it in when we think it is ready.
http://plugins.svn.wordpress.org/form-to-post/branches/0.1-MarcGuay
Forum: Plugins
In reply to: [Contact Form DB] Filter on Meta FieldThe plugin doesn’t support that directly.
You might be able to do it by coding your own custom filter function.
Forum: Plugins
In reply to: [Community Yard Sale] Results not showingI put your 2 shortcodes you listed above here:
http://michaelsimpson.xyz/2016/07/29/yard-sale-entry/
http://michaelsimpson.xyz/2016/07/29/yard-sale/I don’t see the error. I’m still unclear what is different about your site.
Forum: Plugins
In reply to: [Community Yard Sale] Results not showingThe plugin takes the address and sends it to Google Maps to get a lat/long value to place the marker on the map. If Google Maps gives something wrong for the input address, I can’t control that.
I don’t know why you see the duplicate notification. I looked at the code. It queries the database for an exactly same entry (all the same values entered in the form).
I suggest change the event value in both of your shortcodes to start with a fresh data set. Or you could look at your database table to see what is there (table wp_yardsale).
Forum: Plugins
In reply to: [Contact Form DB] Display both ID and Name of a downloaded fileCFDB captures whatever the name is given to it by the front end form plugin. I’m not aware of cases where the file has a different name than when it is uploaded. What form plugin are you using and what is your form definition like?