XF 2.1 Thread Title Casing Option

rfc0001

Well-known member
Licensed customer
I remember there once being a thread title casing Option (e.g. to make the first letter of each word capitalized). I can't seem to find it (looked under ACP > Setup > Options > Threads, discussions and conversations). Am I missing it or did it get whacked at some point (I'm running XF 2.1.1)? Thanks!
 
Thanks, that answer my second question (feedback about it not Camel casing all CAP words, which would have been the simple fix for that).
 
I remember there once being a thread title casing Option (e.g. to make the first letter of each word capitalized). I can't seem to find it (looked under ACP > Setup > Options > Threads, discussions and conversations). Am I missing it or did it get whacked at some point (I'm running XF 2.1.1)? Thanks!

You can do this in templates -> extra.less for each node by hand...
Code:
.block.block--category.block--category127 a {
    text-transform: capitalize;
}

Change the each node number (example here 127) according to your circumstances ...
 
Back
Top Bottom