Displaying Custom Fields in Company Directory Pro

//load the fields you want to display
$staff_list_category = get_post_meta( get_the_ID(), 'staff_list category');
$cellpager = get_post_meta( get_the_ID(), 'cell/pager');
$fax_ = get_post_meta( get_the_ID(), 'fax_');
$department = get_post_meta( get_the_ID(), 'department');

//echo the data you just loaded
echo "Staff List Category: $staff_list_category";
echo "Cell/Pager: $cellpager";
echo "Fax: $fax_";
echo "Department: $department";