• is0ph

    (@is0ph)


    Hello,

    I’m using Breadcrumb NavXT 4.3.0 and qTranslate 2.5.34 (2 languages), along with TheCartPress 1.2.7.1
    Breadcrumb NavXT works fine, except it displays both languages and the qTranslate shortcodes for the TheCartPress product categories.

    Exemple: Home > Catalogue > [:fr]Catégorie de produit 1[:en]Product category 1 > Product Name

    I’ve seen in old posts in the forum that you said qTranslate (V1) didn’t use the get_category filter and couldn’t work with Breadcrumbs NavXT in that case (http://wordpress.org/support/topic/qtranslate-and-breadcrumb-navxt).

    As both plug-ins have been updated since this answer, do you confirm it can’t work or is there a workaround?

    http://wordpress.org/extend/plugins/breadcrumb-navxt/

Viewing 2 replies - 1 through 2 (of 2 total)
  • If you still translate categories
    this hook make de trick for me

    function my_bnc_qtrans_title($title)
    {
      return __($title);
    }
    add_filter('bcn_breadcrumb_title', 'my_bnc_qtrans_title');

    greetings

    Thread Starter is0ph

    (@is0ph)

    Thanks oldlastman, it works perfectly!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Breadcrumb NavXT qTranslate product categories’ is closed to new replies.