Hi Jan,dharbitindy wrote: ↑2022-01-17 17:15Awesome Jan!jsetzer wrote: ↑2022-01-17 16:59Code: Select all
if (memberID != 'admin' && memberID != 'batman') { // ... }
Thanks again,
David
I hate to keep bugging you on this but the only memberID that this works for in my case is 'admin'. I can get the others to work only if I use their individual member ID's. The Group isn't working even though those individuals are in the groups specified? This below is what I have which does work for the individual members, but would rather do this by group if possible.
var dv = AppGiniHelper.dv;
AppGiniHelper.getMemberID(function(memberID) {
if (memberID != 'admin' && memberID != 'jharbit' && memberID != 'mlemerick' && memberID != 'mleagre') {
dv.getFields(["price_lb", "markup_percent", "price_total"]).hide();
}});