Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,076 through 3,090 (of 3,958 total)
  • Author
    Posts
  • in reply to: Settings Page - Radio Buttons and Conditional Logic #4361
    Anh TranAnh Tran
    Keymaster

    Dear web-crossing,

    Sorry for the delay. I've check and see this is a bug of MB Conditional Logic. I'm working with it and will release the patch within 48 hours.

    Thanks and best regards,

    Anh TranAnh Tran
    Keymaster

    Dear Sinusite,

    Thanks for using our plugin.

    1. YES, it's not only works with Post meta boxes but also works with all other extensions like User Meta, Settings Page, Term Meta.

    2. YES.

    Let's see the demo:

    http://recordit.co/z4AbUaiFNx

    Best regards,

    Tan

    in reply to: Character Limit on Textarea #4352
    Anh TranAnh Tran
    Keymaster

    I can't access that page. It's your internal admin page. So, the problem is how that page exports/imports content. I think it doesn't relates to Meta Box. Please try deactivate the text limiter extension and try again.

    in reply to: Extensions licenses must be renewed every year? #4351
    Anh TranAnh Tran
    Keymaster

    Yes, that's right. Each purchase lets you get support and updates for 1 year. Please read more in the FAQ.

    in reply to: How to add icons to checkboxes? #4350
    Anh TranAnh Tran
    Keymaster

    Hi,

    I think the only way to do that is using custom CSS, something like this:

    input[type="checkbox"][value="xxx"] {
        background: url(image.jpg);
    }

    By default, the plugin outputs the checkbox only and CSS is the only way I think can resolve this.

    Edit: Sorry, I was thinking about normal checkbox fields built without the Builder. I think the Builder don't have such feature.

    in reply to: Select Box - Taxonomy use slug as value? #4344
    Anh TranAnh Tran
    Keymaster

    Just curious, why do you need to store slug instead of ID?

    in reply to: Help Update option value #4343
    Anh TranAnh Tran
    Keymaster

    Hi,

    You can run the following code:

    $option = get_option( 'option_name' );
    $option[$field_id] = $new_value;
    update_option( 'option_name', $option );
    in reply to: Problems with update from 4.8.7 to 4.9.6 #4342
    Anh TranAnh Tran
    Keymaster

    Hmm, it might relates with the way you register meta boxes. In 4.9.x, the biggest change is the WPML compatibility, which **forces** Meta Box to use init action to register meta boxes instead of previous admin_init.

    So, if you wrap your code like this:

    add_action( 'init', 'your_function' );
    function your_function() {
        add_filter( 'rwmb_meta_boxes', 'slug_register_meta_boxes' );
    }

    where init or any other hook is used, please change it to:

    add_filter( 'rwmb_meta_boxes', 'slug_register_meta_boxes' );

    I'm not sure if that's the correct problem, but some people meet it, so I guess you do. Please check your code for that.

    in reply to: Character Limit on Textarea #4341
    Anh TranAnh Tran
    Keymaster

    Hi, the plugin doesn't restrict on the content length displayed in the front end. It might be your PHP function that gets the content and displays it. Please check this.

    in reply to: Register different meta_box #4339
    Anh TranAnh Tran
    Keymaster

    Ya welcome. Please don't hesitate to tell us if you have any problem 🙂

    in reply to: Assign Custom Post type to Custom Taxonomy #4336
    Anh TranAnh Tran
    Keymaster

    I've just released the new version 1.2.5 for this. Please update the extension.

    Sorry for the delay.

    in reply to: Settings Page - Radio Buttons and Conditional Logic #4335
    Anh TranAnh Tran
    Keymaster

    Let me check and answer in the next 2 days 🙂

    in reply to: Register different meta_box #4334
    Anh TranAnh Tran
    Keymaster

    You should add $meta_box argument for the function and return $meta_box for the filter

    
    funtion cs_metabox1($meta_box)
    {
        // Do your job here
    
        return $meta_box;
    }
    
    in reply to: Conditional Logic in options for select box #4320
    Anh TranAnh Tran
    Keymaster

    Dear MD3,

    Sorry the ID attribute should works as it does, it's impossible to set same id for different fields. And Conditional Logic only works with different ids.

    Best regards,

    Tan

    in reply to: Conditional Logic in "select_tree" #4319
    Anh TranAnh Tran
    Keymaster

    Dear sgerritse,

    Sorry, Conditional Logic doesn't support select tree right now. I'm thinking the way to implement this, can't confirm the ETA now but I think late November is okay.

    Best regards,

    Tan

Viewing 15 posts - 3,076 through 3,090 (of 3,958 total)