• При очередном обновлении WC до 3.6.2 лег плагин.
    Фикс файла woocommerce\templates\cart\cart-shipping.php с заменой
    if ( 1 < count( $available_methods ) ) {
    на
    if ( 2 > count( $available_methods ) ) {
    до конца проблему не решает.

    Поля уже появляются, но все еще затираются. Дополнение к фиксу:
    Строка 54 там же:
    }echo wp_kses_post( apply_filters( 'woocommerce_shipping_estimate_html', __( 'Shipping options will be updated during checkout.', 'woocommerce' ) ) );
    замена на
    echo esc_html__( 'Shipping options will be updated during checkout.', 'woocommerce' );
    Необходимо убирать кусок с apply_filters

    • This topic was modified 5 years, 6 months ago by illiashenko.
    • This topic was modified 5 years, 6 months ago by illiashenko.
  • The topic ‘[Resolved] WooCommerce 3.6.2 Plugin не работает’ is closed to new replies.