Your cart is currently empty!
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…
Comprehensive Process of attribute-filter of WooCommerce Blocks.
Okay the main thing is attributeTerms. Which is declared as results from a useCollection hooks call as: attributeTerms is then an object which is iterated upon. Then that object is the initial load then it is refreshed based on DOM events. … For the showing of the count: ….. I think, that the block for…
Documentation: Woocommerce-Blocks Filters Blocks
useCollection: Appears to be a base hook. Which appears to be coming from this file. Described as a hook for wiring up a component to a collection route. “Queries are performed using useCollection hooks” useQueryStateByContext: A custom hook that exposes the current query state and a setter for the query state store for the given…
Documenting: Creating a Block Based Theme for a Large Website – Part 2
WooCommerce-Blocks Documentation: Checkout
useCheckoutAddress: This is a hook found in use-checkout-address.ts this hook is found in various files of checkout-shipping-methods-block folder. I beleive the value within it is used to hide the billing field. Found as a reliant boolean in this file. In detail: setBillingAddress: I think this is used in the data store and will be sent…
Documenting: Modifying The WooCommerce-Blocks checkout process. Part 1