Adding affiliate links to Woocommerce variations

后端 未结 1 1778
梦谈多话
梦谈多话 2021-01-24 12:24

I am trying to add affiliate links to the Woocommerce variations. The idea is to have a unique http link/URL(affiliate link) for each product variation. A link/URL that I can en

相关标签:
1条回答
  • 2021-01-24 12:29

    It's been a while, so you may have resolved this. But anyone in the future who comes here looking for an answer like I did.

    Replace:

    add_action( 'woocommerce_process_product_meta_variable', 'variable_fields_process', 10, 1 );
    

    with:

    add_action( 'woocommerce_save_product_variation', 'variable_fields_process', 10, 2 );
    

    Saving variants changed as of WooCommerce 2.4.4

    0 讨论(0)
提交回复
热议问题