John Havlik
Forum Replies Created
-
Forum: Plugins
In reply to: [NSFW] [Breadcrumb NavXT] Fatal Error with BreadCrum NavXTThere was an error in the French translation distributed by WP.org, it should now be fixed, see https://wordpress.org/support/topic/fatal-error-in-class-bcn_breadcrumb_trail-php-on-line-124/page/2/#post-17857542
Forum: Plugins
In reply to: [Breadcrumb NavXT] Fatal error in class.bcn_breadcrumb_trail.php on line 124This one is a bit confusing, that line was not changed in 7.3.1. Additionally, it doesn’t look like the French translation has been updated recently either https://translate.wordpress.org/projects/wp-plugins/breadcrumb-navxt/stable/fr/default/?filters%5Bterm%5D=Go+to+the+first+page+of+search+results+for+%25title%25.&filters%5Bterm_scope%5D=scope_any&filters%5Bstatus%5D=current_or_waiting_or_fuzzy_or_untranslated&filters%5Buser_login%5D=&filter=Apply+Filters&sort%5Bby%5D=priority&sort%5Bhow%5D=desc
Lastly, I’m not seeing anything in the French translation for the string on the line of the error that should cause a problem (or is even different from the original English or Spanish translation (which I test against locally)). I’m not sure if there is something specific with the server setup (if it is a specific PHP version that causes it), or something I’m missing here.
Can you all check if line 124 of class.bcn_breadcrumb_trail.php is the same as this: https://plugins.trac.wordpress.org/browser/breadcrumb-navxt/tags/7.3.1/class.bcn_breadcrumb_trail.php#L124
Forum: Plugins
In reply to: [Breadcrumb NavXT] Internal Server Error When Saving SettingsA very recent thread covered this topic, please my reply in that topic as a starting point: https://wordpress.org/support/topic/internal-server-error-on-any-save-attempt/#post-17843965
If that doesn’t solve it, please continue the conversation in this thread.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Fatal error after 7.3.0 updateBased on the error, this is due to an extension plugin to Breadcrumb NavXT not being compatible with Breadcrumb NavXT 7.3.0. There may be a newer version of the extension which needed to be installed before updating Breadcrumb NavXT. Please open a support ticket where you got the extension plugin from (this forum is only for support of Breadcrumb NavXT itselft, I can’t provide support for extension to it here).
Forum: Plugins
In reply to: [Breadcrumb NavXT] Internal server error on any save attemptUsually this is due to overly aggressive ModSecurity rules, you’ll have to work with your webhost on how to ensure a rule set that is compatible with WordPress is being used. Overly aggressive ModSecurity rules typically don’t like the HTML that is present in the breadcrumb templates.
Double check your Breadcrumb NavXT settings to make sure that the product category taxonomy type is set as the “Hierarchy” for the product post type. Sometimes, the default hierarchy that is selected ends up not being the one you want.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Connecting BreadcrumbsI’m not sure what you are asking here regarding connecting the plugin via a theme file instead of as a plugin. Can you explain in more detail what you want to do?
Forum: Plugins
In reply to: [Breadcrumb NavXT] Current Page not displaying in trailMy guess is this issue is caused by a secondary loop running before Breadcrumb NavXT. Normally a secondary loop isn’t a problem, but if that loop modifies the main WP_Query object/affects the state of global variables such as
$postyou will get unexpected behavior.One thing you could try is in the Breadcrumb NavXT settings, if you check the setting “link the current item” and then save changes, where does the “breadcrumb” breadcrumb link to? Is it the actual current page, or some other page?
Forum: Plugins
In reply to: [Breadcrumb NavXT] The plugin does not work on tag pages!Unfortunately, the answer is “it depends”. If you are calling
bcn_display()in one of your theme files, you’d have to add that to the theme file that is handling tag archives. If you are using the widget, you may need to add it to the widget area for your tag archives pages, though your theme may not have a widget area in the tag archives.Forum: Plugins
In reply to: [Breadcrumb NavXT] The plugin does not work on tag pages!How are you calling the breadcrumb trail? Breadcrumb NavXT has no known issues with tag archives. However, if the breadcrumb trail is not called on the tag/term archive page, it won’t be displayed.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Breadcrumb NavXT problem on archive products pageWithout being able to see the actual markup generated on the page, it’s going to be a bit difficult to diagnose what is going on. Since Breadcrumb NavXT itself only generates HTML markup, if there ends up being any funky layout changes when adding breadcrumb trails generated by Breadcrumb NavXT, it’s probably something the theme is unintentionally doing. I’d recommend using your browser’s inspector tool to see what CSS is causing the layout issue.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Breadcrumbs not showingSimply activating Breadcrumb NavXT will not cause a breadcrumb trail to appear on your website (unless your theme already supports Breadcrumb NavXT). You will need to call the breadcrumb trail using one of the supported methods (placing a call to
bcn_display()in one of your theme’s php files, see https://mtekk.us/archives/guides/calling-the-breadcrumb-trail/), using the included Breadcrumb Trail Block (either in your posts/pages or if you have a block theme, in the theme editor), or using the included widget.Forum: Plugins
In reply to: [Breadcrumb NavXT] Translation results are not applied correctly.Yeah, should have been breadcrumb-navxt at the minimum (the actual textdomain), and to follow the rest of adminKit it should use
$this->identifier. I’m tracking this in the following github issue: https://github.com/mtekk/Breadcrumb-NavXT/issues/300Forum: Plugins
In reply to: [Breadcrumb NavXT] Log Warning: Htax_pp_category_tag_templateWhatever is registering the pp_category_tag taxonomy, isn’t doing it early enough, it’s likely if you visit the Breadcrumb NavXT settings page you’re going to get a warning message about that taxonomy not getting registered properly. Breadcrumb NavXT requires that your taxonomies and CPTs are registered before the
initaction at level 9000 (default is 10 for theinitaction and would happen much sooner).Forum: Plugins
In reply to: [Breadcrumb NavXT] Vista-like breadcrumbs separatorYou’ll need to use a CSS selector to get all but the last element when adding in the separator. Something like
:nth-last-of-type(n+2)should work. So, instead of.breadcrumbs > li:aftertry.breadcrumbs > li:nth-last-of-type(n+2):after. I’m sure there are several other ways of doing this, but this is what came to mind first.