Jump to content

Christophe

Members
  • Posts

    701
  • Joined

  • Last visited

Everything posted by Christophe

  1. Hello, Very nice website ! For the slideshows (with bx slider apparently), when there is only one image there are no left and right arrows. But there is one "big dot link" under the image. Is(n't) it possible to make it disappear/have this option deactivated automatically when there is only one image?
  2. Hello, Nice Job! Wouldn't it be easier for everyone to have something like a language pack in the default language of Processwire in an official git repository (I'm just starting to learn it) that would enable to see changes and also ease translations?
  3. We would/could then use "height: auto !important;", wouldn't/couldn't we ? (I'm writing with my left hand as I can't really use my right hand for at least one month.)
  4. Has someone contacted you? Have you found someone? Have a nice week! [ Posting Guidelines: https://processwire.com/talk/topic/2320-posting-guidelines/ ]
  5. Thank you for the information. For the heading, yes, it's not really a better solution. Perhaps always having 2 lines, even if the second is blank, and reducing line-height... and putting a small border around the heading with some padding. German compound words can be very long. Have a nice weekend!
  6. Just in case... codeaware.co (codeware.co is already taken) codeawire.co (or code-a-wire.co) codewire.co hackwire.co hackawire.co (or hack-a-wire.co) hackware.co hackaware.co braincode.co (taken), braincodes.co (also taken) softcodes.co, hardcodes.co, nicecode.co/nicecodes.co [the first e could be "closed" to seem like a o *], nicehack.co/nicehacks.co *, awesomecodes.co, codeawesome.co brainycode.co, brainycodes.co, smartcode.co (taken), smartcodes.co (taken) brainywire.co ... (NB: I wanted to launch a topic on the rise of bitcoins, the rise of darkcoins, just to name these virtual currencies (, the rise of gold, and the decrease of the euro/dollar rate...), but I lost what I had written before saving it, so I "make it short" here, I don't know if I will create a topic or not...)
  7. Very nice websites. I'd love to already know how to create this kind of real-estate website (profile) with processwire in order to offer this service to real-estate agents. I just have some unclear ideas about all this, for the moment. I've just been testing, with firebug, what the homepage would look like if the h4 titles at the bottom where after the images (because of the titles that are not short), like for example putting the h4 tag around the anchor tag inside footer and the h4 text instead of Details, and adding title="Details". (I think I've seen that in html5 we can put header tags inside anchor tags, if really needed.) Or putting the h4 tag between the image and the Details button (I'm not sure if it's "semantic" or not to put the h4 tag after, if it's important). (Is the form a simple php form? I like the "?link=1643" functionality.)
  8. Hello, Concrete5 and ImpressPages CMS are a bit similar in some aspects. Processwire is so customizable (html/css frameworks, backend organization/page input fields...). It is nice to developers and nice to users, as far as I know.
  9. Hello again, I have this error message (like others have had apparently) when using the code: "Error: Call to a member function size() on a non-object (line 12 of...". I have tried some variations, but with no good results for the moment. NB: I'm wondering if I'm not going to link to the pages directly intead of (to) the external urls, and above all if it wouldn't be better, in this case, to remove the categories and use fields/"tags"* to possibly filter these pages by "category" later. Could you give me hints on how to "categorize" by "tags"' and/or tell me what you think about this*? I guess it must be simple to do. It's just a decision to take. * Ok, so I've removed the 3 categories' pages, and now it logically works (no more error message), certainly because the pages are the direct children. Perhaps one day I will need the code as it should be with categories in between. Also, size apparently needs at least 2 "arguments", so I've put width instead and the "thumbnails" appear too. *
  10. Hello, Yes, I knew there were certainly some errors . I have also "overcomplicated" the code. As foreach($page->images as $image) became foreach($page->children('include=hidden') as $child), I guess '$child->external_url' was sufficient. For $thumb = $child->images->first()->sizewidth(320); I now remember having read that the image field behaves as an array of images by default, but that it can be changed, and having seen this type of code with "first()", when looking at the API Images page. I'll test the code as soon as I can and come back here to confirm that it works. I have to add the headline field too. After, I may try to see how I could possibly filter the "pages" displayed depending on their category, with a drop-down menu at the top of the page for instance. And if I want it to be without clicking on a button, I guess I could use something like Isotope. Also I would prefer the "portfolio" page to appear by default with the first "pages" being the last websites made, and so on. They are manually organized like that inside each category, but when they are (partially) displayed on the "portfolio" page they are no more really sorted by/in (general) order. I surely can use a field for that, or something like that. I will see. Thank you
  11. Hello, From where I am located I can't access your homepage correctly. Be it in Firefox, Chromium, or Opera (GNU/Linux versions), the homepage takes a bit of time to load and when it does it appears without the css rules applied to the website. At least one time, I've had a blank page. But if I go to the contact page, for instance, it is complete. Perhaps because of netdna.bootstrapcdn.com... > This must be for Font Awesome... * The homepage loads fine now. * In firefox, on the contact page for example, but not only, the right side of the left vertical menu goes below the image and above the main content area. On the Sites (portfolio) page, the url is http://test.pixlbendr.com/ Have a nice week!
  12. Hello, I know almost nothing about php. I've looked a bit a the API docs and tried to find answers in the forum these last hours. I've seen different styles, one of them being for example the use of <? foreach(...): ?>...<? endforeach; ?>. It's the first time I want to do something like this with Processwire. Let's say I have a horizontal menu, and one of it's first-level links is something like Projects. At first the sub-sub links/pages where directly under Projects, but then I created 3 "categories" (level 2), and so each sub-sub page (level 3) is under one of these categories The categories and sub-sub pages are "Hidden". The Projects page uses a template file that has a name like projects.php (so the code needs to be inserted here normally). The sub-sub pages use a template file named for exemple projects_childen.php (or it could be projects_grandchilden.php). For the pages that use projects_childen.php as a template file, there are several fields including images (Image type) and external_url (URL type). So I want something like a porfolio list/gallery using for example the headline, the images and the external_url fields. Later on I will perhaps link the image to the url of the corresponding page for each image, and/or try other variations. But for the moment I'd like to have for example the headine (before or after the image), then the thumbnail image inside a link pointing to the external url entered in the grandchild page. I've tried to "merge" some pieces of code but it doesn't work for the moment, and also I hadn't taken into account the creation of the categories. I know that I probably need to use include=hidden. I don't know if I need to use something like a double foreach... I've tested some things, starting from the following code at http://processwire.com/api/fieldtypes/images/: foreach($page->images as $image) { $large = $image->width(500); $thumb = $image->size(100, 100); echo "<a href='$large->url'><img src='$thumb->url'></a>"; } The image inserted in each grandchild page is 640 X 400. The images in the Projects page need to be for instance 320 x 200. I've ended up with this: <div class="gallery"> (because I'm using HTML Kickstart) <?php foreach($page->children('include=hidden') as $child) { $external_url = $child->get('external_url'); $thumb = $child->images->size(320); echo "<a href='$external_url' width='320' height='200' target='_blank' rel='nofollow'><img src='$thumb->url' width='320' height='200' /></a>"; } ?> I can just imagine or am perhaps close to or far from the solution, but as I said I know nothing about php. Perhaps the $external_url part shouldn't be inside the foreach part, or this part or another one is not good. It's possible that some of the old versions were better . And also it doesn't take into account the fact that now the pages are grandchildren, not children. Single or double quotes also sometimes have to change depending on the style, etc. The headlines need to go somewhere... Perhaps the "get" is not necessary where it is, but it could be necessary elsewhere. A lot of "perhapses" . I have impressions, not more... There are so many variations possible. Thanks in advance for your help . I need external (re)views as I can't seem to concentrate anymore and/or step back... NB: I've seen that I can specify the name of the template used only by the grandchildren pages (in order to "avoid" the categories).
  13. Hello, I suppose this is you: Napolitano & CO Napolitano And Company, 90 W Wieuca Road NE # 103 Atlanta, GA 30342 - View Map Phone: (404) 843-8038 Web: Napolitanoinc.com Domain Name: NAPOLITANOINC.COM Registrar: NETWORK SOLUTIONS, LLC. Whois Server: whois.networksolutions.com Referral URL: http://www.networksolutions.com/en_US/ Name Server: DNS2.EARTHLINK.NET Name Server: DNS3.EARTHLINK.NET Status: clientTransferProhibited Updated Date: 04-feb-2013 Creation Date: 15-mar-2001 Expiration Date: 15-mar-2015>>> Last update of whois database: Wed, 28 May 2014 10:19:01 UTC <<< Earthlink hosting services seem quite expensive for what they offer and (what could be) your needs. Can you precise how many pages (more or less) you would like please? What would be the interaction/functionalities you would need or desire? Mobile-friendly website (or not), contact form, image/photo gallery, slideshow...? Do you want to redesign the logo that we see at napolitanoinc.com? On which media does the logo need to appear? Is the content already ready/available (texts/copy, images/photos...)? For when (more or less) do you need the project to be "live"? I'm not sure if you would work with people from Europe (apart from email, instant messaging, and skype for instance, in France we can have free phone calls - including to mobile phones - to the USA, Canada, China... with some of the competing ISPs). I have to precise that depending on your requirements/needs, I may, or may not, be the one you need or who is qualified enough for the project, as I'm quite new to Processwire, that is an incredible Content Management Framework/System. I'm currently redesigning my website with it and the form builder, among other functionalities, is awesome. I could perhaps help for Search Engine Optimization later (but like many, I often optimize the website from the very beginning and improve it later on). For the logo, it wouldn't be a problem as we all know, including myself, good graphic designers. I'm writing this message to help, be it me or probably someone else that will take on the project. Have a nice day ! NB: it's "incredible", if we enter Melanie Simington VP of Media Services in the google search field, your post is in first position... I have the impression I have already seen you, perhaps on Linkedin or somewhere else on (the) Internet... PS: I'm thinking that I really need to make my website bilingual/multilingual later on, and why not also in Spanish . NB 2: by the way, this may interest you (I found this service a few days ago): mailerlite.com PS 2: and perhaps this responsive HTML email framework too (mentioned on the forum): zurb.com/ink/ [Complementary: templates.mailchimp.com/ + templates.mailchimp.com/resources/inline-css/ + github.com/mailchimp/Email-Blueprints + campaignmonitor.com/templates/ + "We recommend using an ESP like ... or ..., since some mail clients strip out the responsive formatting when you send an email."]
  14. Christophe

    Macaw

    Hello, I also found this the other day: https://www.google.com/webdesigner/ Have a nice week!
  15. 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/
  16. Hello, In google: site:www.charleswuorinen.com "salmon rushdie" or "salmon rushdie" site:www.charleswuorinen.com
  17. 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 !
  18. 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>
  19. 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 .
  20. 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.
  21. 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...