- Startseite
- Über den Graf
- Impressum
- Video
- Kontaktformular
- Letzte Posts
-
-
-
Recent Posts
- wann wurde sony gegründet?
- was ist ein websocket?
- wie weit sind wir von AGI entfernt?
- Was weißt du über Dorn/Breuss und wie das geht?
- Erkläre einfach was mol aus der Chemie bedeutet.
- Kann man einen Herzschrittmacher von außen hacken?
- was ist beim webscraping über python anders als mit go?
- Erstelle ein Bash-Script, das den aktuellen Ordner automatisch als tar.gz-Datei mit Zeitstempel im übergeordneten Backup-Verzeichnis sichert.
- Wie mache ich aus einem Go-Projekt eine Android App?
- Wie backt man tolles leckeres Brot?
- Gib mir eine Einführung in Rust in etwas einfacherer Sprache, aber dennoch mit fortgeschrittenen Konzepten und Metaphern. Mach das ausführlich.
- Gib mir eine Einführung in Golang in etwas einfacherer Sprache, aber dennoch mit fortgeschrittenen Konzepten und Metaphern
- Gib mir eine Einführung in aktuelles CSS in einfacher Sprache und mit schönen Metaphern
- wer waren die konquestadores?
- was ist mit den G3 der bundeswehr passiert?
- AI-Antwort vom 24.12.2024
- Sonnenaufgang
- mini
- Reifen flicken
- Das europäische Tastaturlayout
-
-
-
- Datenschutzerklärung
What you need:
The obvious things:
Mautic InstallationFluentForm PluginFilezilla
Mautic Fluent Integration:
Like described herePlugin: here
The short of it
1. Create some Mautic custom fields. Alias will be needed later2. Open the file wp-content/plugins/mautic-for-fluent-forms/Integrations/Bootstrap.php from “Mautic Fluent Plugin” in your FTP3. Look around line 1384. Change entries as you wish5. Safe, upload6. Enjoy your new matching possibilities in your integration form.
Bootstrap.phppublic function otherFields() { // BIND STATIC CAUSE SOME FIELDS ARE NOT SUPPORTED $attributes = [ “title” => “Title”, “firstname” => “FirstName”, “lastname” => “Last Name”, “company” => “Company”, “position” => “Position”, “phone” => “Phone”, “mobile” => “Mobile”, “address1” => “Address1”, “address2” => “Address2”, “city” => “City”, “zipcode” => “Zipcode”, “country” => “Country”, “fax” => “Fax”, “website” => “Website”, “facebook” => “Facebook”, “foursquare” => “Foursquare”, “googleplus” => “Googleplus”, “instagram” => “Instagram”, “linkedin” => “Linkedin”, “skype” => “Skype”, “twitter” => “Twitter”, “betreff” => “Betreffzeile”, “body” => “Mailbody” ]; return $attributes; }