Skip to content

Commit

Permalink
fix: VariationAttribute now sourcing value as Term slug for global at…
Browse files Browse the repository at this point in the history
…tributes (#800)
  • Loading branch information
kidunot89 authored Sep 15, 2023
1 parent 5701fb1 commit 9ca2f48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static function variation_attributes_to_data_array( $attrs, $variation_id
'id' => $id,
'attributeId' => $term->term_id,
'name' => $term->taxonomy,
'value' => $term->name,
'value' => $term->slug,
];
}
}//end foreach
Expand Down

0 comments on commit 9ca2f48

Please sign in to comment.