Select Page

Text, that is displayed in cart before linked product

Parameters

  1. text – displayed before linked product

Usage

<?php
function change_product_linked_with_text ( $text ) {
//your code here
    return $text;
}

add_filter( 'product_linked_with_text', 'change_product_linked_with_text' );
?>