File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ Bigcommerce::getProduct(1)->variants(123)->meta_fields(1)->delete();
131131~~~
132132** The 'Product' Object has following member functions**
133133
134- ** Member Function works only on 'v3'**
134+ ** Member Functions that works only on 'v3'**
135135All the 'v3' Resource Class has ` create(), update() and delete() ` functions
136136~~~ php
137137$product = Bigcommerce::getProduct(1);
@@ -176,7 +176,7 @@ $option_value = $product->options("v3")->values(1);
176176$option_value->delete();
177177~~~
178178
179- ** Member Functions works on both 'v2' and 'v3'**
179+ ** Member Functions that works on both 'v2' and 'v3'**
180180Below are the function that works on both ` v2 ` and ` v3 ` versions
181181you can override the default version by setting it in functions like: ` Bigcommerce::getProduct(1)->brand("v3"); `
182182
@@ -210,7 +210,7 @@ $reviews = $product->reviews();
210210// or Bigcommerce::getProductReviews($product_id);
211211~~~
212212
213- ** Member Functions works only on 'v2'**
213+ ** Member Functions that works only on 'v2'**
214214Some functions may return empty data since 'v2' has been abandoned by Bigcommerce
215215~~~ php
216216$product = Bigcommerce::getProduct(1);
You can’t perform that action at this time.
0 commit comments