If I use a featured image. Then it cannot be displayed on the sidebar of the landing page. Currently I have the logo image at the top of the sidebar, above the social links using the below code in functions.php;
function gd_custom_change_sidebar_content_order() {
return array(
'geodir_detail_page_more_info',
'geodir_detail_page_review_rating',
'geodir_social_sharing_buttons',
'geodir_share_this_button',
'geodir_detail_page_google_analytics',
'geodir_edit_post_link'
);
}
add_filter('geodir_detail_page_sidebar_content', 'gd_custom_change_sidebar_content_order');
If I use a featured image, then I am asking customers to upload their logo twice effectively. One to be the ‘featured’ image, and the other for the Logo.
The other problem is images by default on the landing page are quite large and appear in a slider – which will be useful for application screenshots (I’m building an App comparison site). I want to display the logo on the sidebar and the listings page – separate to the slider images.
It doesn’t matter now; I will just hack the code to make it link to the landing page.