Hello, you can add the details with a functions, add this in your child theme, in functions.php
add_action( 'geodir_details_main_content', 'custom_details', 45 );
function custom_details() {
global $post;
global $wp_query;
$postid = $wp_query->post->ID;
$current_posttype = geodir_get_current_posttype();
$myauthor = get_the_author();
$myauthorlink = get_author_posts_url( get_the_author_meta( 'ID' ) ).'?post_type='.$current_posttype;
echo '<p class="clearfix">Listed by <a href="' .$myauthorlink . '">' . $myauthor . '</a></p>';
$customtitle= geodir_get_post_meta($postid,'post_title',true); //title
$customaddress= geodir_get_post_meta($postid,'post_address',true); //address
$customphone= geodir_get_post_meta($postid,'geodir_contact',true); //phone
$customemail=geodir_get_post_meta($postid,'geodir_email',true); //email
echo '<h3>'.$customtitle.'</h3>';
echo '<p class="clearfix">Address: '.$customaddress.'</p>';
echo '<p class="clearfix">Phone: '.$customphone.'</p>';
echo '<p class="clearfix">Email: '.$customemail.'</p>';
//do_action( 'geodir_sidebar_detail_top', 'geodir_action_geodir_sidebar_detail_top','' );
do_action( 'geodir_action_details_slider');
}
This is not styled, so you should also need some CSS knowledge along with PHP
Edit: crossposted with Paolo 🙂