Your cart is currently empty!
Work Notes: Modifying the Shipping Options page on the editor view. – Part 3
The goal: To have it so the Local pickup option is selected then the Shipping Fields will be replaced with a message which says the order will be delivered to the store’s HQ. This is going on to be the frontend as well as the edit page. While on the edit page the user will…
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…
Work Notes: Modifying the Shipping Options page on the editor view. – Part 2
The goal: To have it so the Local pickup option is selected then the Shipping Fields will be replaced with a message which says the order will be delivered to the store’s HQ. This is going on to be the frontend as well as the edit page. While on the edit page the user will…
Article: How I Understand A Certain Part of A Large Codebase.
Goal: Explain to the user how I search through a large codebase so I can better implement a functionality. I first see if it’s small enough to know the whole Codebase so I skim through the file structure. If I realize I can’t know the whole thing cause it’s too big this is the process…
Work Notes: Modifying the Shipping Options page on the editor view. – Part 1
The goal: To have it so the Local pickup option is selected then the Shipping Fields will be replaced with a message which says the order will be delivered to the store’s HQ. This is going on to be the frontend as well as the edit page. While on the edit page the user will…
Work Notes: Different JS Frameworks for Gutenberg Blocks
I wonder what it would look like if you used next.js with Gutenberg blocks instead of the create-app the WordPress offers.
Work Notes: Using OpenAI’s Whisper for Speech to Text
I am tried of being on Mint Linux and having poor speech to text capability so I am going to make a web app and host it on this site. I am using this repo as a starting point. And I found that repo by looking through the show and tell page of OpenAI’s official…
Work Notes: Adding Multiple Blocks to the WooCommerce Blocks Checkout Page.
I wrote this piece of code which takess in multiple paths rather than just one. I currently cannot get get_editor_script_handles() to run within the IntegrationInterface without crashing the site. When I put this simple piece of code in the IntegrationInterface it crashes the site as well. Trying to figure out if making multiple integration interfaces…
Work Log: Using WC Blocks Slot Fills for Shipping Information – Part 2
Summary: – I worked on regex to have my webpack work write for Extended Checkout. So, I have to take that checkbox fixed, turn it that well first about to fix it. So it’s not like just showing nothing so to fix that, you know, and try to figure out why it’s not working. And…
Notes: Webpack in WordPress Gutenberg
I am currently having issues where I cannot get webpack to work and I get this error. The only remedy I’ve found is move @wordpress/scripts from devDependencies to dependencies. Also, move other webpack related things from devDependencies to dependencies and that should clear up the errors. Why this is? I do not know yet.