Jump to content

csaeum

Members
  • Posts

    37
  • Joined

  • Last visited

Everything posted by csaeum

  1. I believe in my last post that is not coming over like this. Would you also make the form so or not? Or should it create directly without access to the API, but would have to be the same right? Yesterday I wire mail yet installed. When I validate the fields on the Foundation ZURB Framework by CSS (right inputs) and then dispatch and then this einpacke in a mail via Wire mail, then surely it should be good right? Or should I check it again and only then passed to Wire mail. Has anyone even tips or a HowTo for me? Thanks, people
  2. ok here is my solution to this time: <form action="./kontakt/" method="post"> <div class="row"> <div class="small-12 medium-12 large-12 columns"> <div class="input-group"> <span class="input-group-label">Name</span> <?php $field = $modules->get("InputfieldText"); $field->attr('id+name','klientname'); $field->attr('type','text'); $field->attr('class', 'input-group-field'); $field->attr('placeholder', 'Max Mustermann'); $out = $field->render(); echo $out; ?> </div> </div> </div> <div class="row"> <div class="small-12 medium-12 large-12 columns"> <div class="input-group"> <span class="input-group-label">E-Mail</span> <?php $field = $modules->get("InputfieldText"); $field->attr('id+name','klientemail'); $field->attr('type','email'); $field->required = 1; $field->attr('class', 'input-group-field'); $field->attr('placeholder', 'Max@Mustermann.de'); $out = $field->render(); echo $out; ?> </div> </div> </div> <div class="row"> <div class="small-12 medium-12 large-12 columns"> <div class="input-group"> <span class="input-group-label">Telefon</span> <?php $field = $modules->get("InputfieldText"); $field->attr('id+name','klienttel'); $field->attr('type','tel'); $field->attr('class', 'input-group-field'); $field->attr('placeholder', '+49 9876 54321'); $out = $field->render(); echo $out; ?> </div> </div> </div> <div class="row"> <div class="small-12 medium-12 large-12 columns"> <div class="input-group"> <span class="input-group-label">Nachricht</span> <?php $field = $modules->get("InputfieldTextarea"); $field->attr('id+name','klientmessage'); $field->attr('type','text'); $field->attr('class', 'input-group-field'); $field->attr('placeholder', 'Ihre Nachricht an mich'); $out = $field->render(); echo $out; ?> </div> </div> </div> <div class="row"> <div class="small-12 medium-12 large-12 columns"> <?php $field = $modules->get("InputfieldSubmit"); $field->attr('id+name','submit'); $field->attr('value','Nachricht senden'); $field->attr('class', 'button'); $out = $field->render(); echo $out; ?> </div> </div> </form> Now the question is how can I email so arrive this data with me. In a further expansion step, it should be perhaps stored in a database table.
  3. Ok I've been through some forum posts savvy as I am building a form. Unfortunately, the output content is no longer compatible with the ZURB Foundation Framework. Therefore, I have seen in a further contribution that you can generate each field installation without the additional content. In this post, it is shown how it is implemented and not a bug and not a box appears with me. <?php "<div class='row'>" . $form->get('email')->render() . "<div>" ?> Is this approach correct? Or it must be implemented differently. <form action="./kontakt/" method="post"> <div class="row"> <div class="small-12 medium-12 large-12 columns"> <div class="input-group"> <span class="input-group-label">Name</span> <input class="input-group-field" type="text"> </div> </div> </div> <div class="row"> <div class="small-12 medium-12 large-12 columns"> <div class="input-group"> <span class="input-group-label">E-Mail</span> <input class="input-group-field" type="email"> </div> </div> </div> <div class="row"> <div class="small-12 medium-12 large-12 columns"> <div class="input-group"> <span class="input-group-label">Telefon</span> <input class="input-group-field" type="tel"> </div> </div> </div> <div class="row"> <div class="small-12 medium-12 large-12 columns"> <div class="input-group"> <span class="input-group-label">Nachricht</span> <textarea class="input-group-field" type="text"></textarea> </div> </div> </div> <div class="row"> <div class="small-12 medium-12 large-12 columns"> <input type="submit" class="button" value="Submit"> </div> </div> </form> My form should look like at the end so the fields and should when it comes to integrated via API. Thanks for your patience and assistance
  4. Ok thank you've looked at the free module times but to me it is still too little in the control well is it for 2.2. I want to remain flexible and secure update. That's just my problem in the existing CMS system. Where can I find a small form which is reacted with the API. This should be an email entered by the data. Since I'm not a developer (but trainable) tells me the API very little. Thank you for your help.
  5. Hello I am looking for Gerde a way convenient to create a contact form and submit this via email and or perhaps even to save to a file or table. As 2nd I'm still looking for a way a form on a separate page to address this but by PW validate directly. My newsletter senders Newsletter2Go offers here a form directly (you can embed the code directly) I would just recreate the form in order to respond to errors and only submit if it fits. How would you do it? I thought at first with SimpleForm can something but the project is something else. The API way I still do not understand properly. Therefore, the question of how you do it, or if there is another module for this purpose! Greetings and thank you
  6. Thank you Joss and LostKobrakai I'll try it Koala or Scout. Let's see if I can refresh my php skills so well again. The best would be to not compiled data list in a Textares and to edit and then send the save by the compiler and thus to secure the Templates folder.
  7. Ok but there must also go directly into the system and not only to the local PC and in the development environment? What tools I would need as integrate? Sorry'm really Noob!
  8. So hi another question for you. I did my first page bootstrap and ProcessWire almost finished. The next page I want to do with files of ZURB Foundation and the compiled CSS. In the system before, there was to a finished module. This is available for PW Yes net and I would therefore incorporate Foundation itself. With normal data not a problem but with SASS already. How should we proceed so that the PW CSS files always kompliert and then stores? Would be grateful for tips and suggestions as I am not a PHP programmer. Thanks for help Chris
  9. Ok thanks I really wanted to avoid but you're right. To make things right for the future I have to go the hard way and explain the Google Redirects and thus it convert better. Thanks for the help and the tip. I JumpLinks (http://modules.processwire.com/modules/process-jumplinks/) removed because the last update in January was thus seemingly well maintained.
  10. Hello So first my first question. I want to change my current websites on ProcessWire and since my current CMS (Contao) all URL's would end with .html now answered all questions with 404th Hence my question how to put it to .html? The / at the end I have found and shut down.
  11. Ok, thanks guys I wanted to first get an overview of advice from me to you. Before we discuss here now all I'm more time to each topic and to contribute so we can discuss everything individually even if it then first are some themes from me.
  12. Hi Folks, I am new to ProcessWire. I'd love to get some suggestions from you as I can implement certain things. Looking for the best MenuModul which I can build my menus quickly individually. I currently have installed "Markup Menu Builder" but here I still get an error that has already been called on Github 2x. But unfortunately, no response from the developer. Then I "AIOM + (All In One Minify) for CSS, LESS, JS and HTML" for better speed and then I've got "MarkupSEO" for better SEO submissions. Then I look for the time being a module that reads RSS feeds and outputs as their own content on the page. With a further link to you but then come to the actual original page. The RSSFeed content should appear as a blog or news with me. Finally, I would like to how to best implement a blog with more proposals Pingbacks & Trackbacks etc. Thank you for your help. greeting Christian ================================================================================================= Hallo Leute ich bin neu bei Processwire. Ich würde gerne ein paar Vorschläge von euch bekommen wie ich gewisse Sachen umsetzen kann. Ich suche ein gutes MenuModul womit ich meine Menus schnell individuell aufbauen kann. Ich habe derzeit "Markup Menu Builder" installiert aber hier bekomme ich noch einen Fehler der schon 2x auf Github genannt wurde. Aber leider keine Reaktion vom Entwickler. Dann habe ich "AIOM+ (All In One Minify) for CSS, LESS, JS and HTML" für bessere Geschwindigkeit und dann habe ich noch "MarkupSEO" für bessere SEO Eingaben. Dann suche ich vorerst noch ein Modul das RSS Feeds einliest und diese als eigenen Content auf der Seite ausgibt. Mit einen weiteren Link soll man aber dann auch auf die eigentliche Original Seite kommen. Der RSSFeed Content soll bei mir als Blog oder News erscheinen. Als letztes möchte ich gerne noch Vorschläge wie man am besten einen Blog mit Pingbacks & Trackbacks usw umsetzt. Danke für eure Hilfe. Gruß Christian
×
×
  • Create New...