Adds support for fetching BigCommerce Products by SKU. Including via shortcode #266
+77
−4
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds support for fetching BigCommerce Products by SKU.
by_product_sku
andquery
to theBigCommerce\Post_Types\Product
classsku
to theProduct_Components
class implementing thebc-component
shortcodeDocumentation
Historically, one would only be able to fetch a product with a BigCommerce Product ID
E.g.
$product = \BigCommerce\Post_Types\Product\Product::by_product_id( $product_id );
This pull request adds the ability to fetch of a product in a very similar fashion by BigCommerce Product SKU
E.g.
$product = \BigCommerce\Post_Types\Product\Product::by_product_sku( $product_sku );
Additionally, the
bc-component
shortcode attributes have been updated to support fetching by BigCommerce Product SKU as well.E.g.
echo do_shortcode('[bc-component sku="' . $product_sku . '" type="add_to_cart"]');