We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Type: (Select one)
Requirement :
I m using below tutorial to do that https://help.bundleb2b.com/en/articles/7322862-hard-coding-floating-action-buttons
Implement `templates/components/f/products/card.html
<button class="add-to-shopping-list" data-product-id="{{id}}" data-sku="{{sku}}">Add to shopping list</button> <script> document.addEventListener("DOMContentLoaded", function() { $(".add-to-shopping-list").on('click', function (event) { let pId = $(this).attr('data-product-id'); let sku = $(this).attr('data-sku'); b2b.utils.shoppingList.addProductFromPage({ quantity: 1, productEntityId: pId, selectedOptions:[], sku: sku, variantEntityId:118019 }) }); }) </script>
`
Expected Behavior:
Actual Behavior:
Debugging On click on shopping list , it showing selection of shopping list but when click on "OK" nothing happen Debugging more found that https://github.com/bigcommerce/b2b-buyer-portal/blob/main/apps/storefront/src/pages/PDP/index.tsx#L175 it is going to this file, where it is need pdp form and all thing. Even i m not getting actual click event of element as well.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Type: (Select one)
Requirement :
I m using below tutorial to do that
https://help.bundleb2b.com/en/articles/7322862-hard-coding-floating-action-buttons
Implement
`templates/components/f/products/card.html
`
Expected Behavior:
Actual Behavior:
Debugging
On click on shopping list , it showing selection of shopping list but when click on "OK" nothing happen
Debugging more found that
https://github.com/bigcommerce/b2b-buyer-portal/blob/main/apps/storefront/src/pages/PDP/index.tsx#L175 it is going to this file, where it is need pdp form and all thing. Even i m not getting actual click event of element as well.
The text was updated successfully, but these errors were encountered: