Skip to content

Commit

Permalink
Merge pull request #47 from woocommerce/fix/35
Browse files Browse the repository at this point in the history
fix/35: replace setDescription with setDescriptionHtml
  • Loading branch information
vikrampm1 committed Jan 31, 2024
2 parents aa46ef2 + ce3759f commit 58c7938
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/Handlers/Product/Woo_SOR.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static function update_catalog_item( CatalogObject $catalog_object, \WC_P
$item_data = $catalog_object->getItemData();

$item_data->setName( $product->get_name() );
$item_data->setDescription( $product->get_description() );
$item_data->setDescriptionHtml( $product->get_description() );

$square_category_id = 0;

Expand Down

0 comments on commit 58c7938

Please sign in to comment.