i found this thread Change Default Custom Fields Metabox Name and i also want to change this cctm plugin generated Custom Field header to something else,so i tried to add
global $wp_meta_boxes;
add_filter('add_meta_boxes', 'change_meta_box_titles'); function change_meta_box_titles() { $wp_meta_boxes['my_post_type']['normal']['core']['cctm_default']['title']= 'Details';}
to my wordpress functions.php,but it not worked for me,i also tried second code found there,but still not worked for me. Is the wordpress functions.php correct file where to put this code,or is it cctm plugin plugin functions.php correct and on which line i must add code if correct file is cctm plugin functions.php?