Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Paolo

    (@paoltaia)

    hi,

    you can hide it in your theme style.css

    .geodir-breadcrumb {
        display: none;
    }

    or remove it completely via functions.php file of your active theme

    remove_action( 'geodir_detail_before_main_content', 'geodir_breadcrumb', 20 );
    remove_action( 'geodir_remove_breadcrumb', 'geodir_breadcrumb', 10, 1 );
    remove_action( 'geodir_listings_before_main_content', 'geodir_breadcrumb', 20 );
    remove_action( 'geodir_author_before_main_content', 'geodir_breadcrumb', 20 );
    remove_action( 'geodir_search_before_main_content', 'geodir_breadcrumb', 20 );
    remove_action( 'geodir_home_before_main_content', 'geodir_breadcrumb', 20 );

    Thx

    Thread Starter wbeavers

    (@wbeavers)

    That worked great thanks

    Plugin Author Paolo

    (@paoltaia)

    excellent, I’m marking this a resolved.

    Thx

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Bread crumbs’ is closed to new replies.