Change SKU label to ISBN in FiboSearch

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;
} );
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.