• Resolved RenewMyID

    (@renewmyid)


    Hi,

    We’re running a webshop with WPML + WooCommerce + Yoast SEO.
    But when trying to change the breadcrumbs title of a WooCommerce product-category, the change doesn’t show in the breadcrumbs. I can’t seem to fix it. Is this a known bug?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Maybellyne

    (@maybellyne)

    Hi Renewmyid

    Thank you for bringing this issue to our attention. We apologize that the custom breadcrumbs title you have set for your product category does not show. We’ve confirmed the problem you reported and have created a bug report for our development team.

    Workaround
    At this time, there is no known workaround.

    What’s next?
    Our product team will assess the severity of this problem in relation to other open bug reports and new features. Based on their assessment, the bug report will be given a priority level. Our developers work on the highest priority issues first. Unfortunately, this means we cannot give you an estimate of when they’ll start working on your report.

    If you have any further information that may affect the prioritization or help our development team solve this bug, please feel invited to reply to this email.

    Thread Starter RenewMyID

    (@renewmyid)

    Thanks for your reply. Hoping it will be fixed in the next patch ??

    Quick and dirty fix in the meantime, perhaps for others, to be placed in the functions.php:

    add_filter(‘wpseo_breadcrumb_single_link’, ‘rmi_replace_breadcrumb_single_link’, 10, 2);
    function rmi_replace_breadcrumb_single_link($link_output, $link)
    {
    $link_output = str_replace(“Old Name”,”New Name”, $link_output);
    return $link_output;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WPML + WooCommerce + Yoast SEO: Breadcrumbs title overwrite doesn’t work’ is closed to new replies.