Jump to content

Luis

Members
  • Posts

    295
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Luis

  1. soma....I owe you some beer, coffee what ever
  2. Hiho, is anyone playing around with this plugin? http://code.exacttarget.com/devcenter/fuel-ux/datagrid I´m building a PW driven financial app and trying to integrate the datagrid into my overview template. Would make it much more easier to sort and display the populated data. But this plugin is driving me nuts. I don´t get it how to build the datastream.js Maybe someone got an idea?
  3. look at this thread for User generated content. http://processwire.com/talk/topic/2174-writing-from-front-end-to-back-end/ I think there is a thread about user login somewhere in the forums. Look into the module section for a password module. All your requirements could be done with PW. But it´s a lot of self coding. PW its just a tool.
  4. Regarding to the post onjegolders made, I made a little form to create new pages. I think from this point it would not be hard to add more functionality. <?php /** * Page template * */ include("./head.inc"); echo $page->body; $success_message = "<h3 class='success'>Saved</h3>"; $success = false; // we assume it and set to true if form sent $error = false; // set and sanitize our form field values $form = array( 'name' => $sanitizer->text($input->post->name), 'title' => $sanitizer->text($input->post->title) ); $required_fields = array( 'name' => $input->post->name, 'title' => $input->post->title ); // check if the form was submitted if($input->post->submit) { // determine if any fields were ommitted or didn't validate foreach($required_fields as $key => $value) { if( trim($value) == '' ) { $error_message = "<h3 class='error'>Please check that you have completed all the required fields.</h3>"; $error = true; } } // if no errors, create a new page if(!$error) { $p = new Page(); // create new page object $p->template = 'basic-page'; // set template $p->parent = wire('pages')->get('/about/'); // set the parent $p->name = $input->post->name; // give it a name used in the url for the page $p->title = $input->post->title; // set page title (not neccessary but recommended) $p->save(); //create the page // populate fields $p->summary = 'Variable here'; // Populate a field $p->body = 'Variable here'; //Populate a field $p->save(); //save the populated fields echo $success_message; echo 'id: '.$p->id.'<br/>'; echo 'path: '.$p->path; } } ?> <?php if(!$success) { ?> <?php if($error) { echo $error_message; } ?> <form action="./" method="post" id="submitform"> <fieldset> <label for="name">Name *</label> <input type="text" name="name" value="" value="<?php echo $user->name; ?>" autofocus required /> <label for="email">Title *</label> <input type="text" name="title" value="" required /> <input type="submit" name="submit" value="submit" /> </fieldset> </form> <?php } else { echo $success_message; // testing echo 'id: '.$p->id.'<br/>'; echo 'path: '.$p->path; ?> <?php } ?> <?php include("./foot.inc"); ?> works on my localhost.
  5. Luis

    Houghton Academy

    Hey Ryan, great work, but there is one point I don´t think it´s the best solution. At the Homepage the welcome video looks like interrupting the flow. I can´t really describe the feelings, but it feels a little bit wrong there, have u tried to put it at the left side and the two text boxes at the right? And like AnotherAndrew just said, plz provide some screens from the admin
  6. I just signed up for Gamification #gamification - a free @coursera online class. Join me at https://t.co/d3CtgioL

  7. MacMini ausgepackt, angeschlossen, angeschaltet, Works! Warum kann nicht alles so einfach sein?

  8. Just Transform the Photo -> Flip Horizontal
  9. Try to lighten the background a little up, would improve readability. Have you tried to flip your homepage foto horizontal? Could be nicer when u are looking towards the content and not to the browser border. But all in all nice portfolio, simple and focus on your work
  10. Neuer Kurs, neues Glück. Human-Computer Interaction begonnen. Danke an #coursera und die #Stanford University für die Möglichkeit.

  11. Hey, will do some little work this week on the site profile. I decided to switch the template from semi fluid to a static width. I think for a basic profile it´s not necessary to use the fluid grid and it would make some things easier. Next step will be the checkout process. @ Apeisa: Found some issues in your module, there are many hardcoded english sentences in it, I think it would make it hard for unexperienced end-users to edit them. I think it would be helpful to let the user set them up in admin backend. Do you see a option to implement this feature? @anybody interested: I´m using the great Ergo admin template for the backend. Is there a way to modify the home page of the admin to quick add a product? Think it would enhance the usability if we provide some shop functions directly on the admin entry page, like adding a product, statistics, stuff like this. Will do a post after uploading the next update.
  12. #seoko wurde zur Website des Jahres gewählt. Erste Auszeichnung für eine meiner Kreationen. Etwas #stolz ;)http://t.co/Z7rUNbz3

  13. In 2 Wochen geht's los. 1 Monat einziehen in den #adlerhost bei #coworkingka ich freu mich

  14. New Client, #wordpress or #processwire ? #processwire ! Fast, simple and easy to build. Thx @rc_d for this great tool

  15. Found some time today to work on the Template. - added PW Logo and claim in the footer / inspired by diogo from pw logo thread - worked on the product detail page / text is actually hardcoded, will implement fields soon - added an blue ribbon to products marked as topseller I will focus on the checkout in the next update. Hope you like it.
  16. Neu, schneller, besser und intuitiver http://t.co/i90skhHV relaunch geglückt. Site made by me :)

  17. Hi, thanks for the feedback. Never thought about this really important problem. Agree Agree I think the best way to contribute will be the official logo + slogan somewhere in the footer section.
  18. Testing the New #Windows. Metro UI is very confusing. Especially in multi monitor environment. Plz @microsft dont make me think :(

  19. #f1sky gleich geht's los. Vettel Sieg! Brötchen sind geschmiert. Schönes #f1frühstück

  20. iPhone5 ist endlich angekommen. Byebye 3gs. Spiele jetzt seit einer Stunde rum und bin sehr zufrieden

  21. uploaded as logo here: http://process.besser-landen.de
×
×
  • Create New...