GeoDirectory SupportGenesis Theme Compatibility add-on – breadcrumbs – GeoDirectory Support https://wpgeodirectory.com/support/topic/genesis-theme-compatibility-add-on-breadcrumbs/feed Sun, 15 Mar 2026 15:43:33 +0000 http://bbpress.org/?v=2.5.14-6684 en-US https://wpgeodirectory.com/support/topic/genesis-theme-compatibility-add-on-breadcrumbs/#post-11441 <![CDATA[Genesis Theme Compatibility add-on – breadcrumbs]]> https://wpgeodirectory.com/support/topic/genesis-theme-compatibility-add-on-breadcrumbs/#post-11441 Fri, 08 Aug 2014 23:41:33 +0000 wasanajones I know there was discussion on this here, /topic/using-genesis-category-tag-in-div-with-breadcrumbs-im-stuck/ and /topic/css-strangeness/

but I got lost in the threads, and not sure what update status might be for the plugin

Is there a way to restrict/control the Genesis Theme Compatibility add-on regarding breadcrumbs?

it is sticking the breadcrumb (geodir-breadcrumb-bar) outside of the page layout element that the theme uses – effectively mucking up the layout

using CSS for page ID isn’t an option, too many pages/posts outside of geodirectory
so is there a CSS post-type .geodir-breadcrumb-bar {display: none; } for post type?

this probably belongs in the PHP to call the breadcrumb bar for place, event and custom post types instead of all posts

thanks

]]>
https://wpgeodirectory.com/support/topic/genesis-theme-compatibility-add-on-breadcrumbs/#post-11444 <![CDATA[Reply To: Genesis Theme Compatibility add-on – breadcrumbs]]> https://wpgeodirectory.com/support/topic/genesis-theme-compatibility-add-on-breadcrumbs/#post-11444 Fri, 08 Aug 2014 23:45:51 +0000 Guust I’ve sent your question to Stiofan for you.

]]>
https://wpgeodirectory.com/support/topic/genesis-theme-compatibility-add-on-breadcrumbs/#post-11455 <![CDATA[Reply To: Genesis Theme Compatibility add-on – breadcrumbs]]> https://wpgeodirectory.com/support/topic/genesis-theme-compatibility-add-on-breadcrumbs/#post-11455 Sat, 09 Aug 2014 00:28:15 +0000 John Allsopp There was a bug in the core GD plugin which caused the category title to appear outside the breadcrumb structure – that has been resolved and will be in the next core update.

Your issue however is trying to use the Genesis breadcrumb. The plugin was designed to replace the Genesis breadcrumb, so you should leave it deactivated.

The plugin hooks the breadcrumb after the header. If you want it somewhere else you can unhook it and re-hook it somewhere else using your child theme’s functions.php file. For example:


remove_action( 'genesis_after_header', 'geodir_replace_breadcrumb', 20 );
add_action( 'genesis_before_header', 'geodir_replace_breadcrumb', 20 );

The new version of the plugin (out any day now) gives a bit more flexibility since i have added some more Genesis hooks in the structure.

]]>
https://wpgeodirectory.com/support/topic/genesis-theme-compatibility-add-on-breadcrumbs/#post-11512 <![CDATA[Reply To: Genesis Theme Compatibility add-on – breadcrumbs]]> https://wpgeodirectory.com/support/topic/genesis-theme-compatibility-add-on-breadcrumbs/#post-11512 Sat, 09 Aug 2014 22:29:08 +0000 wasanajones thanks

remove_action( ‘genesis_after_header’, ‘geodir_replace_breadcrumb’, 20 );
add_action( ‘genesis_before_loop’, ‘geodir_replace_breadcrumb’, 20 );

I think most genesis themes by default put the breadcrumb ‘genesis_before_loop’

]]>