Change SKU label to ISBN in FiboSearch on child sites.
Snippet Type
Execute on Child Sites
Snippet
add_filter( 'dgwt/wcas/labels', function ( $labels ) {
$labels['sku_label'] = 'ISBN:'; // Change label "SKU:" to "ISBN:"
return $labels;
} );