Как узнать количество подписки на WooCommerce? - PullRequest
1 голос
/ 17 февраля 2020

В настоящее время я занимаюсь разработкой проекта WordPress и использую плагин WooCommerce с плагином WooCommerce для подписки, чтобы предлагать подписки моим пользователям. Мне нужна помощь о том, как получить количество подписки в PHP.

. Я использую этот код для получения подписки, но не могу получить количество:

$subscriptions = wcs_get_subscriptions( array(
    'customer_id'            => get_current_user_id(),
    'subscription_status'    => 'wc-active',
    'order_by'               => 'DESC',
    'subscriptions_per_page' => - 1
) );

Когда пользователь покупая подписку, пользователь может выбрать количество подписок. Поэтому мне нужно получить значение этого поля:

enter image description here

Ответы [ 2 ]

1 голос
/ 17 февраля 2020

Ваш код правильный, а wcs_get_subscriptions() - это правильный и лучший способ получить активные подписки клиентов.

Но вы что-то пропустили после своего кода , чтобы получить количество элементов подписки клиента (код с комментариями) :

// Get current customer active subscriptions
$subscriptions = wcs_get_subscriptions( array(
    'customer_id'            => get_current_user_id(),
    'subscription_status'    => 'wc-active',
    'order_by'               => 'DESC',
    'subscriptions_per_page' => - 1
) );

if ( count( $subscriptions ) > 0 ) {
    // Loop through customer subscriptions
    foreach ( $subscriptions as $subscription ) {
        // Get the initial WC_Order object instance from the subscription
        $order = wc_get_order( $subscription->get_parent_id() );

        // Loop through order items
        foreach ( $order->get_items() as $item ) {
            $product = $item->get_product(); // Get the product object instance

            // Target only subscriptions products type
            if( in_array( $product->get_type(), ['subscription', 'subscription_variation'] ) ) {
                $quantity = $item->get_quantity(); // Get the quantity
                echo '<p>Quantity: ' . $quantity . '</p>';
            }
        }
    }
}

Протестировано и работы.

0 голосов
/ 17 февраля 2020

Вот мой рабочий код, попробуйте это

$current_user_id = get_current_user_id();
$customer_subscriptions = get_posts( array(
    'numberposts' => -1,
    'meta_key'    => '_customer_user',
    'meta_value'  => get_current_user_id(), // Or $user_id
    'post_type'   => 'shop_subscription', // WC orders post type
    'post_status' => 'wc-active' // Only orders with status "completed"
) );

И если вы хотите получить всю подписку post_status, используйте эту


$customer_subscriptions_for_other_cases = get_posts( array(
    'numberposts' => -1,
    'meta_key'    => '_customer_user',
    'meta_value'  => get_current_user_id(), // Or $user_id
    'post_type'   => 'shop_subscription', // WC orders post type
    'post_status' => array('wc-on-hold','wc-pending-cancel','wc-active') // Only orders with status "completed"
) );

Спасибо

...