Skip to content

Instantly share code, notes, and snippets.

@pacmanito
pacmanito / flash-animation.css
Created December 10, 2021 14:03 — forked from damiencarbery/flash-animation.css
Edit stock levels in WooCommerce - Add editing capability to the List stock levels in WooCommerce plugin - https://www.damiencarbery.com/2019/10/edit-stock-levels-in-woocommerce
table.wp-list-table tr.updated { animation: highlight 3s ease 2; }
@keyframes highlight {
0% { background-color: inherit; }
50% { background-color: #d1fa88; }
100% { background-color: inherit; }
}
@pacmanito
pacmanito / functions.php
Last active October 27, 2021 04:47 — forked from kloon/functions.php
WooCommerce - Add send customer order notes email option
<?php
/**
* This adds an option to send order notes email manually via order actions drop-down.
*/
/**
* Filter to add a new menu to the dropdown
*
* @param array $actions
* @return array