Home › Forums › WoodMart support forum › Active filter Active filter This topic has 4 replies, 3 voices, and was last updated 1 year, 6 months ago by Artem Temos. Viewing 5 posts - 1 through 5 (of 5 total) Author Posts June 1, 2023 at 6:35 pm #471899 kubaParticipant Hi, when I click on a Attribute term that has archives turned on, when in active filter section it is not showing. How to fix that? June 1, 2023 at 6:58 pm #471909 kubaParticipant I see it when I turn off this function: add_filter('wpseo_breadcrumb_single_link', 'remove_breadcrumb_title' ); function remove_breadcrumb_title( $link_output) { if(strpos( $link_output, 'breadcrumb_last' ) !== false ) { $link_output = ''; } return $link_output; } But I need that for for single product page. So can you modify this only ot work on singe product page? This reply was modified 1 year, 6 months ago by kuba. June 1, 2023 at 7:12 pm #471911 NejcParticipant Hey Kuba. Here is code for you: add_filter('wpseo_breadcrumb_single_link', 'remove_breadcrumb_title' ); function remove_breadcrumb_title( $link_output) { if(is_product() && strpos( $link_output, 'breadcrumb_last' ) !== false ) { $link_output = ''; } return $link_output; } June 1, 2023 at 7:27 pm #471914 kubaParticipant Great, works! 🙂 Also I can’t find the text: Addresses that is visible in My Account to translate in Loco Translate, can you tell how to change it? June 2, 2023 at 9:14 am #472013 Artem TemosKeymaster Hello, As for the “Address” translation, it is a WooCommerce bug. It is already reported by a lot of users on WooCommerce Github. Here is a link to this issue discussion that should help you https://github.com/woocommerce/woocommerce/issues/36490 Kind Regards Author Posts Viewing 5 posts - 1 through 5 (of 5 total) You must be logged in to create new topics. Login / Register