huangcq
Forum Replies Created
-
Thanks!
But, although it doesn’t create separate columns for each group instance anymore, only the first value of each field is saved. For eg, say I have a field group that represents a person and has 2 fields – First name and Last name, and I submit 2 persons “Bob Jones” and “John Smith”, the Google sheet’s row will only have one “First name” column with value of “Bob” and one “Last name” column with value of “Jones”. “John Smith” is completely missing.
I’ll try to debug this myself but would be good if you have a look as well. Thanks.
- This reply was modified 10 months ago by huangcq.
Ah, okay thanks!
Found the problem. I didn’t enable the Google Sheets API.
There you go: https://drive.google.com/file/d/1tu3h53X_y2J8bjJPNiSRJtkg1Quh0dqj/view?usp=sharing
Although the export file doesn’t seem to include the integration details?Thanks for your detailed guidance. I actually did try to deactivate a few recently installed plugins that I thought might have caused this, but didn’t have any luck.
Ended up doing what you suggested, starting with deactivating all plugins one by one. Fortunately didn’t have to go too far before finding out it’s the “WordPress File Upload” plugin! I guess it must have been recently updated.
Thanks again for your help!
Okay I neglected to mention that for both required and optional selects I was entering a space character for the placeholder. That’s how I got the first option pre-selected for optional select, and a “Please select an option” text for required select. Basically I just want a blank placeholder.
I’ve since worked out I can get the desired result (of a blank placeholder) by entering “ ” instead of a space character. Not ideal but that’ll do for now ??
Also, if it’s “required”, I can’t leave the placeholder field blank, and I can’t create a blank option. It seems that there is no way to blank out the field at all, be it required or optional. That’s very counter-intuitive.
- This reply was modified 11 months ago by huangcq.
Nope. All good now. Thanks!
Doesn’t work for me.
I got it working with the following CSS:
.forminator-ui.forminator-custom-form[data-design=material] .forminator-field-date .forminator-input--wrap { margin-left: -26px !important; padding-left: 36px !important; } .forminator-ui.forminator-custom-form[data-design=material] .forminator-field-date .forminator-input--wrap input { margin-left: -36px !important; padding-left: 26px !important; } .forminator-ui.forminator-custom-form[data-design=material] .forminator-field-date .forminator-icon-calendar { margin-left: 0px !important; } .forminator-ui.forminator-custom-form[data-design=material] .forminator-field-date .forminator-error-message { margin-left: -26px !important; }
Sorry, just in case you were wondering, I got rid of the indent using the following custom CSS:
.forminator-input-with-icon [class*=forminator-icon-]:last-child { margin-left: 0px; }
So you wouldn’t see the indent now in the page I sent you.- This reply was modified 11 months, 1 week ago by huangcq.
Here’s an example:
https://cmcnz.org.nz/northshore-online-transfer-offering-form/As you can see the datepicker has a left margin.
From devtools I can see that the “forminator-icon-calendar” class for the datepicker has a margin-left of 10px, and that is definitely not CSS from another plugin.
Also it would be nice if the calendar icon is inside the field, like this:
https://docs.webix.com/desktop__datepicker.htmlOr maybe remove the icon altogether, cause the menu pops up when the field is in focus anyway.
Just cosmetic nice-to-haves ??
- This reply was modified 11 months, 1 week ago by huangcq.
Create own, separate labels just for the CSV exports. I don’t see how automatic shortening can be done in a way that works for all cases.
Another option is to allow users to edit the field names (instead of “name-1”, “name-2”, etc), and use the field names as the column labels in the CSV.
Cool! Thanks for the update.
Okay I’ve retested this and it works now. I’m not sure what happened before.
Thanks for your help!
Forum: Plugins
In reply to: [EventON - Events Calendar] Hiding time for an eventBut that would hide time for all events right? Is it possible to hide time just for one event?