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?

hereNT
 
c5mix replied on at Permalink Reply
Check out my blog:
http://c5mix.com/blog/
RadiantWeb replied on at Permalink Reply
RadiantWeb
I post how-to's often athttp://stratisdesign.com

Chad
12345j replied on at Permalink Reply
12345j
tallacman replied on at Permalink Reply
tallacman
I havehttp://performancec5.com/ where you can see a lot of the available blocks for concrete5 installed, tested and praised.
Mnkras replied on at Permalink Reply
Mnkras
is IRC official? :P
hereNT replied on at Permalink Reply
hereNT
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)
StvCummins replied on at Permalink Reply
StvCummins
I've used some of C5 Mixes templates. Very Slick. Kudos to Chris
c5mix replied on at Permalink Reply
Thanks for the kind words Steve!
bcarone replied on at Permalink Reply
bcarone
Yea Chris ur da man!! hahahaha and you do GREAT work.
c5mix replied on at Permalink Reply
awww shucks :)
pvernaglia replied on at Permalink Reply
pvernaglia
hereNT replied on at Permalink Reply
hereNT
Nice, though I notice one error on there browsing through it:

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>
pvernaglia replied on at Permalink Reply
pvernaglia
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.
hereNT replied on at Permalink Reply
hereNT
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 :)
Mnkras replied on at Permalink Reply
Mnkras
pvernaglia is right :P thats how i use it in my themes atleast :P