Blog

Woocommerce Order Column Hooks

User Woocommerce block plugin hooks for manage order columns Assistant In a WooCommerce block-based setup, you can manage order columns using action and filter hooks. WooCommerce uses standard hooks to modify the admin order list, even in a block environment. ### Useful Hooks for Managing Order Columns: 1. **Adding a Custom Column:** add_filter('manage_edit-shop_order_columns', function ($columns) […]

Database Import for Staging

User We are just trying to import live database to our staging server to solve this issue at our demo server first. Without this I can not check the issue because we may need to alter and optimize some database quiries , and we can not perform his on live site directly Correct above sentence […]

Skype Snap Update Issue

User sudo snap install skype we have insalled via aboe but still ask for update Assistant If you've installed Skype using `snap` and it still prompts for an update, you can try the following steps: 1. **Check for Updates Manually**: Run the following command to manually check for and install any available updates for Snap […]

Show Popup Once Visit

User var myInterval = setInterval(function(){ if(!hasVideo && hasTime){ jQuery("#subscribe-btn").click(); clearInterval(myInterval); } }, 2000 show above popup once in one visiit Assistant To show the popup only once per visit, you can use `localStorage` to track whether the popup has already been displayed. Here's how you can modify your code: var myInterval = setInterval(function() { // […]

Customize WooCommerce Order Number

User customize value of order_number column woocommerce dashboard admin order section Assistant To customize the value of the `order_number` column in the WooCommerce dashboard admin order section, you can use the `woocommerce_order_number` filter hook. This allows you to modify the display of the order number shown in the admin panel. Here's a simple example of […]

Custom Column WooCommerce Orders

User // Add custom column to orders list // Add custom column to orders list add_filter('manage_edit-shop_order_columns', function ($columns) { print_r($columns); $columns['order_source'] = __('Order Source', 'your-textdomain'); return $columns; }); not working Assistant Your code looks mostly correct, but there could be a couple of reasons why it's not working. Let's go through some debugging steps and […]

Admin Order Notes Mockup

User We need to create a custom admin section that displays all order-level notes for a specific user. This will allow the admin to view manual order notes without having to check each order of user individually. Create mockup for above Assistant Here’s a mockup idea for the **Admin Order Notes Section**: ### **Page Title:** […]

WooCommerce Custom Order Columns

User manage_edit-shop_order_columns Assistant It looks like you're referring to modifying the columns in the WooCommerce admin orders list using the `manage_edit-shop_order_columns` filter. This filter allows you to customize the columns displayed in the **WooCommerce Orders** admin page. ### **Example: Add a Custom Column** You can add a new column (e.g., "Order Source") by using the […]

Custom Admin Section Task

User I’ve gone through the Basecamp description. Below is my understanding of the task required We need to create a custom admin section that displays all order-level notes for a specific user, allowing the admin to view manual order notes without checking each order individually. Our estimated time for this task is 8 hours. Thanks! […]

Custom Admin Section Development

User I’ve gone through the Basecamp description. Below is my understanding of the task required We need to create a custom admin section that displays all order-level notes based on the user, so the admin doesn't have to check each order of the user individually to view the manual admin notes. Our quote for this- […]