Jump to content

thomassausen

Members
  • Posts

    32
  • Joined

  • Last visited

About thomassausen

  • Birthday 05/13/1981

Profile Information

  • Gender
    Male
  • Location
    Bonn, Germany

Recent Profile Visitors

3,754 profile views

thomassausen's Achievements

Jr. Member

Jr. Member (3/6)

18

Reputation

  1. Nice work so far. I was not active in PW-forums for some time, because I suffer on herniated disc (Bandscheibenvorfall). I'm so glad you did this site.
  2. Thanks. And if you want this title on homepage: <title>Company Name - {$parent->title}</title> And on all other sites: <title>{$parent->title} - Company Name</title> ?
  3. So I just want to do comments. I read http://processwire.com/api/fieldtypes/comments/ and this was a good starting point. I want full control of my markup and so <?php echo $page->comments->render();?> is not an option. So I tried <ol id="singlecomments" class="commentlist"> <?php foreach($page->comments as $comment) { if($comment->status < 1) continue; // skip unapproved or spam comments $cite = htmlentities($comment->cite); // make sure output is entity encoded $text = htmlentities($comment->text); $date = date('d.m.Y', $comment->created); // format the date ?> <li class="clearfix"> <div class="message"> <div class="info"> <h2><a href=''><?=$cite?></a></h2> <div class="meta"><?=$date?></div><!-- /.meta --> </div><!-- /.info --> <p><?=$text?></p> </div><!-- /.message --> </li> <?} ?> </ol> And it's working finde. But: 1. I want to add Gravatars, how is the best practice? 2. I want to link $cite to the users website, but how can I achieve this? 3. I want at least paragraphs within $text, in a perfect world ul/ol and links, too.
  4. Nice onepage. Definitely not mainstream. I Like the jquery-movement at portfolio. And good content too. I really like how you inform your clients about pricing and your process.
  5. Without stylesheets? Interesting approach.
  6. You had me at hello. My order (developer licence) was placed successfully.
  7. This works <h1>Category: <?=$page->title?></h1> <? foreach($pages->find("post_categories=$page") as $post)?> <div class="post"> <h2> <? if ($post->body != Null ) { ?> <a href="<?= $post->url ?>"><?= $post->title ?></a> <?; } else { echo $post->title; }?> </h2> etc.
  8. Thanks at all for your great support. Now I'm building my blog. In sidebar I'll output all categories like this: <h3>Categories</h3> <ul class="list categories"> <? $categories = $pages->get("/categories")->children(); foreach($categories as $category) { ?> <li><a href="<?= $category->url ?>"><?= $category->title ?></a></li> <?;} ?> </ul><!-- /.list .categories --> So on click categories.php will load with url like: site.com/categories/categoryname How do I filter the output? I want to show only the right category, guess based on url.
  9. Another framework-question. This time about: Twitter Bootstrap. Each row consists of 12 column. So: <div class="row"> <div class="span6">Content</div> <div class="span6">Content</div> </div> is the way to go. If you need more than two items, you need more rows (margin-issue): <div class="row"> <div class="span6">Content</div> <div class="span6">Content</div> </div> <div class="row"> <div class="span6">Content</div> <div class="span6">Content</div> </div> I did this: <?php $members = $pages->get("/profil")->children(); foreach($members as $member) { $thumb = $member->about_image; echo ' <div class="span6"> <div class="row-fluid"> <div class="span6 doCenter"> <img src="' . $thumb->url . '" alt="' . $thumb->description . '"/> </div><!-- /.span6 doCenter --> <div class="span6"> <h3 class="vmedium">' . $member->title . '</h3> <span class="vitalic">' . $member->about_job . '</span> </div><!-- /.span6 --> </div><!-- /.row-fluid --> </div><!-- /.span6 --> '; } ?> It's working fine but it output: <div class="row"> <div class="span6">Content</div> <div class="span6">Content</div> <div class="span6">Content</div> <div class="span6">Content</div> </div> So how is it possible to add <div class="row"> before and </div> after two items?
  10. Look at the screenshot, I created lots of options in the backend to make this slider working. So in EE I have one slider-channel with these custom fields and options (screenshot). Each slide is an entry within the channel. I used this plugin http://pixelandtonic.com/matrix to create unlimited number of static fields. Just click on plus and there you have a new row. Each row is a layer of the slide.
  11. At first I wanted to rebuild http://2012.thomassausendesign.de/ but I had big problems with the slider. In EE I could build the slider with some options, take a look at the EE-admin:
  12. Just for training I rebuild my old portfolio-site with ProcessWire. I moved the site from ExpressionEngine to ProcessWire and it was pretty straigthforward: http://2011.thomassausendesign.de/ Ok, it was not a great or difficult site, but my first try.
  13. I like all the ideas. A own custom german build of PW would be great. Luis and me chatted about our idea. And we took also WordPress as an example. But our example is more wpde.org So some benefits of PW,blog (maybe with some tips and tricks), FAQ and something like Director-ee build in. We want to introduce freelancers and agencies who are using PW and want to tell WHY they are using it. So we will interview those who will be listed in this director-ee/network-section.
  14. Just for the records: 1. I registered: processwire-cms.de 2. I got in contact with the guys behind processwire.de and asked them for their plans.
  15. Lars... ups... I meant Luis. Soooorrrrrrrryyyyy processwire-das-beste-opensource-cms-der-welt.de ? PDBOCDW.de hmmm well.... let me think about it Something like: processwire-cms.de could work of course. Processwire as part of the domain is a good solution.
×
×
  • Create New...