Your cart is currently empty!
Work Notes: Different JS Frameworks for Gutenberg Blocks
Work Notes: Using OpenAI’s Whisper for Speech to Text
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
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.
Article: Dealing with code block
Work Log: Using WC Blocks Slot Fills for Shipping Information – Part 1
Documenting: Modifying The WooCommerce-Blocks checkout process. Part 2
For the checkout process I am trying to figure out where the shipping information is held locally. “Sets shipping address locally, as opposed to updateCustomerData which sends it to the server.” I can’t figure out how to preserve the Redux log to see the event occurirng when the button is pressed so I guess I’m…
Documenting: Making Attribute Filter work on Category Page – Part 2
Documenting: Making Attribute Filter work on Category Page – Part 1
This video is useful for editing the category page. Okay, so I found out that hasFilterableProducts. The has_filterable_products is in php files, with the file AllProducts.php. If I want similar logic to occur on the Categories I need to to has_filterable_product to ProductCategories.php in a way that AllProducts.php is. I realized getSettingWithCoercion is related to…