Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 2,686 through 2,700 (of 3,958 total)
  • Author
    Posts
  • in reply to: Validation does not work when field is clonable #6624
    Anh TranAnh Tran
    Keymaster

    Hi,

    This problem is caused by the validation library. It checks by the ID attribute. When cloning, we change the ID (by appending _1, _2, etc.) and thus, break the validation. We'll try to find a solution soon.

    in reply to: โœ…[Request] Force number of clones #6623
    Anh TranAnh Tran
    Keymaster

    Hi,

    Yes, you can do that by specified the std value. This code will set the 3 inputs (clones):

    array(
        'type' => 'text',
        'id' => 'test',
        'clone' => true,
        'max_clone' => 3,
        'std' => array( '', '', '' ) // Default values for 3 clones
    )
    in reply to: Conditional Login working slowly. #6619
    Anh TranAnh Tran
    Keymaster

    Dear ismail,

    I've checked the Conditional Logic plugin with your code and see it worked well. Here is my screencast:

    http://recordit.co/Wi02eOwWja

    I've measured via Chrome Console and see it took ~300ms to run all login, that's acceptable. Here is my screenshot:

    https://prnt.sc/g7p86u

    I've also tested via really old Macbook Air and it took me average ~450ms.

    Please check if there is something affected to this.

    Cheers!

    in reply to: MB Settings Page 1.3.1, Checkbox List #6572
    Anh TranAnh Tran
    Keymaster

    Hi zac, I've just fixed the bug with checkbox list. Please update the extension.

    in reply to: Heading as revision #6570
    Anh TranAnh Tran
    Keymaster

    Thank Troels for the bug and fix. We'll fix it now ๐Ÿ™‚

    Update: New version is available. Please update.

    in reply to: Conditional Login working slowly. #6568
    Anh TranAnh Tran
    Keymaster

    Dear ismail,

    Let me check and give you an answer within next 48 hours ๐Ÿ™‚

    Btw, Redux only works with their fields but Conditional Logic works with any DOM element, we also handle Column, unlimited Group so it may takes more resource.

    Anh TranAnh Tran
    Keymaster

    Hi, I think you need to separate them into 2 meta boxes. In this situation, the logic is applied to only 1 CPT. It's better to separate them.

    You can put fields into a parameter to save your code, like this:

    $fields = array(); // Your fields for both meta boxes here
    $meta_boxes[] = array(
        'id' => 'first-id',
        'post_types' => 'page',
        'show' => array(),
        'fields' => $fields,
    );
    $meta_boxes[] = array(
        'id' => 'another-id',
        'post_types' => 'solution',
        'fields' => $fields,
    );
    in reply to: Image upload does not work with MB Frontend Submission #6560
    Anh TranAnh Tran
    Keymaster

    Hi,

    The problem with image upload in the frontend is permission. Users need to login and have the upload_files capability. WP doesn't allow anonymous user to browse the media library and upload there.

    So, I'd suggest you use the simple image field, which allows uploading images, or you need to add more capabilities to allow users to upload (users still need to login though).

    in reply to: Can I request a refund #6557
    Anh TranAnh Tran
    Keymaster

    Thanks a lot for your info. I will check and fix the errors. Looks like the AIO plugin caused it.

    Anh TranAnh Tran
    Keymaster

    Dear ludovic,

    You're right. Conditional Logic currently only works in admin. I'll check the plugin and release new update asap!

    in reply to: Can I request a refund #6534
    Anh TranAnh Tran
    Keymaster

    Hi,

    That's totally fine. There is a benefit to know coding to use the plugin and extensions better, but it's still doable if you just follow the instruction.

    The refund has been issued.

    By the way, can you please tell me about the 1st problem, when you just activated the plugins and see the white screen. Do you see any error? Is there any error logged?

    That can help us fix the bugs for others.

    Thanks
    Anh

    in reply to: MB Rest API Fields POST Method #6462
    Anh TranAnh Tran
    Keymaster

    Hi, POST works, actually.

    Here is the code that implements that.

    You can send data in json format (string) or an array in format (field_id => value).

    in reply to: Geolocation not working in admin #6450
    Anh TranAnh Tran
    Keymaster

    Dear zazezi,

    Can you please try with another fresh install to test and post your code here so I can easy to replicate it?

    in reply to: โœ…Strange issue with tabs + columns #6444
    Anh TranAnh Tran
    Keymaster

    OK, great. We'll work on that.

    in reply to: Geolocation not working in admin #6438
    Anh TranAnh Tran
    Keymaster

    Dear zazezi,

    Can you please open the Console and copy the error if you see? If it doesn't show any error message, can you please copy your code here?

Viewing 15 posts - 2,686 through 2,700 (of 3,958 total)