Jump to content

Nico Knoll

PW-Moderators
  • Posts

    1,835
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by Nico Knoll

  1. @Soma it would be lovely if there would be a "MailChimp/newsletter module team" here and maybe a "payment/e-commerce module team", too.
  2. Currently not but I'm working on it and will add it to the next release.
  3. Updated it - thanks for mention!
  4. Sorry that I didn't finished the translated version before I went to holidays ... if you want to stil get it I would translate it until friday evening... EDIT: Sorry, I didn't read the previous posts. Looks super awesome! I'm glad that you got it without my help
  5. Awesome site! But I'd make the menu either more smooth animated or as a dropdown over the green part
  6. Well I had a short discussion with horst about the module and I guess I should revisit it before I rerelease it.
  7. Well it's more like that in first scratches the logo and the other image were much bigger. And in this final state I thought it wouldn't be that bad if the website would still use this big images like ryan said for retina devices.
  8. I guess only the asker and mods can use this on a thread right?
  9. Hi, it would be lovely if this forum would have a "Mark as solved" button so user could see which questions are still unsolved more easily. / Nico
  10. Really easy I guess because sending and creating a newsletter are separated. So you could create it and then hook into the send function and combine this with a cron job.
  11. Hey, I needed a newsletter system for two websites I'm currently building. So I wrote a standalone ProcessWire newsletter system called: MarkupNewsletter The video below shows the workflow: https://vimeo.com/68954976 (it's still converting) Hope you like it! Please report any bugs or questions here. (I'll add it to the modules section after a short beta time). / Nico
  12. Hey, I made a new website for a berlin-based "balkan electro dj". Check it out: http://balkantronika.de/ (and listen to the songs at the bottom )
  13. It's not that awesome. Neither the combination of back- and foreground nor the font used for "aWebseite.com"... Sorry.
  14. Of course, thanks! - and you can call me Nico
  15. Hey, thanks for the pull request. I merged it.
  16. It's also possible to do this: <?php if ($a == 5) { ?> <p>A is equal to 5</p> <?php } ?> //In the above example, the HTML block "A is equal to 5" is nested within an if statement written in the alternative syntax. The HTML block would be displayed only if $a is equal to 5. //The alternative syntax applies to else and elseif as well.
  17. Yeah, you're right - I'd probably drop the $shortcode->add Grüße zurück
  18. You could do something like: Maybe: <?php $shortcode->add('quote', function($atts) { $quotes = array(); function replaceQuotes($matches) { global $quotes; $quotes[] = $matches[1]; return '['.(count($quotes-1)).']'; } $content = preg_replace_callback('%\[quote\](.*)\[\/quote\]%Uis', $atts['content'], 'replaceQuotes'); $quotesString = implode('<br />', $quotes); return $content.$quotesString; }); ?>
  19. Just use wire('page') or in your case wire('page')->images
  20. @teppo: Okay, I'll think about something funny I could put on this site
  21. pw.net was kind of a playground for the new design
  22. You're right. I have to renew the references and projects anyway
  23. My first idea was to directly use the webservice APIs via cronjob. But then I remembered IFTTT.com and now everytime something happens on a social network IFTTT will send an E-Mail to social@nico.is and this IMAP inbox is automatically checked and processed via cronjob so that for every email a page in my pw installation will be created and the mail will be deleted.
×
×
  • Create New...