Archived topic
Change Up-sell products text (WooCommerce) by PHP Filter
3 replies · Started by David on December 13, 2020
Viewing posts 1–4 of 4
Hi GP Team!
I'm looking to change the upsell text on WooCommerce. I've tried like four filters and nothing happens.
Can you help me? I don't understand what are happening.
I submit you the URL. You will se the text "També us recomanem..."
Thank you :)
Hi there,
this PHP Snippet should work:
add_filter( 'woocommerce_product_upsells_products_heading', 'db_change_upsell_title_text' );
function db_change_upsell_title_text() {
return 'Your upsell title text here...';
}
It works perfectly :) Thank you so much!
You're welcome
This archived topic is closed to new replies.