Comments 1John started the conversationFebruary 6, 2025 at 6:58amHi,Can the actions field with "Pay credit" be removed from the orders & order detail page?Attached files: Screenshot 2025-02-06 at 5.50.26 pm.png Screenshot 2025-02-06 at 5.50.26 pm.png 2,330WebWizards repliedFebruary 6, 2025 at 9:47pmHello John, Certainly, to remove that action / button, please add the following PHP code snippet to your site: add_filter('woocommerce_my_account_my_orders_actions', function($actions, $order){ unset($actions['pay_credit']); return $actions; }, 1000000, 2); A PHP snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/ Kind regards, Stefan Sign in to reply ...
Hi,
Can the actions field with "Pay credit" be removed from the orders & order detail page?
Attached files: Screenshot 2025-02-06 at 5.50.26 pm.png
Screenshot 2025-02-06 at 5.50.26 pm.png
Hello John,
Certainly, to remove that action / button, please add the following PHP code snippet to your site:
A PHP snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/
Kind regards,
Stefan