Advertisement
wclovers

Untitled

Jul 31st, 2023
1,011
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. add_filter( 'product_simple_fields_attributes', function($fields) {
  2.     if (isset($fields['attributes'])) {
  3.         $fields['attributes']['options']['value']['placeholder'] = sprintf( __('Enter some text, some attributes by "%s" separating values.', 'wc-frontend-manager'), WC_DELIMITER );
  4.     }
  5.     return $fields;
  6. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement