-
Posts
601 -
Joined
-
Last visited
-
Days Won
2
Frank Vèssia last won the day on October 16 2022
Frank Vèssia had the most liked content!
About Frank Vèssia
- Birthday 02/02/1981
Contact Methods
-
Website URL
https://frankvessia.dev
-
Skype
frankvessia
Profile Information
-
Gender
Male
-
Location
Italy / Romania
Recent Profile Visitors
9,780 profile views
Frank Vèssia's Achievements
-
YES! Thank you
-
No, I need to sort the fields of the repeater not the values created
-
Frank Vèssia started following 🎉 RockCommerce is Here! 🔥🚀 , Reconfigure repeater fields via api , FrontendForms - A module for creating and validating forms on the frontend and 2 others
-
HEllo, I managed to add a field inside a repeater via api but it's added as last element. I cannot find a way to change the position. this is my function protected function addFieldToRepeater(Field $field, $repeaterName) { $fieldgroups = $this->wire('fieldgroups'); $repeaterFg = $fieldgroups->get("repeater_variations"); if(!$repeaterFg) { $this->error("Fieldgroup 'repeater_variations' non trovato."); return; } try { if(!$repeaterFg->getField($field->name)) { $repeaterFg->add($field); $repeaterFg->save(); } else { $this->message(The field is already present."); } } catch (Exception $e) { $this->error("Error: " . $e->getMessage()); } }
-
Hi, I'm having some trouble trying to set a sender-reply via api $mail->sender_reply('email@domain.com'); I get error Method WireMailSmtp::sender_reply does not exist or is not callable in this context
-
yes is the same as the previous one, I just clone the page and reassing the new one. Very strange...
-
Hello, I'm struggling to understand why this is not working. I'm cloning a page (with children) and assing it as page reference to another page but the page reference don't change. $call = $pages->get(123); $new_report = $pages->clone($report); $new_report->of(false); $new_id = uniqid(); $new_report->title = $new_id; $new_report->name = $new_id; $new_report->save(); $new_report->of(true); $call->of(false); $call->report = $new_report; $call->save(); $call->of(true);
-
Thanks for the fast reply. Yes some translation files were not installed, I didn't check properly, sorry. Mhhm, I already tried that but that page assumes the user is already logged in and ask only for the password for confirmation, there is no way request a deletion for not logged in user. I will try something else, don't worry, it's not a big deal. Regarding custom fields, I checked my text fields but I get a fatal error because they are multilanguage text fields, if I change them to normal text fields it works. Fatal Error: Uncaught TypeError: FrontendForms\Form::add(): Argument #1 ($field) must be of type FrontendForms\Markup|FrontendForms\Inputfields|FrontendForms\Textelements|FrontendForms\Button|FrontendForms\FieldsetOpen|FrontendForms\FieldsetClose, null given, called in /site/modules/FrontendLoginRegister/pages/FrontendLoginRegisterPages.php on line 858 and defined in /site/modules/FrontendForms/Formelements/Form.php:3177 Stack trace:
-
Hey Juergen, great module!! I just discovered it and I'm trying to implement it in one of my websites. Few things if I may: - I can't find the submit button texts inside translation files. - Is there a way to choose the position of the privacy check inside the form? right now it appears on top of everything when usually is at the end. Also I have an external privacy policy but in settings I can only choose an internal page. - I have few input fields text inside my user template (name, surname, age, ecc..) but they don't show up on the settings select - Since my website is also an app for Android and iOs, the app stores ask for a public account deletion link but your system is a private page for the already logged in user. In my other websites I have a form where user can put the email and if the email exists it sends a confirmation via email. Edit: I added a captcha and now the privacy check is at the bottom 🙂
-
I'm looking forward to this and thanks for the added docs!
-
great module, I like the Alpine Front End solution. Questions: - any support for shipment cost with custom rules - discount code - any way to retrive all abandoned carts? - I guess all the customer part is up to the developer, any plan to expand in this direction?