-
Posts
1,835 -
Joined
-
Last visited
-
Days Won
21
Everything posted by Nico Knoll
-
@Soma it would be lovely if there would be a "MailChimp/newsletter module team" here and maybe a "payment/e-commerce module team", too.
-
Currently not but I'm working on it and will add it to the next release.
-
Updated it - thanks for mention!
-
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
-
Awesome site! But I'd make the menu either more smooth animated or as a dropdown over the green part
-
Well I had a short discussion with horst about the module and I guess I should revisit it before I rerelease it.
-
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.
-
I guess only the asker and mods can use this on a thread right?
-
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
-
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.
-
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
- 10 replies
-
- 11
-
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 )
-
It's not that awesome. Neither the combination of back- and foreground nor the font used for "aWebseite.com"... Sorry.
-
Of course, thanks! - and you can call me Nico
-
Hey, thanks for the pull request. I merged it.
-
Alternative syntax for control structures (a tip for newbies)
Nico Knoll replied to kongondo's topic in Dev Talk
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.- 4 replies
-
- 1
-
- endif
- control structures
-
(and 1 more)
Tagged with:
-
Yeah, you're right - I'd probably drop the $shortcode->add Grüße zurück
-
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; }); ?>
-
Just use wire('page') or in your case wire('page')->images
-
My new site (combining nico.is and stadtpirat.net)
Nico Knoll replied to Nico Knoll's topic in Showcase
@teppo: Okay, I'll think about something funny I could put on this site -
pw.net was kind of a playground for the new design
-
Added you
-
My new site (combining nico.is and stadtpirat.net)
Nico Knoll replied to Nico Knoll's topic in Showcase
You're right. I have to renew the references and projects anyway -
My new site (combining nico.is and stadtpirat.net)
Nico Knoll replied to Nico Knoll's topic in Showcase
Thanks! -
My new site (combining nico.is and stadtpirat.net)
Nico Knoll replied to Nico Knoll's topic in Showcase
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.