Néstor Sabater
Néstor Sabater
Can confirm It's not workig for me to run on windows (Android) and M1 (IOS) in version 7.10.9, but It works on ignite-cli 7.10.2. Different error but also related with...
Just some info if someone needs storybook and still facing issues: If I remove < ToggleStorybook > as proposed, it works, but thats just a workaround, the real issue is...
A detailed look into userExtendedValidateAll() shows that this line is returning false, so the function does not do its job: `if (($isSignup && (int) $defs['user_extended_struct_applicable'] === (int) e_UC_MEMBER && (int)...
I just want to modify the value of an user extended field, taking into account its params, for example if its a radio button, it should only accept one of...
No, I need to edit values programatically, for example, I'm updating the extended user field "gender" when the event user_xup_signup is fired. This would be perfect: `e107::user($id)->setExtendedFront('gender', 'M => UE_LAN_MALE');`...
Thank you @Jimmi08 , what I'm asking is just for the best way to modify a extended user field WITHOUT an input element. I'll check the way signup does it...
Maybe this helps https://developer.android.com/reference/android/accounts/AccountManager.html
Not sure if there is an alternative/easiest method, but would this also be the approach to avoid repeating results wich have the same field value? For example not to query...
No data returned. In my local installation and in e107.org Test url: https://e107.org/search.php?q=gold&s=1&r=0&in=&ex=&ep=&be=&t=all&ajax_used=1 There should be 1 result in news.
To me, this worked out: ``` mock.add({ method: 'POST', path: `/my_index/_bulk` }, () => ( new ResponseError({ body: error, statusCode: 404, headers: {}, meta: {} as any, warnings: [], })...