Name: wogc/admin/manage_shop_order_column_data
Type: Action
Arguments: $post, $column_name
The filter can be used to render data for a custom created column on SuperAdmin Orders interface.
The following example render html for column called Products
add_action('wogc/admin/manage_shop_order_column_data', 'custom_wogc_admin_manage_shop_order_column_data', 10, 2);
function custom_wogc_admin_manage_shop_order_column_data( $post, $column_name )
{
if ( $column_name != 'products')
...
View More
Filter
woogc/orders/product_meta/ignore
Filter being used when retrieving a order product. Should return an array with the product meta fields to ignore.
Example
add_action('woogc/orders/product_meta/ignore', 'my_woogc_orders_product_meta_ignore');
function my_woogc_orders_product_meta_ignore($ignore)
{
$ignore[] = 'another_custom_field';
return $ignore;
...
View More
Action
woogc/options/options_html
Action being used when options output. Should be used to add more options
Example
add_action('woogc/options/options_html', 'my_woogc_options_options_html');
function my_woogc_options_options_html()
{
?>
<select name="my_custom_option">
...
View More