Your cart is currently empty!
Guide: How I structure my WP Gutenberg & WC Blocks project
The build process is reliant upon the editorScript param within the block.json Then it runs the checkoutRegisterBlock and registerBlockType. Whats in the build folder are blocks. I always prepend it with checkout-block- to know the naming scheme and how the block is shown differently. I’ve yet to add the slot fill on the editor side…
Work notes: Building a ‘Barebones’ theme for better cURL output
Work Notes: EC Refactor 2 – Part 2
Work Notes: Using local storage to share state between Gutenberg Blocks.
Work Notes: Creating a custom WordPress API to interact frontend with the backend.
Work Notes: Creating a control panel for WooCommerce Blocks checkout blocks.
I need to focus on getting the children param because that’s where a bunch of attributes are going to be which I can’t normally access from the frontend without the children prop. Notice if you would like to know why the checkbox is rendered underneath the contact block it because of two things within the…
Article: Writing to Devs for Help on an issue.
Article: How The Redux Store is used for dispatching Actions in WC Blocks.
Code flow for updating value via Redux: How is this action triggering the reducer? Step 1: The following import of setShippingPhone is brought in a de-structured object of useCheckoutAddress(). Step 2: Step 3: The setShippingPhone method is described in the interface CheckoutAddress Step 4: Then a custom hook is used for exposing address functionality to…
Article: How I Understand A Certain Part of A Large Codebase.
Work Notes: Modifying the Shipping Options page on the editor view. – Part 1