Изменить уведомление «Вы не можете добавить другой (товар) в свою корзину» в Woocommerce

#php #wordpress #woocommerce #product #cart

#php #wordpress #woocommerce #продукт #Корзина

Вопрос:

Я не могу найти способ изменить сообщение Woocommerce по умолчанию, когда вы пытаетесь добавить другой товар в свою корзину, помеченный как продаваемый по отдельности.

Я обнаружил, что именно так вы редактируете сообщение об успешном завершении по умолчанию при добавлении товаров в свою корзину:

 add_filter ( 'wc_add_to_cart_message', 'wc_add_to_cart_message_filter', 10, 2 );
function wc_add_to_cart_message_filter($message, $product_id = null) {
    $titles[] = get_the_title( $product_id );

    $titles = array_filter( $titles );
    $added_text = sprintf( _n( '%s has been added to your cart.', '%s have been added to your cart.', sizeof( $titles ), 'woocommerce' ), wc_format_list_of_items( $titles ) );

    $message = sprintf( '%s <a href="%s" class="button">%s</a>amp;nbsp;<a href="%s" class="button">%s</a>',
                    esc_html( $added_text ),
                    esc_url( wc_get_page_permalink( 'checkout' ) ),
                    esc_html__( 'Checkout', 'woocommerce' ),
                    esc_url( wc_get_page_permalink( 'cart' ) ),
                    esc_html__( 'View Cart', 'woocommerce' ));

    return $message;
}
  

Ответ №1:

Вы можете использовать gettext фильтр, чтобы изменить это уведомление, расположенное в WC_Cart add_to_cart() методе:

 add_filter(  'gettext',  'change_specific_add_to_cart_notice', 10, 3 );
add_filter(  'ngettext',  'change_specific_add_to_cart_notice', 10, 3 );
function change_specific_add_to_cart_notice( $translated, $text, $domain  ) {
    if( $text === 'You cannot add another "%s" to your cart.' amp;amp; $domain === 'woocommerce' amp;amp; ! is_admin() ){
        // Replacement text (where "%s" is the dynamic product name)
        $translated = __( 'It is not possible to add again "%s"', $domain );
    }
    return $translated;
}
  

Код продолжается function.php файл вашей активной дочерней темы (или active theme). Протестировано и работает.