Jump to content

Christophe

Members
  • Posts

    688
  • Joined

  • Last visited

Everything posted by Christophe

  1. Christophe

    Macaw

    Hello, I also found this the other day: https://www.google.com/webdesigner/ Have a nice week!
  2. Hello, There seems to be so many topics about newsletters that I don't really know where to post. I was thinking of perhaps using the Newsletter plugin with Seo Panel one day, for some particular use cases. I've just found mailerlite, while reading a blog article/interview. It seems to be already integrated with some well-known and less known CMSs. It could be interesting to also have something like: "MailerLite plugin for ... is here. Download it and receive a 50% discount for subscription. Boost your email marketing!" Just wanted to share what I've found . Their services are apparently very affordable. Updates: https://www.mailerlite.com/international http://docs.mailerlite.com/
  3. Hello, In google: site:www.charleswuorinen.com "salmon rushdie" or "salmon rushdie" site:www.charleswuorinen.com
  4. I think I wasn't trying to find the simplest way . I also remember having seen that piece of code in the API but surely haven't inserted it the right way and/or to the right place at that moment. I've done this now: <li><a href="<?=$config->urls->root?>"><?=$pages->get('/')->title?></a></li> Thank you again Joshua !
  5. Hello, Can someone tell me how to add/prepend the homepage link to this code from Ryan's html-kickstart-processwire archive/profile? Thanks in advance . <!-- Menu Horizontal --> <ul class="menu"><?php function topMenu($currentPage, $startPage) { $out = ''; foreach($startPage->children as $page) { $class = ''; if($currentPage->id == $page->id) $class = " class='current'"; $out .= "<li$class><a href='$page->url'>$page->title</a>"; if(count($page->children)) { $out .= "<ul>" . topMenu($currentPage, $page, $level+1) . "</ul>"; } $out .= "</li>"; } return $out; } echo topMenu($page, $pages->get('/')); ?></ul>
  6. Hello, I had read a bit about the custom fields in Processwire. Customizations/Customisations made easy . I am going to continue to look at the API documentation with Fields. I have read all that was before, except Hooks that can wait a little apparently. I am also going to look at the wiki. I should probably practice on a real project I guess. I want to create my new website with the Foundation 4 profile (even if the third level of the top menu is on the left for "mobile" reasons I suppose, with arrows on the right). But I could do it with Bootstrap, Skeleton, or any other "framework". But, sometimes, the more choice we have the harder it is. (I had used a bit Bootstrap on a Joomla! website and have also on a ImpressPages CMS website.) I want to be able to create, in a few months, or less, something like here: http://www.espacepolygone.com/aep-2100.php and here: http://www.espacepolygone.com/entreprise/62/allianz-g-et-j-azais-assurances/. With GPS coordinates also if possible (but perhaps it's enough on a map), a map (see what happens when we hover it. Not sure if it's a good idea), one or several images (I've seen in the forum that it could be a single static image or, if more, a lightbox "solution", for instance), one or more videos (optional), etc. I want it to be mobile-friendly(, and "upgrade-friendly"). I will look at the demo website/profile also to learn more. Thank you all .
  7. Thank you . I've just found that I had an answer after connecting to the forum again. I didn't receive any notification in my email account, so I've come back here to check. I wasn't (totally) sure if custom field "inputs" would be added to the administration area automatically. I am starting with this tutorial: http://processwire.com/api/tutorials/development-getting-started/, also present in the wiki.
  8. Hello, I'm just starting to learn Processwire. If needed, I would like to be able to specify a Page Title (<title>) different from "Title" in Processwire. For Headline, it is written: Use this instead of the Title if a longer headline is needed than what you want to appear in navigation. Often we also need a Page Title different from the menu link. Page Titles can be different/longer for SEO or other reasons, and menu links shorter for convenience for instance. How can this be done and a "field" input be added to Processwire's Admin? And/or the Page Title could use the Headline value (if it exists of course) instead of the "Title" value. This would be easier to implement I suppose. Thanks in advance
×
×
  • Create New...