Merge pull request #31292 from robertmassaioli/patch-1
The woocommerce_webhook_options needs webhook
This commit is contained in:
commit
e32e410f62
|
@ -152,7 +152,14 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|||
</tbody>
|
||||
</table>
|
||||
|
||||
<?php do_action( 'woocommerce_webhook_options' ); ?>
|
||||
<?php
|
||||
/**
|
||||
* Fires within the webhook editor, after the Webhook Data fields have rendered.
|
||||
*
|
||||
* @param WC_Webhook $webhook
|
||||
*/
|
||||
do_action( 'woocommerce_webhook_options', $webhook );
|
||||
?>
|
||||
</div>
|
||||
|
||||
<div id="webhook-actions" class="settings-panel">
|
||||
|
|
Loading…
Reference in New Issue