wallacelin
Forum Replies Created
-
Amazing! Wasn’t expecting this to be actually possible but that’s great. Thank you, I shall replace my code with this.
Hello,
Is there any way we can change the label of those buttons conditionally based on categories or something?
Edited: Never mind, I went ahead and did this with custom jQuery.
- This reply was modified 7 years, 4 months ago by wallacelin. Reason: support no longer required
Thank you for your quick response and fix!
Marking this as resolved because 1. I found a solution with an alternative plugin and 2. No response from developer.
Forum: Plugins
In reply to: [Multi-Step Checkout for WooCommerce] Custom StepsOkay, thank you for letting me know so quickly!
Forum: Plugins
In reply to: [Custom Fee Woocommerce] Monthly ReportHello Vidish,
I have exported the orders in a .CSV that included the fee so I won’t be needing your assistance further but thank you for your response.
Cheers
Forum: Plugins
In reply to: [WooCommerce] Custom Column for Customer’s Notes?Update: I successfully added the column and have customer’s notes on it. My code is as follow:
/* Add column "Order Notes" on orders page to display Customer's Notes */ add_filter('manage_edit-shop_order_columns', 'add_customer_note_column_header'); function add_customer_note_column_header($columns) { $new_columns = (is_array($columns)) ? $columns : array(); $new_columns['order_customer_note'] = 'Order Notes'; return $new_columns; } /* End of adding "Order Notes" column */ add_action('admin_print_styles', 'add_customer_note_column_style'); function add_customer_note_column_style() { $css = '.widefat .column-order_customer_note { width: 15%; }'; wp_add_inline_style('woocommerce_admin_styles', $css); } /* Add Customer's Notes to the "Order Notes" column */ add_action('manage_shop_order_posts_custom_column', 'add_customer_note_column_content'); function add_customer_note_column_content($column) { global $post, $the_order; if(empty($the_order) || $the_order->get_id() != $post->ID) { $the_order = wc_get_order($post->ID); } $customer_note = $the_order->get_customer_note(); if($column == 'order_customer_note') { echo('<span class="order-customer-note">' . $customer_note . '</span>'); } }However, I’d like to move it “forward” to between the “Status” and “Ship to” columns, and if possible have the same width as “Ship to”. How can I do this?
Forum: Plugins
In reply to: [WP-PostRatings] Display Forum Topics with Ratings?Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] Notify for a Specified Forum?Ahh righto don’t know what I was thinking (or rather not thinking). Thank you once again!
Forum: Plugins
In reply to: [bbPress Notify (No-Spam)] Notify for a Specified Forum?Thanks for the answer Vinny! My support forum ID is 996, so I’ll add
apply_filters( 'bbpress_topic_notify_recipients', $recipients, $topic_id, 996 );to my theme’s functions.php.Forum: Plugins
In reply to: [W3 Total Cache] Exclude X Theme JS from MinifyingI ended up having to switch to using WP Fasted Cache due to this error. W3C is a superb and comprehensive caching plugin, but this particular site requires something a little different. I’m still using it on every other websites.
Forum: Reviews
In reply to: [Disable Cart Fragments] Pretty good…Hello, my site must also use PHP 5.3. I’m not familiar with customizing a plugin but I’d love to use this instead of the manual way of dequeuing cart fragmentation from functions.php and have the ability to specify where to disable. Any luck on getting this to work?
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Format Values as Uppercase?Thank you, that’s perfect!
Forum: Fixing WordPress
In reply to: Plugins for Multi-User Kitchen Order ScreenCan you bring back the other one and delete this one then? This is in the wrong place, I meant to put it in Misc/Everything Else.