I need contact with the developer – I have fixed the issues.
https://www.ads-software.com/plugins/breadcrumbs-everywhere/
]]>fyi in that i just upgraded one of my Multisite Networks to WP 4.0 and everything with this plugin seems to hold solid with the exception with one area and that is -> it breaks in groups in the back end … meaning that when logged in as a user that can create groups, then the breadcrumb is broken with mixed url of broken syntax … otherwise from front end and with users who cannot create groups, the breadcrumbs appear great on all other BuddyPress pages (e.g., activity, members, forums, yada yada) … thank you for such a wonderful plugin … cordially, chuck scott
https://www.ads-software.com/plugins/breadcrumbs-everywhere/
]]>Thank you for your useful plugin.
I catch this error:
Notice: Trying to get property of non-object in my-wp-root/wp-content/plugins/breadcrumbs-everywhere/includes/crumbs-core.php on line 36
Notice: Trying to get property of non-object in my-wp-root/wp-content/plugins/breadcrumbs-everywhere/includes/crumbs-core.php on line 37
Notice: Trying to get property of non-object in my-wp-root/wp-content/plugins/breadcrumbs-everywhere/includes/crumbs-core.php on line 38
My environment is
I disable “User Groups” and “Activity Streams” of Buddypress.
I think global variable $bp has no “groups” and “activity” property in this case.
So, line 36-37 in crumbs-core.php cause error.
I tried to fix them. This code work fine, no error has shown.
But I don’t know if this is the best way.
$page2 = isset( $bp->groups->root_slug ) ? $bp->groups->root_slug : "";
$page3 = isset( $bp->activity->root_slug ) ? $bp->activity->root_slug : "";
$page4 = isset( $bp->forums->root_slug ) ? $bp->forums->root_slug : "";
I would appreciate it if you would consider this.
https://www.ads-software.com/plugins/breadcrumbs-everywhere/
]]>Hi
I have just upgraded my multisite to WordPress 3.8 and BuddyPress 1.9 and installed Breadcrumbs Everywhere 1.5.
In the previous version I activated Breadcrumbs at the site level not network level, and all worked fine. The settings menu was under Buddypress in the admin panel.
I have done the same for the upgrade, but when I save the settings page I get the error ‘You do not have sufficient permissions to access this page’, even though I am the site admin.
The breadcrumb appear on the site with the new itemscope but without any separators.
If I try to activate the plugin at the network level, I don’t get a settings menu.
https://www.ads-software.com/plugins/breadcrumbs-everywhere/
]]>The only breadcrumbs I know for WP with this feature are the ones generated by WordPress SEO by Yoast.
It’s very easy to adapt to Breadcrumbs everywhere plugin.
The final html produced for breadcrumbs should look like this:
<span xmlns:v="https://rdf.data-vocabulary.org/#">
<span typeof="v:Breadcrumb">
<a href="https://mysite.com" rel="v:url" property="v:title">Home</a>
</span> ( ? or sep )
<span typeof="v:Breadcrumb">
<a href="https://mysite.com/my-category/" rel="v:url" property="v:title">
Name of the category</a>
</span> ( ? or sep )
<span typeof="v:Breadcrumb">
<strong property="v:title">Title of the post</strong>
</span>
</span>
https://www.ads-software.com/plugins/breadcrumbs-everywhere/
]]>Hi!
I love your plugin! I run a community and this will be really helpful for my users. I have one question though, is it possible to translate this plugin? I don’t see any .pot file in the plugin files.
https://www.ads-software.com/plugins/breadcrumbs-everywhere/
]]>Thank you for this very helpful plugin. I’m configuring a WordPress site using the Genesis Minimum Pro theme with BuddyPress and bbPress. Genesis and bbPress have their own breadcrumb features which can be made to look identical using CSS. But BuddyPress does not come with this feature. I want a consistent look across the site and so it was important to implement breadcrumbs on the BuddyPress pages as well. This plugin works, but I had to make some modifications to the theme and to the plugin.
My first challenge was installing the plugin under Genesis. Pasting the function call into my BuddyPress header.php did not work because Genesis handles the output. What I wound up doing was customizing the Genesis breadcrumb function and putting the Breadcrumbs Everywhere function call there. I won’t claim that my code is terribly streamlined, but here is what I did:
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' );
add_action( 'genesis_after_header', 'breadcrumbs_with_wrapper' );
function breadcrumbs_with_wrapper() {
if ( !is_home() /* && (!is_archive() || !is_bbpress() )*/ ){
/* Create container */
printf( '<div %s>', genesis_attr( 'breadcrumb-container' ) );
genesis_structural_wrap( 'breadcrumb-container' );
/* Code from Genesis breadcrumb function to output breadcrumbs */
if (
( ( 'posts' === get_option( 'show_on_front' ) && is_home() ) && ! genesis_get_option( 'breadcrumb_home' ) ) ||
( ( 'page' === get_option( 'show_on_front' ) && is_front_page() ) && ! genesis_get_option( 'breadcrumb_front_page' ) ) ||
( ( 'page' === get_option( 'show_on_front' ) && is_home() ) && ! genesis_get_option( 'breadcrumb_posts_page' ) ) ||
( is_single() && ! genesis_get_option( 'breadcrumb_single' ) ) ||
( is_page() && ! genesis_get_option( 'breadcrumb_page' ) ) ||
( ( is_archive() || is_search() ) && ! genesis_get_option( 'breadcrumb_archive' ) ) ||
( is_404() && ! genesis_get_option( 'breadcrumb_404' ) ) ||
( is_attachment() && ! genesis_get_option( 'breadcrumb_attachment' ) )
)
return;
if ( function_exists( 'bcn_display' ) ) {
echo '<div class="breadcrumb" itemprop="breadcrumb">';
bcn_display();
echo '</div>';
}
elseif ( function_exists( 'yoast_breadcrumb' ) ) {
yoast_breadcrumb( '<div class="breadcrumb">', '</div>' );
}
elseif ( function_exists( 'breadcrumbs' ) ) {
breadcrumbs();
}
elseif ( function_exists( 'crumbs' ) ) {
crumbs();
}
elseif ( function_exists( 'breadcrumbs_everywhere' ) ) {
breadcrumbs_everywhere();
}
else {
genesis_breadcrumb();
}
/* Close the container */
genesis_structural_wrap( 'breadcrumb-container', 'close' );
echo '</div>';
}
}
This code works in my site, which consists of WP 3.6.1, BP 1.8.8, bbPress 2.4.1, with the bbPress Genesis Extend plugin by Jared Atchison. (I am not using the Genesis Connect Plugin for BuddyPress. BP versions 1.7 and beyond seem to work without it.)
https://www.ads-software.com/plugins/breadcrumbs-everywhere/
]]>Hi,
after upgrading to buddypress 1.7 the breadcrumb stop working.
It doesn’t show anything.. how can I fix the problem ?
https://www.ads-software.com/extend/plugins/breadcrumbs-everywhere/
]]>It’s a WPMS + BuddyPress install, and the latest version of this plugin.
With wp-config.php set as
define(‘WP_DEBUG’, 1);
define(‘WP_DEBUG_LOG’, 1);
define(‘WP_DEBUG_DISPLAY’, 1);
There are several PHP Notices showing:
Notice: Undefined property: BuddyPress::$achievements in wp-content/plugins/breadcrumbs-everywhere/includes/crumbs-core.php on line 39
Notice: Trying to get property of non-object in wp-content/plugins/breadcrumbs-everywhere/includes/crumbs-core.php on line 39
Notice: Use of undefined constant option_value – assumed “option_value” in wp-content/plugins/breadcrumbs-everywhere/includes/crumbs-core.php on line 45
Notice: Use of undefined constant option_value – assumed “option_value” in wp-content/plugins/breadcrumbs-everywhere/includes/crumbs-core.php on line 51
Notice: Use of undefined constant option_value – assumed “option_value” in wp-content/plugins/breadcrumbs-everywhere/includes/crumbs-core.php on line 57
Here’s fixed lines for each:
Line 39:
$page5 = property_exists($bp, ‘achievements’)?$bp->achievements->root_slug:’achievements’; // slug for the Achievements page. The BuddyPress default is ‘achievements’.
Lines 45 – 57:
if (” == $home && $home!= null) {
$home = “Home” ; // if this is not set in Plugin Settings then default
}
// Get the text for the Blog link. Matches $setting_two in crumbs-admin.php
$blog = get_option( ‘crumbs-setting-two’);
if (” == $blog && $blog!= null) {
$blog = “Blog” ; // if this is not set in Plugin Settings then default
}
// Get the entity for the divider. Matches $setting_three in crumbs-admin.php
$divider = get_option( ‘crumbs-setting-three’);
if (” == $divider && $divider!= null) {
$divider = “»” ; // if this is not set in Plugin Settings then default
}
Thanks, and hope to see it in the next release!
https://www.ads-software.com/extend/plugins/breadcrumbs-everywhere/
]]>I got this errors:
Notice: Undefined property: BuddyPress::$achievements in Z:\home\wordpress\www\wp-content\plugins\breadcrumbs-everywhere\includes\crumbs-core.php on line 39
Notice: Trying to get property of non-object in Z:\home\wordpress\www\wp-content\plugins\breadcrumbs-everywhere\includes\crumbs-core.php on line 39
Warning: Cannot modify header information – headers already sent by (output started at Z:\home\wordpress\www\wp-content\plugins\breadcrumbs-everywhere\includes\crumbs-core.php:39) in Z:\home\wordpress\www\wp-includes\pluggable.php on line 876
https://www.ads-software.com/extend/plugins/breadcrumbs-everywhere/
]]>Hi !
I use your plugins but I don’t know why the title in the breadcrumbs is not good.
Maybe is my theme who overwrite the title… I don’t know
You can look there : https://gamers.re/groups/
I think the current ID is not my page id so the title is not correct
https://www.ads-software.com/extend/plugins/breadcrumbs-everywhere/
]]>Hi,
This plugin is great, it does exactly what I wanted. I just have one teeny niggle: the breadcrumbs display in lowercase for certain pages. For example:
Home / members / David Hunt / messages
Is there any way that “members” and “messages” could instead use the page titles, to say “Members” (or “Members Directory”) and “Messages”?
Thanks!
David
https://www.ads-software.com/extend/plugins/breadcrumbs-everywhere/
]]>I want to be able to choose pages where the breadcrumbs can be displayed. Is that possible? For example, it doesn’t display properly on the blog home page and I want to remove it from there.
https://www.ads-software.com/extend/plugins/breadcrumbs-everywhere/
]]>when trying to change the plugin settings i get error: You do not have sufficient permissions to access this page.
im using:
wordpress multisite 3.4.2
buddypress 1.6
buddypress multisite
https://www.ads-software.com/extend/plugins/breadcrumbs-everywhere/
]]>Hi,
I just installed on WP 3.4 and add a line in header.php, but still no luck.
Thanks,
[bayu]
https://www.ads-software.com/extend/plugins/breadcrumbs-everywhere/
]]>I really like this plugin. I had worked up pseudo breadcrumbs that work for multisite and a bunch of buddypress stuff but it was real messy. I’m glad someone put it in a plugin. Just a couple things I found.
When activated sitewide the options don’t let you save on individual sites admin side.
How to get crumbs working on plugin components like achievements
Pagination needs formatting. Home>>Blog>>APagePage2 should be Home>>Blog>>APage>>Page 2
How to extend it to display on gallery/attachment pages.
thanks again
https://www.ads-software.com/extend/plugins/breadcrumbs-everywhere/
]]>