PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 3.2.1
ShopBuilder – WooCommerce Builder For Elementor v3.2.1
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
← All changes | app/Helpers/Installation.php +6 -1 3.4.13.2.1 View file →
@@ -140,8 +140,9 @@
140 140 *
141 141 * @return int
142 142 */
143 143 public static function create_wc_product() {
144 +
144 145 $product = new WC_Product_Simple();
145 146 $product->set_name( 'Confirm at least one product is created before deleting' );
146 147 $product->set_description( 'This is a ShopBuilder demo preview product' );
147 148 $product->set_short_description( 'This is a ShopBuilder product' );
@@ -150,8 +151,12 @@
150 151 $product->set_regular_price( 50 );
151 152 $product->set_sale_price( 49 );
152 153 $product->set_price( 49 );
153 154
154 - $product->set_sku( '' );
155 + $product->set_sku( 'SAMPLE-001' );
156 +
157 + $product->set_manage_stock( false );
158 + $product->set_stock_status( 'instock' );
159 +
155 160 return $product->save();
156 161 }
157 162 }