FCHubFCHub.co
Hooks

Hooks Reference

Every action and filter hook FluentCart exposes. The bits that make it actually extensible.

FluentCart fires hooks at practically every meaningful moment — order created, payment processed, subscription renewed, cart modified, customer sneezed. These are the extension points that let you bolt your own logic onto the store without touching core code. Which is good, because touching core code is how plugins die.

Action hooks let you do something when an event occurs. Think notifications, syncing external systems, granting access, logging — side effects, basically.

Filter hooks let you change data as it flows through the system. Modify prices, tweak settings, add fields, rewrite statuses — whatever the data pipeline will tolerate.

Action Hooks

Things happened. Now it's your turn.

Filter Hooks

Data's passing through. Fancy changing it?

On this page