Hi,
I asked to Stiofan who worked on the X compatibility and that’s his answer:
we remove them, i tried to fit the x design as it had not breadcrums
If you want to try and add them back, please add this code to your theme functions.php:
<?php
add_action('after_setup_theme', 'geodir_x_action_calls_add_breadcrumbs', 12);
function geodir_x_action_calls_add_breadcrumbs()
{
// READD BREADCRUMBS
add_action('geodir_listings_before_main_content', 'geodir_breadcrumb', 20);
add_action('geodir_detail_before_main_content', 'geodir_breadcrumb', 20);
add_action('geodir_search_before_main_content', 'geodir_breadcrumb', 20);
add_action('geodir_author_before_main_content', 'geodir_breadcrumb', 20);
add_action('geodir_home_before_main_content', 'geodir_breadcrumb', 20);
add_action('geodir_location_before_main_content', 'geodir_breadcrumb', 20);
}
Let us know how you went.
Thanks