-
Posts
384 -
Joined
-
Last visited
Gideon So's Achievements

Sr. Member (5/6)
195
Reputation
-
Hi @Michael PW Dev Welcome to the forum. The LanguageSupportFields Module is a core module that you don't need to download. Just click the install button will install the module and other required modules. Gideon
-
Hi @wishbone Glad that you sorted it out. Keep happy coding with ProcessWire. Gideon
-
Hi @wishbone $form[email] should be $form['email'] Gideon
-
Hi @wishbone Try change the following line to "Reply-To:" . $form[email] . "\r\n" . Gideon
-
Hi @Vincenzo If the folder permission without the execution bit then the affected user cannot enter the folder. Yes. You need to make the /var/www/html folder with the execution bit for user www-data. Gideon
-
Hi @cosmicsafari If I remember correctly, The dropdown value MUST match the the field's settings in FormBuilder. Otherwise FormBuilder won't process the form. I think you have to process the form with one of the formbuilder hook. https://processwire.com/store/form-builder/hooks/ Gideon
- 1 reply
-
- formbuilder
- api
- (and 4 more)
-
Hi @wbmnfktr Welcome to the TailwindCSS party. It is fun and the new always JIT and standalone CLI is awesome. Gideon
-
Hi @Thromisios Welcome to the PorcessWire community. I came from non coder background, too. I first started learning ProcessWire basics by following this tutorial. Gideon
-
Do you check if the form is submitted to avoid double submit of the form?? Gideon
-
Look like it is related to MySQL 8.0.17
-
Hi @Fuzzy No screenshot found and is there any error message you can find from the log? Gideon
-
He needs a A 13-field form and a 13-field form is not a simple contact form IMO. Gideon
-
{solved} find a field from parent pages by ID
Gideon So replied to neophron's topic in General Support
Hi @neophron I think the findIDs function only returns the IDs of the found pages but not full wire page objects. https://processwire.com/api/ref/pages/find-i-ds/ You should try using: <?php foreach ($pages->findMany('id=1223|1224|1225, sort=-created')->children as $item) : ?> or <?php foreach ($pages->find('id=1223|1224|1225, sort=-created')->children as $item) : ?> Gideon -
Hi @wishbone I fully understand your feeling. I came from a non coder background, too. If you are willing to pay for a working contact form. I suggest you to buy Ryan's FormBuilder. Gideon
-
Hi @wishbone Maybe you can take a look at this module. Gideon