OK... I'm at the end of my coding abilities so I'm seeking professional help. I'd like to force the number of thumbnail columns and rows for a theme that I'm creating to be what's best for the theme. This will likely not correspond to what users may have set in their configurations so I was hoping there was a way I could set them in theme.php (or some other file with the theme folder). So for example a user has set in their configuration #rows for thumbnails=4 and #columns for thumbnails=6 but I want to force them to be 3 & 3 for my theme. Is this possible?
Thanks,
Gizmo
Just add what you want to override in your theme.php.
$CONFIG['thumbcols'] = 3;
$CONFIG['thumbrows'] = 3;
Of course it's that easy, what the hell was I thinking???
Thanks Nibbler