Peter Morlion
Peter Morlion
@cmonteiro128 Well, I couldn't get the tests to run green. I'm a little out of time currently. Don't know what @alex-vance 's situation is?
Thanks for the foreach tip, didn't know that. I realize my code isn't fit for some usages, but I've been using it for some time now. Performance-wise, I haven't really...
+1 no option to customize WooCommerce templates, but it's installed and the reason I installed the plugin. If I remove the `&& $settings` check in `class-mailtpl-admin.php` (line 141) it works.
I needed this too. This is how I did it: ``` $(function() { var availableTags = ['one', 'two']; $('#myTagUL').tagit({ singleField: true, singleFieldNode: '#myHiddenInputForPostingToServer', availableTags: availableTags, beforeTagAdded: function(event, ui) { return...
Well, in my case I'm using an ASP.NET UserControl, so what it essentially adds to the page is: ``` $(function() { var availableTags = ['one', 'two']; // etc. }); $(function()...
Agreed. In the meantime, what alternatives have you been using? I'm looking to update an old application to Bootstrap 5 and still need an autocomplete/typeahead input.
For now, I've added the typeahead javascript file from [here](https://twitter.github.io/typeahead.js/) but already had to modify it a bit.
Update: I've switched to this library with success: https://github.com/lekoala/bootstrap5-autocomplete
For what it's worth, I wanted to at least disable renewal emails and asked WooCommerce support. This was their answer: > If you would like to discontinue the use of...
Interesting! Then what is the effect on the `global.json` `rollForward` property? If I specify `latestMinor`, does it relate to the minor of the runtime or the minor of the SDK?...