Сначала в следующем коде я сначала добавляю кнопку в список заказов администратора на основе пользовательского статуса:
add_filter( 'woocommerce_admin_order_actions', 'add_custom_order_status_actions_button_example', 100, 2 );
function add_custom_order_status_actions_button_example( $actions, $order ) {
// Your custom status (without "wc-")
$action_slug = 'custom';
// Set the action button
$actions[$action_slug] = array(
'url' => wp_nonce_url( admin_url( 'admin-ajax.php?action=woocommerce_mark_order_status&status='.$action_slug.'&order_id=' . $order->get_id() ), 'woocommerce-mark-order-status' ),
'name' => __( 'Custom', 'woocommerce' ),
'action' => $action_slug,
);
return $actions;
}
Затем теперь этот следующий код я назначаю значку «глаз» кнопке заказа:
// Set Here the WooCommerce icon for your action button
add_action( 'admin_head', 'add_custom_order_actions_button_css' );
function add_custom_order_actions_button_css() {
// The key slug defined for your action button
$action_slug = "custom";
echo '<style>.wc-action-button-'.$action_slug.'::after { font-family: woocommerce !important; content: "\e010" !important; }</style>';
}
Значок поставляется с включенным Библиотека значков Woocommerce
Код входит в файл function.php вашей активной дочерней темы (активная тема)).Протестировано и работает.
Или вы можете использовать входящую в комплект библиотеку значков дашиконов WordPress
С этими правилами CSS вместо: font-family: dashicons !important; content: "\f177" !important;