• Resolved yarno

    (@yarno)


    In our Staging environment we are preparing to go live with the Product Variation feature of Woocommerce. We are connecting with Woocommerce via de API to automatically update products from our database. This works fine and has been working for quite some time now.

    However, with the Product Variations Attribute we experience an issue. We want to update an existing Product Variation with a new Attribute via the following endpoint: /wp-json/wc/v3/products/<product_id>/variations/<id>. But when we try to do so, we are not getting any result. Here is an example we use in Postman:

    http://staging.retourkoop.nl/wp-json/wc/v3/products/270504/variations/270506

    Here the Id 270504 is the main product and 270506 is the product variation. Here is the payload:

    {
        "attributes":[
            {
                "id":10,
                "option":"Ongeopend"
            }
        ]
    }

    We would expect the product to get the new value “Ongeopend” for attribute with id 10, but we get the following response:

    {
    
    "id": 270506,
    
    "date_created": "2024-04-25T16:07:03",
    
    "date_created_gmt": "2024-04-25T14:07:03",
    
    "date_modified": "2024-05-17T12:18:46",
    
    "date_modified_gmt": "2024-05-17T10:18:46",
    
    "description": "<p><b>Verpakkingsstatus:</b> Ongeopend</p>\n",
    
    "permalink": "https://staging.retourkoop.nl/product/victorinox-swisscard-quattro-12-functies-transparant-rood/?attribute_pa_kwaliteit-product=ongebruikt-product&attribute_pa_kwaliteit-verpakking=geopend&attribute_pa_skuvariants=tb000000013-121",
    
    "sku": "TB000000013",
    
    "price": "",
    
    "regular_price": "",
    
    "sale_price": "",
    
    "date_on_sale_from": null,
    
    "date_on_sale_from_gmt": null,
    
    "date_on_sale_to": null,
    
    "date_on_sale_to_gmt": null,
    
    "on_sale": false,
    
    "status": "publish",
    
    "purchasable": false,
    
    "virtual": false,
    
    "downloadable": false,
    
    "downloads": [],
    
    "download_limit": -1,
    
    "download_expiry": -1,
    
    "tax_status": "taxable",
    
    "tax_class": "",
    
    "manage_stock": true,
    
    "stock_quantity": 1,
    
    "stock_status": "instock",
    
    "backorders": "no",
    
    "backorders_allowed": false,
    
    "backordered": false,
    
    "low_stock_amount": null,
    
    "weight": "",
    
    "dimensions": {
    
    "length": "",
    
    "width": "",
    
    "height": ""
    
    },
    
    "shipping_class": "",
    
    "shipping_class_id": 0,
    
    "image": null,
    
    "attributes": [
    
    {
    
    "id": 11,
    
    "name": "Kwaliteit product",
    
    "slug": "pa_kwaliteit-product",
    
    "option": "Ongebruikt product"
    
    },
    
    {
    
    "id": 10,
    
    "name": "Kwaliteit verpakking",
    
    "slug": "pa_kwaliteit-verpakking",
    
    "option": "Geopend"
    
    },
    
    {
    
    "id": 15,
    
    "name": "Opties",
    
    "slug": "pa_skuvariants",
    
    "option": "TB000000013-121"
    
    }
    
    ],
    
    "menu_order": 0,
    
    "meta_data": [
    
    {
    
    "id": 1573324,
    
    "key": "seopress_global_ids",
    
    "value": "none"
    
    }
    
    ],
    
    "name": "Ongebruikt product, Geopend, TB000000013-121",
    
    "parent_id": 270504,
    
    "_links": {
    
    "self": [
    
    {
    
    "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/270504/variations/270506"
    
    }
    
    ],
    
    "collection": [
    
    {
    
    "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/270504/variations"
    
    }
    
    ],
    
    "up": [
    
    {
    
    "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/270504"
    
    }
    
    ]
    
    }
    
    }

    As you can see, the old value “Geopend” still exists and is not changed to “Ongeopend”. The value “Ongeopend” does exist, when I do a GET request to the following endpoint: http://staging.retourkoop.nl/wp-json/wc/v3/products/attributes/10/terms, we get this result:

    [
        {
            "id": 9035,
            "name": "Beschadigd",
            "slug": "beschadigd",
            "description": "",
            "menu_order": 0,
            "count": 3098,
            "_links": {
                "self": [
                    {
                        "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/attributes/10/terms/9035"
                    }
                ],
                "collection": [
                    {
                        "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/attributes/10/terms"
                    }
                ]
            }
        },
        {
            "id": 9036,
            "name": "Geopend",
            "slug": "geopend",
            "description": "",
            "menu_order": 0,
            "count": 3098,
            "_links": {
                "self": [
                    {
                        "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/attributes/10/terms/9036"
                    }
                ],
                "collection": [
                    {
                        "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/attributes/10/terms"
                    }
                ]
            }
        },
        {
            "id": 9037,
            "name": "Licht beschadigd",
            "slug": "licht-beschadigd",
            "description": "",
            "menu_order": 0,
            "count": 3098,
            "_links": {
                "self": [
                    {
                        "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/attributes/10/terms/9037"
                    }
                ],
                "collection": [
                    {
                        "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/attributes/10/terms"
                    }
                ]
            }
        },
        {
            "id": 9038,
            "name": "Ongeopend",
            "slug": "ongeopend",
            "description": "",
            "menu_order": 0,
            "count": 3098,
            "_links": {
                "self": [
                    {
                        "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/attributes/10/terms/9038"
                    }
                ],
                "collection": [
                    {
                        "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/attributes/10/terms"
                    }
                ]
            }
        },
        {
            "id": 9039,
            "name": "Opnieuw door ons verpakt",
            "slug": "opnieuw-door-ons-verpakt",
            "description": "",
            "menu_order": 0,
            "count": 3098,
            "_links": {
                "self": [
                    {
                        "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/attributes/10/terms/9039"
                    }
                ],
                "collection": [
                    {
                        "href": "https://staging.retourkoop.nl/wp-json/wc/v3/products/attributes/10/terms"
                    }
                ]
            }
        }
    ]

    Hopefully someone can help out. Thank you in advance!

    Below you can find the Status Report.

    WordPress Environment

    WordPress address (URL): https://staging.retourkoop.nl
    Site address (URL): https://staging.retourkoop.nl
    WC Version: 8.8.3
    REST API Version: ✔ 8.8.3
    Action Scheduler Version: ✔ 3.7.4
    Log Directory Writable: ✔
    WP Version: 6.5.3
    WP Multisite: –
    WP Memory Limit: 512 MB
    WP Debug Mode: –
    WP Cron: –
    Language: nl_NL
    External object cache: – Server Environment

    Server Info: Apache
    PHP Version: 8.3.7
    PHP Post Max Size: 128 MB
    PHP Time Limit: 300
    PHP Max Input Vars: 1000
    cURL Version: 7.81.0
    OpenSSL/3.0.2

    SUHOSIN Installed: –
    MySQL Version: 8.0.30
    Max Upload Size: 128 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔ Database

    WC Database Version: 8.8.3
    WC Database Prefix: MILIEQS2X_
    Totale database grootte: 1792.03MB
    Database gegevens grootte: 1426.84MB
    Database index grootte: 365.19MB
    MILIEQS2X_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    MILIEQS2X_woocommerce_order_items: Data: 1.52MB + Index: 0.34MB + Engine InnoDB
    MILIEQS2X_woocommerce_order_itemmeta: Data: 7.52MB + Index: 10.03MB + Engine InnoDB
    MILIEQS2X_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    MILIEQS2X_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_actionscheduler_actions: Data: 8.52MB + Index: 10.83MB + Engine InnoDB
    MILIEQS2X_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_actionscheduler_logs: Data: 7.52MB + Index: 5.58MB + Engine InnoDB
    MILIEQS2X_bv_activities_store: Data: 3.52MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_bv_fw_requests: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_bv_ip_store: Data: 0.36MB + Index: 0.28MB + Engine InnoDB
    MILIEQS2X_bv_lp_requests: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_cartflows_ca_cart_abandonment: Data: 0.09MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_cartflows_ca_email_history: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_cartflows_ca_email_templates: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_cartflows_ca_email_templates_meta: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_cartflows_visits: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_cartflows_visits_meta: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_cmplz_cookiebanners: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_cmplz_cookies: Data: 0.05MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_cmplz_dnsmpd: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_cmplz_services: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_cmplz_statistics: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_commentmeta: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    MILIEQS2X_comments: Data: 8.52MB + Index: 14.61MB + Engine InnoDB
    MILIEQS2X_e_events: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_e_notes: Data: 0.02MB + Index: 0.17MB + Engine InnoDB
    MILIEQS2X_e_notes_users_relations: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    MILIEQS2X_e_submissions: Data: 0.22MB + Index: 0.41MB + Engine InnoDB
    MILIEQS2X_e_submissions_actions_log: Data: 0.06MB + Index: 0.11MB + Engine InnoDB
    MILIEQS2X_e_submissions_values: Data: 0.25MB + Index: 0.13MB + Engine InnoDB
    MILIEQS2X_grp_google_place: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_grp_google_review: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_grp_google_stats: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_imagify_files: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    MILIEQS2X_imagify_folders: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_jet_cache: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_jet_post_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_jet_search_suggestions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_jet_search_suggestions_sessions: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_jet_smart_filters_indexer: Data: 3.52MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_jet_taxonomies: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_automation_run_logs: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    MILIEQS2X_mailpoet_automation_run_subjects: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_mailpoet_automation_runs: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    MILIEQS2X_mailpoet_automation_triggers: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_mailpoet_automation_versions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_automations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_mailpoet_custom_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_dynamic_segment_filters: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_feature_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_forms: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_mailpoet_log: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_mailpoet_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_newsletter_links: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    MILIEQS2X_mailpoet_newsletter_option: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_newsletter_option_fields: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_newsletter_posts: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_newsletter_segment: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_newsletter_templates: Data: 2.52MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_mailpoet_newsletters: Data: 0.06MB + Index: 0.05MB + Engine InnoDB
    MILIEQS2X_mailpoet_scheduled_task_subscribers: Data: 9.52MB + Index: 5.52MB + Engine InnoDB
    MILIEQS2X_mailpoet_scheduled_tasks: Data: 0.27MB + Index: 0.23MB + Engine InnoDB
    MILIEQS2X_mailpoet_segments: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_mailpoet_sending_queues: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_mailpoet_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_statistics_bounces: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_mailpoet_statistics_clicks: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    MILIEQS2X_mailpoet_statistics_forms: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_statistics_newsletters: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_mailpoet_statistics_opens: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    MILIEQS2X_mailpoet_statistics_unsubscribes: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    MILIEQS2X_mailpoet_statistics_woocommerce_purchases: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    MILIEQS2X_mailpoet_stats_notifications: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_mailpoet_subscriber_custom_field: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_subscriber_segment: Data: 0.08MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_mailpoet_subscriber_tag: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_mailpoet_subscribers: Data: 1.52MB + Index: 1.75MB + Engine InnoDB
    MILIEQS2X_mailpoet_tags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_user_agents: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mailpoet_user_flags: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_mclean_refs: Data: 1.52MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_mclean_scan: Data: 1.52MB + Index: 0.20MB + Engine InnoDB
    MILIEQS2X_mollie_pending_payment: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_options: Data: 11.42MB + Index: 4.39MB + Engine InnoDB
    MILIEQS2X_pay_option_subs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_pay_options: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_pay_processing: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_pay_transactions: Data: 0.30MB + Index: 0.13MB + Engine InnoDB
    MILIEQS2X_postmeta: Data: 292.58MB + Index: 258.03MB + Engine InnoDB
    MILIEQS2X_posts: Data: 40.28MB + Index: 19.11MB + Engine InnoDB
    MILIEQS2X_pwc_audit_history: Data: 991.00MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_sc_delivery_methods: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    MILIEQS2X_sc_delivery_zones: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_seopress_content_analysis: Data: 1.52MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_seopress_significant_keywords: Data: 5.52MB + Index: 8.03MB + Engine InnoDB
    MILIEQS2X_snippets: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_term_relationships: Data: 2.50MB + Index: 2.50MB + Engine InnoDB
    MILIEQS2X_term_taxonomy: Data: 1.19MB + Index: 0.66MB + Engine InnoDB
    MILIEQS2X_termmeta: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    MILIEQS2X_terms: Data: 1.20MB + Index: 0.73MB + Engine InnoDB
    MILIEQS2X_usermeta: Data: 2.52MB + Index: 6.55MB + Engine InnoDB
    MILIEQS2X_users: Data: 0.11MB + Index: 0.09MB + Engine InnoDB
    MILIEQS2X_wc_admin_note_actions: Data: 0.06MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_wc_admin_notes: Data: 0.08MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_wc_customer_lookup: Data: 0.42MB + Index: 0.38MB + Engine InnoDB
    MILIEQS2X_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_wc_order_addresses: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    MILIEQS2X_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_wc_order_operational_data: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_wc_order_product_lookup: Data: 1.52MB + Index: 0.70MB + Engine InnoDB
    MILIEQS2X_wc_order_stats: Data: 1.52MB + Index: 0.48MB + Engine InnoDB
    MILIEQS2X_wc_order_tax_lookup: Data: 0.34MB + Index: 0.28MB + Engine InnoDB
    MILIEQS2X_wc_orders: Data: 0.02MB + Index: 0.11MB + Engine InnoDB
    MILIEQS2X_wc_orders_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    MILIEQS2X_wc_product_attributes_lookup: Data: 3.52MB + Index: 3.52MB + Engine InnoDB
    MILIEQS2X_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_wc_product_meta_lookup: Data: 1.52MB + Index: 1.27MB + Engine InnoDB
    MILIEQS2X_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    MILIEQS2X_wcpdf_invoice_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_wcpdf_packing_slip_number: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_wpmailsmtp_debug_events: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_wpmailsmtp_tasks_meta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    MILIEQS2X_wpr_rocket_cache: Data: 1.52MB + Index: 1.84MB + Engine InnoDB
    MILIEQS2X_wpr_rucss_used_css: Data: 2.52MB + Index: 3.95MB + Engine InnoDB Post Type Counts

    attachment: 29663
    cartflows_flow: 1
    cartflows_step: 2
    elementor_font: 1
    elementor_library: 19
    grw_feed: 1
    imgt_log: 2
    jet-engine: 9
    jet-menu: 14
    jet-smart-filters: 6
    jet-woo-builder: 6
    mailpoet_page: 1
    nav_menu_item: 120
    oembed_cache: 2
    page: 22
    post: 4
    product: 3106
    product_variation: 3837
    revision: 130
    seopress_404: 87
    shop_coupon: 6
    shop_order: 4295
    shop_order_refund: 497
    wp_font_face: 33
    wp_font_family: 12
    wp_navigation: 1 Security

    Secure connection (HTTPS): ✔
    Hide errors from visitors: ✔ Active Plugins (27)

    CartFlows Pro: door CartFlows Inc – 2.0.6
    CartFlows: door CartFlows Inc – 2.0.7
    CartPops Pro: door CartPops.com – 1.4.30
    Disable Media Sizes: door Jeff Starr – 2.0
    Elementor Pro: door Elementor.com – 3.21.2
    Elementor: door Elementor.com – 3.21.4
    Essential Addons for Elementor: door WPDeveloper – 5.9.19
    Genips | Variation Swatches for WooCommerce: door Genips – 1.2.0
    JetBlocks For Elementor: door Crocoblock – 1.3.12
    JetElements For Elementor: door Crocoblock – 2.6.17.1
    JetEngine: door Crocoblock – 3.4.4
    JetMenu: door Crocoblock – 2.4.4
    JetSearch: door Crocoblock – 3.4.1
    JetSmartFilters: door Crocoblock – 3.4.5
    JetWooBuilder For Elementor: door Crocoblock – 2.1.11
    JetProductGallery: door Crocoblock – 2.1.15
    Kiyoh Customerreview: door kiyoh – 1.0.32
    Loco Translate: door Tim Whitlock – 2.6.7
    Simple Cloudflare Turnstile: door Elliot Sowersby
    RelyWP – 1.25.0

    WooCommerce.com Update Manager: door Automattic – 1.0.2
    Pay. Payment Methods for WooCommerce: door Pay. – 3.18.3
    PDF Invoices & Packing Slips for WooCommerce: door WP Overnight – 3.8.2
    WooCommerce: door Automattic – 8.8.3
    Power Automate for WooCommerce: door Reenhanced LLC – 2.5.0 (update naar versie 2.7.5 is beschikbaar)
    SEOPress PRO: door The SEO Guys at SEOPress – 7.7
    SEOPress: door The SEO Guys at SEOPress – 7.7
    WP Remote: door WP Remote – 5.47 Inactive Plugins (12)

    Complianz Privacy Suite (GDPR/CCPA) premium: door Really Simple Plugins – 7.0.8
    GTM4WP - A Google Tag Manager (GTM) plugin for WordPress: door Thomas Geiger – 1.20.2
    Imagify: door Imagify – Optimize Images & Convert WebP & Avif – 2.2.2
    Media Sync: door Media Sync Team – 1.4.1
    Monobunt Syncspider: door Monobunt – 1.2.16
    Plausible Analytics: door Plausible.io – 2.0.8
    Redis Object Cache: door Till Krüss – 2.5.2
    Sendcloud | Smart Shipping Service: door Sendcloud B.V. – 2.4.4
    WooCommerce Legacy REST API: door WooCommerce – 1.0.1
    WP Mail SMTP: door WP Mail SMTP – 4.0.1
    WP Rocket: door WP Media – 3.15.10
    WP Rocket | Change Parameters: door WP Rocket Support Team – Dropin Plugins ()

    advanced-cache.php: advanced-cache.php
    maintenance.php: maintenance.php Must Use Plugins (1)

    Elementor Safe Mode: door Elementor.com – 1.0.0 Settings

    API Enabled: ✔
    Force SSL: –
    Currency: EUR (€)
    Currency Position: left
    Thousand Separator: .
    Decimal Separator: ,
    Number of Decimals: 2
    Taxonomies: Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)

    Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
    exclude-from-search (exclude-from-search)
    featured (featured)
    outofstock (outofstock)
    rated-1 (rated-1)
    rated-2 (rated-2)
    rated-3 (rated-3)
    rated-4 (rated-4)
    rated-5 (rated-5)

    Connected to WooCommerce.com: ✔
    Enforce Approved Product Download Directories: ✔
    HPOS feature screen enabled: –
    HPOS feature enabled: –
    Order datastore: WC_Order_Data_Store_CPT
    HPOS data sync enabled: – Logging

    Enabled: ✔
    Handler: Automattic\WooCommerce\Internal\Admin\Logging\LogHandlerFileV2
    Retention period: 30 dagen
    Level threshold: –
    Log directory size: 72 MB WC Pages

    Winkelbasis: #110 - /winkel/
    Winkelwagen: #111 - /winkelwagen/
    Afrekenen: #112 - /afrekenen/
    Mijn account: #113 - /mijn-account/
    Algemene voorwaarden: ❌ Pagina niet ingesteld Theme

    Name: Hello Elementor Child
    Version: 2.0.0
    Author URL: https://elementor.com/
    Child Theme: ✔
    Parent Theme Name: Hello Elementor
    Parent Theme Version: 3.0.1
    Parent Theme Author URL: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
    WooCommerce Support: ✔ Templates

    Overrides: /mnt/dedicated_42284_web/retourkoop.nl/staging.retourkoop.nl/wp-content/plugins/jet-woo-builder/templates/woocommerce/cart/cart-empty.php
    /mnt/dedicated_42284_web/retourkoop.nl/staging.retourkoop.nl/wp-content/plugins/jet-woo-builder/templates/woocommerce/cart/cart.php
    /mnt/dedicated_42284_web/retourkoop.nl/staging.retourkoop.nl/wp-content/plugins/jet-woo-builder/templates/woocommerce/myaccount/form-login.php
    /mnt/dedicated_42284_web/retourkoop.nl/staging.retourkoop.nl/wp-content/plugins/jet-woo-builder/templates/woocommerce/myaccount/my-account.php Admin

    Enabled Features: activity-panels
    analytics
    product-block-editor
    coupons
    core-profiler
    customize-store
    customer-effort-score-tracks
    import-products-task
    experimental-fashion-sample-products
    shipping-smart-defaults
    shipping-setting-tour
    homescreen
    marketing
    mobile-app-banner
    navigation
    onboarding
    onboarding-tasks
    product-variation-management
    product-virtual-downloadable
    product-external-affiliate
    product-grouped
    product-linked
    product-pre-publish-modal
    remote-inbox-notifications
    remote-free-extensions
    payment-gateway-suggestions
    shipping-label-banner
    subscriptions
    store-alerts
    transient-notices
    woo-mobile-welcome
    wc-pay-promotion
    wc-pay-welcome-page

    Disabled Features: minified-js
    new-product-management-experience
    product-custom-fields
    settings
    async-product-editor-category-field
    launch-your-store

    Daily Cron: ✔ Next scheduled: 2024-05-18 09:35:30 +02:00
    Options: ✔
    Notes: 90
    Onboarding: completed Action Scheduler

    Afgerond: 16.424
    Oldest: 2024-04-16 16:49:29 +0200
    Newest: 2024-05-17 12:32:03 +0200

    Mislukt: 12.940
    Oldest: 2023-07-28 14:52:52 +0200
    Newest: 2024-05-07 07:32:11 +0200

    In afwachting: 7
    Oldest: 2024-05-18 00:32:03 +0200
    Newest: 2024-06-06 07:32:11 +0200 Status report information

    Generated at: 2024-05-17 13:37:26 +02:00
    `

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Zee

    (@doublezed2)

    Hello yarno

    Thanks for contacting WooCommerce support.

    Could you edit the product in WP Admin and share a screenshot of the attributes tab?
    While you are there, check if you can do it manually by editing the product.

    I suggest also asking this question on our Woo Slack platform because many Woo developers hang out there. Please do share your answer here if you find it in Slack.

    Looking forward to your response. 🙂

    Best regards.

    justinplagis

    (@justinplagis)

    Hi @doublezed2,

    Filling in for my colleague, please see provided screenshots. We are able to change it manually via the wp-admin portal. And the options exists in the attribute options:

    Image links: https://drive.google.com/drive/folders/1ZGWFNOSFkPrQdQXRw6rQzZUSn8Nh01X4

    Plugin Support Shameem – a11n

    (@shameemreza)

    Hi @justinplagis

    For reference, this particular forum is meant for general support with the core functionality of WooCommerce itself. For development and custom coding questions, it’s best to ask for insight related to those on either the WooCommerce Advanced Facebook group or the WooCommerce Community Slack. Many of our developers hang out there and will be able to offer insights into your question. You can also seek help from the following:

    I wish I could help more, but hopefully, this gets you going in the right direction to get some further insight/information.

    Thread Starter yarno

    (@yarno)

    Posted the issue in the Slack community (core) channel. When we have a solution I will also post it here in the forum

    Hey, @yarno!

    Thank you, that would be a great way to help the community, as it might be useful to other users in the future.

    Please let us know if there’s anything else we can do to help or if you have any questions.

    Have a wonderful day!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Product Variation Attribute API not working’ is closed to new replies.