• Is this plugin still being developed? It doesn’t declare HPOS compatibility, and cannot be activated on Woo shops running with HPOS (High Performance Order Storage), The declared WC testing is with WC 6.5.2. Can you advise if there are any plans to bring it up to date for the newer WC versions and add HPOS support?

Viewing 1 replies (of 1 total)
  • Thread Starter Edith Allison

    (@terragirl)

    Hi, I see you’ve added the HPOS compatibility statement in version 4.2.0 and set it to “yes” but your code still contains this post query:

    $contact_properties['total_orders'] = count(
    get_posts(
    array(
    'numberposts' => -1,
    'meta_query' => array(
    array(
    'key' => '_billing_email',
    'value' => join( ', ', $emails ),
    'compare' => 'IN',
    ),
    ),
    'post_type' => 'shop_order',
    'post_status' => 'any',
    )
    )
    );

    Can you review your HPOS compatbility? This looks not compatible, HPOS uses a a different post type. For help please see https://developer.woocommerce.com/docs/hpos-order-querying-apis/

    • This reply was modified 7 months, 3 weeks ago by Edith Allison.
Viewing 1 replies (of 1 total)
  • The topic ‘Under active development? HPOS?’ is closed to new replies.