Created
March 11, 2026 10:52
-
-
Save rajeshsingh520/a520513a96a386941ea5c0295507ba91 to your computer and use it in GitHub Desktop.
order pickup location by name
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| add_filter('pisol_dtt_get_location', function($arg){ | |
| $arg['orderby'] = 'title'; | |
| $arg['order'] = 'ASC'; // ASC or DESC | |
| return $arg; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment