• Makewebgr

    (@makewebgr)


    Hello and thank you for your helpful plugin.

    Since updating to WooCommerce 2.2.8, product category descriptions show both languages along with the shortcodes when browsing a category page, e.g.:

    [:el]Αυτ? ε?ναι η περιγραφ?. [:en]This is the description.

    Another strange bug when also browsing a category, is that no matter what language is selected, the English version of the found products, e.g. “Showing 1–12 of 60 results” shows up.

    This does not happen with product tag archives, only with product category archives.

    Any clues?

    Thank you in advance.

    https://www.ads-software.com/plugins/im8-qtranslate-woocommerce/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Anna Webdesign

    (@anna-webdesign)

    I am struggling with the same problem!
    I can’t seem to translate the product category description grr!

    Any help?

    Thread Starter Makewebgr

    (@makewebgr)

    As for the categories description, try the following:

    if ( ! function_exists( 'woocommerce_taxonomy_archive_description' ) ) {
    function woocommerce_taxonomy_archive_description() {
    if ( is_tax( array( 'product_cat', 'product_tag' ) ) && get_query_var( 'paged' ) == 0 ) {
    $description = wpautop( do_shortcode( _e(term_description()) ) );
    if ( $description ) {
    echo '<div class="term-description">' . $description . '</div>';
    }
    }
    }
    }
    Anna Webdesign

    (@anna-webdesign)

    Thx for the quick response!

    It worked! Thank you very much!
    Have a great monday :)!

    Plugin Contributor Thorsten Frommen

    (@ipm-frommen)

    Hi all,

    this will be fixed in the next release.

    Kind regards,
    Thorsten

    I can’t add any category description either, where do I add the code Makewebgr posted?

    I think it was the functions.php ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Category Description shows both languages and shortcodes’ is closed to new replies.