-
Posts
4,314 -
Joined
-
Last visited
-
Days Won
80
Everything posted by diogo
-
Today we launched one more website. Plana Press is a small illustration books publisher from Porto. http://planapress.org/ This site is very simple, nothing special technically besides the fact that the initial image changes randomly with different sessions. Also the link underlining color follows the color of that same image. You won't see these differences during the visit to the site, so I'm sharing the way I used to check all the images and colors during development: add ?v=1 to ?v=9 to the end of the homepage url to see all variations: http://planapress.org/?v=1 ... http://planapress.org/?v=9 -- In 2010 they published a book with some sketches of mine. See it here http://planapress.org/livros/big-hands-small-mobile/
-
Working for me. On Chrome.
-
Building one right now. For what Helder did, you could use a pliugin like this http://www.bytemuse.com/Pagify The one I'm building is a bit more complex because the url and the title are updated according to the real url and title of the page using html5 pushstate. In my case I'm using this technique http://rosspenman.com/pushstate-jquery/ There's also this one http://weblinc.github.io/jquery.smoothState.js/ I didn't use because it didn't fit my needs for this site. but looks great.
-
Three
- 4 replies
-
- 2
-
-
- website
- kindergarten
-
(and 1 more)
Tagged with:
-
Oh, you're in Porto, great! I'll travel to Germany next week and stay there for 2 weeks, but when I come back just tell me a place
-
Have a look here https://processwire.com/talk/topic/2503-question-about-extreme-scale-hundred-of-thousand-maybe-millions-of-pages/
-
Great website, and loved the sexy tables plugin. nice to see another tuga here
-
Hi PaulAik, welcome to the forums! You're assumptions are in general correct, but: Actually, I would say this is 'the ProcessWire way'. In PW everything is a page, so, what you call "fake pages" are simply pages that are not shown in the frontend and are used mainly as data holders. Read this fun text by Joss about this subject https://processwire.com/talk/topic/2296-confused-by-pages/ You can also use repeaters, page table (core module) or even the image extra and image extra multilanguage fields. Not yet, but there is a module and drafts are in the roadmap. ProcessWire doesn't impose almost anything to you, you can use whatever strategy you prefer. MVC was already discussed a lot, have a look at these edit: dang Macrura!
-
Two days after announcing these two, we finished a third one. http://pingpong.pt/ Pingpong is the communication company of Ana and Pedro. Ana is my sister This is a simple one page site, responsive of course. The corporate image was also done by us and the images are old photos in the public domain.
-
Hi bbeer, here you have https://github.com/somatonic/MarkupSimpleNavigation#build-a-menu-using-a-pagearray-instead-of-a-single-root-page
-
Wow, this thread rose from the ashes Meanwhile we have the pages web services module, but it's good to remind this. Welcome to the forum @scienceape!
-
Ha! You didn't listen to me
-
I have to say that I like the theory of this Php dom parsers would have to improve a lot, though... Would be great if you could use a browser dom parsing engine in the server, and work with server side languages on top of that... And I don't mean this only for node.
-
Check if you have the "convert to HTML entities" textformatter set.
-
Hi guys! So, we launched two more websites and more will follow soon. http://mlausen.com/ Multi language and responsive site for a German architect/photographer based in Switzerland. This site is for showcasing her (exclusively b/w) photography and writings. Maike is very happy with PW, and said that she had fun while updating the content. -- http://demenzinitiative-karlsruhe.de/ Very simple and simple to use (by concept) website for a dementia support initiative in Germany. This website has three different layouts depending on the screen size, so make sure you resize the window, and zoom out if you don't have a large screen. The illustrations are by us -- Both corporate identities were also created by us.
- 2 replies
-
- 11
-
-
Sarah, in your case, the selector ~= should work title~=$term
-
You won't be redirected just like that. You know that Ryan wouldn't do something like that to us, remember, you're still in full control Now you have to use the available methods to take people to the correct url. My favourite is implementing a simple language switch, since I personally hate to be redirected to my browser's language without being asked. You would use $page->localUrl($language) for this. Check how to do it here https://processwire.com/api/multi-language-support/multi-language-urls/ I usually do something as simple as this: foreach($languages as $lang) { $active = $user->language===$lang ? 'class="active"':''; echo "<li {$active}><a href='{$page->localUrl($lang)}'>{$lang->title}</a></li>"; } -- For serving the language based on the browser language, you don't even need the language urls —and since I've never done it, I may be giving you a wrong info— Just detect the browser language http://www.paulund.co.uk/auto-detect-browser-language-in-php and switch the user language accordingly with: $user->language = $language; Of course, if you prefer, set up the URLs and make the redirect instead.
-
If you have everything correctly set up and go edit the home page, in the settings tabs there should be something like this: