Skip to content

mahfuzurwp/woocommerce-filters-options

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

WooCommerce Filters & Options

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.

Table of Contents

  1. What’s in this Repo?
  2. How to Use
  3. Filters
  4. Options
  5. Examples
  6. Contributing

What’s in this Repo?

  • 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.

How to Use

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

Filters allow you to hook into WooCommerce processes to modify or extend its behavior.

Example:

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

Options are persistent settings stored in the WordPress database. They control core WooCommerce functionality.

Example:

Option: woocommerce_currency Fetch the store currency:

$currency = get_option( 'woocommerce_currency' );

Find more options in the /options/ folder.

Examples

Want to see filters and options in action? Check the /examples/ folder for step-by-step guides.

Contributing

We welcome contributions! To contribute:

  1. Fork this repository.
  2. Add your filters/options/examples.
  3. 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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages