Strannik
Форумчанин
Хотел удалить излишнюю, по моему мнению, функцию "Доставка по другому адресу" на сайте >>> http://best-fragrances.ru/checkout/. Если у кого есть опыт, посоветуйте.
Спасибо
Спасибо
Скрыть можно так. Настройки - Доставка - Назначение доставки - По умолчанию на адрес оплаты.
Удалить с помощью, например -
WooCommerce Poor Guys Swiss Knife
<div class="col-<?php echo ( ( $col = $col * -1 ) < 0 ) ? 1 : 2; ?> address">
<header class="title">
<h3><?php echo $title; ?></h3>
<a href="<?php echo wc_get_endpoint_url( 'edit-address', $name ); ?>" class="edit"><?php _e( 'Edit', 'woocommerce' ); ?></a>
</header>
<address>
<?php
$address = apply_filters( 'woocommerce_my_account_my_address_formatted_address', array(
'first_name' => get_user_meta( $customer_id, $name . '_first_name', true ),
'last_name' => get_user_meta( $customer_id, $name . '_last_name', true ),
'company' => get_user_meta( $customer_id, $name . '_company', true ),
'address_1' => get_user_meta( $customer_id, $name . '_address_1', true ),
'address_2' => get_user_meta( $customer_id, $name . '_address_2', true ),
'city' => get_user_meta( $customer_id, $name . '_city', true ),
'state' => get_user_meta( $customer_id, $name . '_state', true ),
'postcode' => get_user_meta( $customer_id, $name . '_postcode', true ),
'country' => get_user_meta( $customer_id, $name . '_country', true )
), $customer_id, $name );
$formatted_address = WC()->countries->get_formatted_address( $address );
if ( ! $formatted_address )
_e( 'You have not set up this type of address yet.', 'woocommerce' );
else
echo $formatted_address;
?>
</address>
</div>
Господа не подскажите. Делал что написано ставил
Настройки - Доставка - Назначение доставки - Доставка только по платежным адресам пользователей.
Все равно сбоку торчит блок свойства не подскажите как убрать? тема porto может было у кого? не подскажите где удалить эту функцию в php не очень но найти удалить могу)