Job
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] WooCommerce Admin ColumnsI have found the solution by myself.
This is the code u can use to make invoice number as a single Woocommerce admin order list.
Set this code in functions.php of your WP theme
function woo_order_extra_columns($columns) { $newcolumns = array( "cb" => "<input type = \"checkbox\" />", "invoice_number" => esc_html__('Factuurnummer', 'woocommerce'), ); $columns = array_merge($newcolumns, $columns); return $columns; } add_filter("manage_edit-shop_order_columns", "woo_order_extra_columns"); function woo_order_extra_columns_content($column) { global $post; $invoice_number = wcdn_get_order_invoice_number($post->ID); switch ($column) { case "invoice_number": echo $invoice_number; break; } } add_action("manage_posts_custom_column", "woo_order_extra_columns_content");Forum: Plugins
In reply to: [Print Invoice & Delivery Notes for WooCommerce] Send InvoiceThnx for your quick answer.
For now I know just enough :).
Forum: Themes and Templates
In reply to: Undefined property ErrorOw, I didn’t know that, i am sorry.
It’s actually quite logical 😉
Forum: Themes and Templates
In reply to: Undefined property ErrorThemeforest > 8Theme.
Forum: Themes and Templates
In reply to: [Theme: Mystile] WooCommerce: top navigation menuDear Caroline,
You can edit that, at: display option> menu’s> you have to make a new menu
On the left side you see “theme locations”.
The second option is the menu section for the top: “top menu”
Good luck.
Job
Viewing 5 replies - 1 through 5 (of 5 total)