복붙노트

[WORDPRESS] 단일 제품 페이지에서 제품 변형 메시지 사용자 정의

WORDPRESS

단일 제품 페이지에서 제품 변형 메시지 사용자 정의

해결법


  1. 1.사용자 정의 메시지로 해당 메시지를 대체 할 WordPress GetTex () 함수를 사용해야합니다.

    사용자 정의 메시지로 해당 메시지를 대체 할 WordPress GetTex () 함수를 사용해야합니다.

    add_filter( 'gettext', 'customizing_product_variation_message', 10, 3 );
    function customizing_product_variation_message( $translated_text, $untranslated_text, $domain )
    {
        if ($untranslated_text == 'Sorry, this product is unavailable. Please choose a different combination.') {
            $translated_text = __( 'Here goes your custom text', $domain );
        }
        return $translated_text;
    }
    

    이 코드는 액티브 하위 테마 (또는 테마)의 function.php 파일 또는 모든 플러그인 파일에서도됩니다.

  2. from https://stackoverflow.com/questions/39820003/customizing-product-variations-message-on-single-product-pages by cc-by-sa and MIT license