Jump to content

diogo

Moderators
  • Posts

    4,314
  • Joined

  • Last visited

  • Days Won

    80

Everything posted by diogo

  1. Maybe that comment tag could be more descriptive. Should we set a standard for modules that add markup?
  2. Join the group, we've been all guilty of that kind of dumbness
  3. diogo

    Joomla! is the best!

    I don't think it's bias. Actually, knowing cmscritic I'm sure it's not. I'm not even saying that it's incorrect, just analysing what new visitors might feel.
  4. diogo

    Joomla! is the best!

    Not subtitles, subsites. Your adds are almost all about CMSs. I don't know how that works, if it's the adds provider that choses them based on the content of the website —I'm even assuming that everyone sees something different, since one of them is a Portuguese supermarket—, or if you chose them yourself directly from the announcers. But in my opinion, and in an ideal world, a website that reviews CMSs would gain in prestige by not being payed to publicise CMS products. EDIT: not trying to make your life tougher. Just in brainstorming mode, as I said before
  5. diogo

    Joomla! is the best!

    One more important thing about the adds. I don't know if you have any control about it, but would be nice if they weren't announcing CMSs. It doesn't favour the feeling of impartiality that people should have when visiting the site.
  6. diogo

    Joomla! is the best!

    Mike, definitely the inline ads. They are everywhere now, I know. But I even switched my daily online newspaper because of them... If I look at the website now, what bothers me more is the dispersion of information. The "Check out our new site, Website Builders Critic!" on the top, plus the magnolia add under it, and then all the right column. Not sure if you would loose to much by dropping some, but I imagine that having less adds will get more clicks for those few individually, no? EDIT: oh, and on the left also, under the menu... There's also some dispersion of content with the subsites. Not sure how you could solve it, but I find it particularly confusing. The tweets, ya... I would say less repeated, I having constantly the feeling of repeated info. They don't have to be more personal, I don't think so. How about having a tweet for each event, and some time later a resume tweet? Something more telegraphic with the links to all events... well, I'm in brainstorming mode now.
  7. diogo

    Joomla! is the best!

    Not so fast! Soma does this sometimes, and I've already seen a good amount of people thanking him for it. One could argue that it sounds rude —for an Atlantic person like me, so distant from the central Europe, it certainly does—, but the fact is that it's never only a personal opinion, as it always reflects the thoughts of more people. I know this is not a forum about CMS Critic, but since CMS Critic is so related to PW in some aspects, it makes all the sense to comment. Mike, you made your choices, and I'm sure you balanced very well all the aspects of your website. I have to say that I inevitably share Soma's concerns, It's not that I lost interest, as I still check the website from time to time, but it does feel a bit overwhelming, with lots of things happening at the same time and divided into so many sections. Also I noticed that there is lots of repetition in your tweets, and because I tend to not ignore your posts, yes, It can get a bit annoying. This doesn't erase all the merits, but does fade them a bit away. See? Soma can be much more straightforward them me, and we still haven't seen Joss's answer that will certainly come, he must be writing it for half hour already
  8. I think it always works with real life examples. If you see a book with the title "Cooking for newbies", you expect it to have a long list of pre-made products and the indication of the supermarkets where you can buy them? Or you expect it to have a section where you are taught the basics (like making different kinds of dough, basic sauces, cutting vegetables) and a second section with some recipes where you can make complete dishes by using those techniques? I would say it's the second. Because "Cooking for newbies" teaches you how to cook. If you're not interested in learning how to cook, you have of course the option to buy a pre-made pizza, and that's completely fine, but for that you don't need a book...
  9. It's not that difficult to make your own slideshow though. I think what makes it hard to do this kind of things with jQuery is not jQuery itself, but having a good understanding of CSS. What you need to do with jQuery it's quite simple actually. Not much more than updating classes and creating the buttons. All the rest is CSS, with the trickiest part being, understanding very well the "display" and "position" properties. In the end, what I mean is, study CSS, make a lot of "trial and error" by changing the CSS properties of images in a list of images. After that, jQuery will be the easiest part.
  10. Meanwhile no one cared about correcting your wrong code Here it goes: <?php $x=1; // Start a fairyball at 1 <- this is fine $faqs = $pages->find("template=faq-detail"); echo "<dl class='accordion' data-accordion>"; foreach ($faqs as $faq) // here I changed your $x++ to only $x // By calling one after the other you were incrementing them between the <a> and the <div>, when what you really want is them to have the same value // also added the {} for clarity echo " <dd class='accordion-navigation'> <a href='#{$x}'>{$faq->title}</a>; <div id='{$x}' class='content'> {$faq->faq_body} </div> </dd> "; echo"</dl>" $x++; // <- here is where you want the value of $x to be incremented, so it holds a higher number in the next loop ;?>
  11. Difficult to answer to this since for now you can't even compare the popularity of one and other: PW is growing at a fast pace, but most of this is due to developers, it's still to soon to tell if PW will ever be a known CMS outside of this circle,
  12. Funny, that word doesn't sound strange to me...
  13. Edit: by the way, just noticed I messed your post. See above
  14. PW will be easy for you.
  15. The clients can be non-technical to use PW, but you have to do some work. There are plugins for PW but the majority of them are not for frontend features. For this all you have to understand is how you can organize things in the PW backend, and how to get those things in your html. Anyway, to be clear I will give you the gallery example: To create a gallery you can have many approaches to collect the images. 1. You can create a parent page called "gallery" and allow for children pages with a single image field on each and any other fields that you need to have info on each image. 2. You can create a page called "gallery" (for example) dedicated only to the gallery where you have a multiple images field that will hold all the images with their descriptions. 3. You can create a multiple images field (or many) along with others fields in that template and use the to make the gallery (or galleries) It's all about flexibility and making your own decisions. search for gallery here in the forums and you will find multiple approaches. Second part is to choose a javascript gallery. There are loads of them, and all you have to do is go to their documentation to know what kind of HTML they expect you to create. Third part is to create that HTML and put the images dynamically to it in your template file. For example, if the JS gallery plugin asks for a list of images in the format "<ul><li><img/></li><li><img/></li><li><img/></li><li><img/></li></ul>": 1. ( where the ("/gallery/") page holds a holds a single image field "image" ) <ul> <? foreach($pages-get("/gallery/")->children() as $imagePage): ?> <li><img src="<?=$imagePage->image->url?>" description="<?=$imagePage->image->description?>"/></li> <? endforeach ?> </ul> 2. ( where the ("/gallery/") page holds a multiple images field "images" ) <ul> <? foreach($pages-get("/gallery/")->images as $image): ?> <li><img src="<?=$image->url?>" description="<?=$image->description?>"/></li> <? endforeach ?> </ul> 3. ( where the page being viewed holds a multiple images field "images" ) <ul> <? foreach($page->images as $image): ?> <li><img src="<?=$image->url?>" description="<?=$image->description?>"/></li> <? endforeach ?> </ul> Edit: while I was writing you had already a very long conversation. I'm still going to submit this
  16. I only scrolled quickly to the bottom but I've seen something that shouldn't be there in my opinion, the flat design part. As a non-graphic designer talking to graphic designers I would suggest you just avoid talking about design at all.
  17. Oh, this sounds interesting! Will have a look as soon as I can.
  18. @pwired, Teppo was not talking about the CMS, he was talking about trust. Edit: oh, it's already answered
  19. Hanna code is the way to go, and should work with 2.5
  20. diogo

    Muesli Café

    A more technical note: I was using webkit's text-sroke to simulate the bold, since the Hannah typeface doesn't have bold, and the browsers simulated bold is too strong, but unfortunately it only works in webkit browsers (of course). I fixed this now by using multiple text shadows instead. It's a nice little hack actually
  21. diogo

    Muesli Café

    Sorry netcarver, this will be a late answer. The reason we offer mueslis, and not other things is because our product is really the best we can offer without spending too much of the money that will come if the campaign goes well. We thought of alternatives, but they would either be too expensive, or take too much of our work and energy in a time when we will be completely focused in opening the café. Offering our own product is always the best balance between more value and less spendings in any business, right? Of course we thought about people that won't be in Porto. We thought of sending our very nice postcards for instance, but only sending them to everyone (if we get all the money we need, we are necessarily talking about lots of people) would make it too expensive for the real value of it. That's why we have the symbolic offer of writing all the names somewhere in the café, and saying that there is no limit to using the muesli vouchers, like this people can use it at any time that they come to Porto. Of course we can make an exception for PW users, and I love André's idea. There will be for sure a hand drawn surprise for all of you that contribute, even if with 1 euro edit: And we sure need everyone's help at this point!! Thanks for the heads up André! By the way, great news, we were featured on the website of one of the main Portuguese newspapers http://p3.publico.pt/vicios/gula/14236/casal-de-designers-quer-abrir-um-muesli-cafe-no-porto
  22. All good here. Didn't have any trouble with MAMP, apparently all you have to do is upgrade it also.
  23. diogo

    Muesli Café

    Thanks a lot Joss! Love the article
  24. Is this a multiple page field? In that case you would have to iterate it with a foreach or get the first one with first() <?php foreach($page->food_types as $ft) { echo $ft->title; } ?> or <?=$page->food_types->first()->title ?>
×
×
  • Create New...