The magic of custom fields, thanks!
(I'll re-copy for others)
In index.php, around line 97-99, change
PHP Code:
} ?>"><?php
} the_title();
if( !is_single() AND !is_page() ) { ?>
to
PHP Code:
} ?>"><?php
} if (is_page()) { echo get_post_meta($post->ID, 'long-title', TRUE); } else { the_title(); }
if( !is_single() AND !is_page() ) { ?>
Thanks!
PS: would be nice to have this a documented part of theme for both pages and categories.
Gleb