| 开发者 | jaffray |
|---|---|
| 更新时间 | 2026年8月29日 13:56 |
| PHP版本: | 7.4 及以上 |
| WordPress版本: | 7.1 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
wp-config.php instead of the databasewc_signifyd_order_is_eligible) lets you refine that per order.
What it deliberately does not do
DECLINED guarantee stores the
disposition and fires the wc_signifyd_case_updated action so each store can
apply its own policy, rather than cancelling orders behind your back.docs/ARCHITECTURE.md in the source repository.
Who maintains this
Choice OMG maintains this plugin. We are a digital marketing and web agency in
Edmonton, Alberta, and we wrote it because a client's WooCommerce store needed
Signifyd screening that Signifyd does not ship for WooCommerce. It runs in
production on that store against the Moneris gateway.
Setup notes and gateway mapping guidance live at
Choice OMG.
wp-content/plugins/riskloom-fraud-screening-for-signifyd/, or install it from the Plugins screen.wp-config.php instead of using the settings field:
define( 'WC_SIGNIFYD_API_KEY', 'your-team-api-key' );
The constant overrides the stored option, and the settings field is shown
disabled with a note explaining why.Yes. Signifyd performs the screening, so the plugin cannot function without an account and an API key. See the External services section for what is sent.
Not currently. It targets the V2 Cases API, which remains available to existing Signifyd teams. Porting to V3 would mainly affect the API client.
No. It reads only the risk-signal fields your payment gateway has already stored on the order: AVS and CVV match results, card BIN, last four digits, and expiry. The full card number and the CVV value never pass through the plugin.
No. The plugin stores the score and disposition and fires the
wc_signifyd_case_updated action. Acting on a declined guarantee is left to your
own code or workflow, so the plugin never cancels or holds an order on its own.
Yes, with a small amount of configuration. The order meta keys the plugin reads
card risk signals from are filterable through wc_signifyd_gateway_meta_map, and
AVS code translation through wc_signifyd_avs_map. The defaults target the
WooCommerce Moneris gateway because that is the gateway the plugin has run
against in production.
Yes. All order access goes through the WooCommerce CRUD API, and the plugin declares HPOS compatibility. It works with both legacy post storage and HPOS.
Purchasing a guarantee is billable on your Signifyd account, so the button asks for confirmation before submitting.
load_plugin_textdomain() call, which WordPress has not needed since 4.6 and this plugin's minimum of 6.0 can never reach.