Skip to content
Advertisement

Auto assign a shop manager to a new WooCommerce order based on variable increment

I’m trying to assign every new order to a list of shop managers. What I need is like a queue, so every time a new order is created assign to the next shop manager in the queue.

This is the code I have:

JavaScript

The problem I’m dealing with now is that the $i variable can’t be stored even though I increment the value that doesn’t change so that the next time the value is 0 again. Also every time $i reaches 4, it should go back to 0

Any advice?

Advertisement

Answer

To manage $i you can use the following WordPress functions:

These will allow you to modify or reset $i every time the hook callback function is called

So you get:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement