Hi Alex
Many thanks for your help. That worked a treat. Well, after a little work changing all of the cpt’s. I also added the following css to Design > Scripts – Custom style css code that then allows me to Display the infomation in different ways depending if its viewed on a Desktop, or mobile device. Maybe this can help someone else.
/*Hide registration box on GD login Page*/
.registration_form_r {display:none}
/*Hide More Info tab in desktop view detail listing*/
#post_infoTab {display: none !important;}
/*Mobile Styles */
@media only screen and (max-width: 767px) {
/*Hide More Info sidebar on mobile devices*/
.geodir-company_info.geodir-details-sidebar-listing-info {display: none !important;}
/*show More Info tab in desktop view detail listing*/
#post_infoTab {display: block !important;}
}
/*Hide Map tab in desktop view detail listing*/
#post_mapTab {display: none !important;}
/*Mobile Styles */
@media only screen and (max-width: 767px) {
/*Hide sidebar Map on mobile devices*/
.widget.geodir-widget.widget.geodir-map-listing-page {display: none !important;}
/*Hide user links on mobile devices*/
.geodir-company_info.geodir-details-sidebar-user-links {display: none !important;}
/*Hide sidebar rating on mobile devices*/
div.geodir-company_info.geodir-details-sidebar-rating {display: none !important;}
/*show Map tab in desktop view detail listing*/
#post_mapTab {display: block !important;}
}
Just one more question.
Is it possible to have the The ‘Add to favorites’ in the main body of the detail page instead on the sidebar?
Best Regards
Neil