same custom field for single posts

you need to add the same code for displaying “custom title” into your single.php
like this

$custom_title = get_post_meta($post->ID,'custom fields name',true);
echo $custom_title;