Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
89 views

I’ve built a custom WooCommerce plugin to allow bulk printing of shipping labels from the Orders page. However, the custom bulk action I've added (Print Shipping Labels) does not appear in the Bulk ...
Amit Singh Chauhan's user avatar
0 votes
0 answers
71 views

In the source code of the MassEntity module of Unreal 5, Is the raw memory of all chunks under the same Archetype contiguous? // This is one chunk within an archetype struct FMassArchetypeChunk { ...
Sheldon Yancy's user avatar
1 vote
3 answers
249 views

I am processing FIX messages at high intensity and need to efficiently convert the input FIX message data into a Dictionary<int, string> for fast lookup. I have already attempted some ...
Minh Giang's user avatar
0 votes
3 answers
80 views

I need simple way to convert Memory2D from CommunityToolkit.HighPerformance package into simple 1D collection-like form. List / Array / Anything like that 1D. Best way i see by myself is MyMemory2D....
nuclear sweet's user avatar
0 votes
1 answer
80 views

I am trying to send a WhatsApp broadcast using Meta's WhatsApp API, but I am not able to fully utilize the 1K messages per second throughput limit. Current Architecture: I process phone numbers and ...
Dev Jalla's user avatar
  • 2,599
1 vote
1 answer
69 views

I've got some code working which shows a message at the top of the packing slips if we have a new customer. However, it's showing the message for all orders, so I've figured my code isn't getting the ...
adem007's user avatar
  • 121
2 votes
0 answers
240 views

I am developing an algorithm that multiplies large numbers. I am doing LeftLength x RightLength multiplications. Karatsuba algorithm does less multiplications. Currently, the algorithm is more ...
Fatih Doganay's user avatar
0 votes
1 answer
215 views

In WooCommerce admin orders page when using High Performance Order Storage (HPOS), I am trying to add a custom button on top of the page as shown in the screenshot below: I have tried code from this ...
Mehdi's user avatar
  • 1,795
0 votes
1 answer
155 views

I am trying to get the order Item Object from the Item ID when High Performance Order Storage is enabled. Neither the order object nor the item object is known. The order ID is not known either. Only ...
Catsy's user avatar
  • 35
1 vote
1 answer
926 views

We're working on updating some custom plugins to HPOS. I've looked at https://developer.woocommerce.com/docs/hpos-order-querying-apis/ for the answer and it didn't seem to have it. I'm looking for ...
Catsy's user avatar
  • 35
5 votes
2 answers
271 views

You can get Spans via System.Memory to.NET Standard 2.0 compatible libraries. But how do you do this the most efficiently in F#: let myRsp = "test1".AsSpan() let test = Seq.forall (fun x -&...
Tuomas Hietanen's user avatar
0 votes
1 answer
830 views

Since WooCommerce 8.9 came out, I've noticed a big slowdown when I click on an order page from WooCommerce -> Orders in my dashboard. I have a big store with many orders, and it takes many seconds ...
O. Jones's user avatar
  • 109k
2 votes
2 answers
560 views

I recently upgraded a Woocommerce website to use HPOS and I found out the custom column sorting no longer works. In Woocommerce I setup a sortable column for a customers last name. I adjusted my code ...
phpcoder's user avatar
1 vote
1 answer
449 views

We have created Custom fields the customers need to fill out to recieve their order since they are being sent to someone other then who ordered it. When someone other then who ordered it ask for a ...
davidgleibs's user avatar
2 votes
1 answer
1k views

I've created a plugin that updates a single field with a value of 0 or 1. I want to now add the ability to filter to only orders with that field that equals 1. The field meta data is "...
Alexandra Chavez's user avatar
1 vote
1 answer
183 views

I am working on a way our sales team can mark orders as manual and check back on them. We are using High Performance Orders Storage (HPOS) enabled. I need to be able to update the field value when the ...
Alexandra Chavez's user avatar
0 votes
0 answers
43 views

For example these to comparisons: If (1 < 10).. If (1.000.000.000 < 2.000.000.000).. Is the first comparison faster? Is this true for all languages or interpreters?
BigJ's user avatar
  • 2,052
2 votes
1 answer
450 views

I used this solution to filter users product list, now I'm looking for a solution to filter the orders list of WooCommerce in admin dashboard. That means, a logged-in user can only see the orders for ...
Cham's user avatar
  • 77
1 vote
1 answer
466 views

Based on Add columns to admin orders list in WooCommerce (+ HPOS) answer code, I am adding a custom column in the wc-orders dashboard. but I am unable to get it to work. The columns display on my wc-...
javitoor1001's user avatar
3 votes
1 answer
1k views

Due to upgradation in woocommmerce plugin the filter by which the medium/source was shown got disappeared. I some how retrieve the column og medium/source back but my data is not populating in it. The ...
ahmedwp's user avatar
  • 129
6 votes
3 answers
4k views

I'm in the process of converting an open source plugin to be HPOS-compatible. One of its features is additional filters on the orders list in admin (inline with the order statuses), eg: I can't seem ...
Scott L's user avatar
  • 85
0 votes
1 answer
122 views

I have a UI that allows someone to move a dial and the dial 'snaps' to each 'mark' on the dial. I want to add sound to this and I've made a very short 'click' sound that is a fraction of a second. I ...
iOSProgrammingIsFun's user avatar
0 votes
2 answers
1k views

I've the following code: int n = 150000; int[] myArray = Enumerable.Range(1, n).ToArray(); So I want myArray contains an enumeration like 1,2,3,4,etc... Of course the size of the array should be ...
Leandro Bardelli's user avatar