Best "Unofficial" Resources?
Permalink
Where do people go for extended information about Concrete5? I'm looking for places where developers have set up documentation, blogs, etc. I tend to forget to bookmark things, so I'm trying to get together one big list with all the best how-tos, tips-and-tricks, hidden features documented in someone's blog, etc.
Thanks for any help, or if there's already a forum post on this, could someone point me to it?
Thanks for any help, or if there's already a forum post on this, could someone point me to it?
I havehttp://performancec5.com/ where you can see a lot of the available blocks for concrete5 installed, tested and praised.
is IRC official? :P
Hehe, yeah, actually I linked that one up under the 'offical' section.
http://local.werstnet.com/about/...
(still working off my home computer ATM, so it's super slow)
http://local.werstnet.com/about/...
(still working off my home computer ATM, so it's super slow)
I've used some of C5 Mixes templates. Very Slick. Kudos to Chris
Thanks for the kind words Steve!
Yea Chris ur da man!! hahahaha and you do GREAT work.
awww shucks :)
I have a cheat sheet athttp://www.weblicating.com/c5/cheat-sheet/...
Nice, though I notice one error on there browsing through it:
Wrap each Block in an Area with Divs
That's actually not what that function does, it's not for _each_ block, it wraps around all blocks, so you would have:
Wrap each Block in an Area with Divs
<?php $a = new Area('sidebar'); $a->setBlockWrapperStart('<div class="box">'); $a->setBlockWrapperEnd('</div>'); $a->display($c); ?>
That's actually not what that function does, it's not for _each_ block, it wraps around all blocks, so you would have:
<div class="box"> <block1 html> <block2 html> </div>
No, That sample of code will wrap each block added to the sidebar area with a div with a class name box. Try it, it works.
Weirdness, I could have sworn the last time I tried that it just did the full thing like I shorthanded above - this will be really useful for image sliders and carousels :)
pvernaglia is right :P thats how i use it in my themes atleast :P
http://c5mix.com/blog/