Viewing 1 replies (of 1 total)
  • Plugin Author WPClever

    (@wpclever)

    Hi @alldayieat,

    As you know, our plugin adjusts products only inside this section. So, we need to change this text on WooCommerce instead.

    You can try below snippet:

    add_filter( 'woocommerce_product_upsells_products_heading', function () {
    	return 'New upsells heading';
    } );
    add_filter( 'woocommerce_product_cross_sells_products_heading', function () {
    	return 'New cross-sells heading';
    } );
Viewing 1 replies (of 1 total)
  • The topic ‘how to change text’ is closed to new replies.