Welcome to the WooCommerce Filters & Options repository! This is a curated list of useful filters and options available in WooCommerce, organized by functionality with examples to help developers enhance their WooCommerce stores.
- Filters: Modify WooCommerce functionality dynamically (e.g., product titles, pricing logic).
- Options: Persist settings in the database for WooCommerce (e.g., currency, product redirects).
- Examples: Code snippets to show practical use cases.
Navigate through the folders to find:
- Filters:
/filters/
- Options:
/options/
- Examples:
/examples/
For a quick example, check the files directly or browse the README for common use cases.
Filters allow you to hook into WooCommerce processes to modify or extend its behavior.
Filter: woocommerce_product_title
Modify product titles on the frontend:
add_filter( 'woocommerce_product_title', 'custom_product_title', 10, 2 );
function custom_product_title( $title, $product ) {
return 'Custom ' . $title;
}
Find more filters in the /filters/ folder.
Options are persistent settings stored in the WordPress database. They control core WooCommerce functionality.
Option: woocommerce_currency
Fetch the store currency:
$currency = get_option( 'woocommerce_currency' );
Find more options in the /options/ folder.
Want to see filters and options in action? Check the /examples/ folder for step-by-step guides.
We welcome contributions! To contribute:
- Fork this repository.
- Add your filters/options/examples.
- Submit a pull request.
We hope this repository becomes a valuable resource for WooCommerce developers! Whether you’re here to learn, implement, or contribute, your involvement helps make the WooCommerce community even stronger.