Hi there. Thanks for the heads up on this thread.
If you’d like to customize the cut-offs (i.e. title lengths), you may create this directory and file:
/wp-content/mu-plugins/theme-hacks.php
( these are MUST USE plugins, see: http://codex.wordpress.org/Must_Use_Plugins )
You can change these to numeric values,
indicating the max number of characters to display in various areas of your theme.
<?php
add_action("ws_theme__after_loaded", "my_custom_title_lengths");
function my_custom_title_lengths()
{
$GLOBALS["WS_THEME__"]["c"]["max_title_length"]["index"] = false;
$GLOBALS["WS_THEME__"]["c"]["max_title_length"]["index_post"] = 25;
$GLOBALS["WS_THEME__"]["c"]["max_title_length"]["page"] = false;
$GLOBALS["WS_THEME__"]["c"]["max_title_length"]["fullpage"] = false;
$GLOBALS["WS_THEME__"]["c"]["max_title_length"]["single"] = false;
$GLOBALS["WS_THEME__"]["c"]["max_title_length"]["fullsingle"] = false;
}
?>