Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1,486 through 1,500 (of 3,708 total)
  • Author
    Posts
  • in reply to: General, Appearance, and Advanced tabs not showing #12982
    Anh TranAnh Tran
    Keymaster

    Hi Christine,

    Sorry for this issue. Zeeshan just left our support team, so I'll continue support you on this. I think the error in the console is not the cause of the bug since it's only the map file. Can you please take a screenshot of the MB Builder screen? And if possible, please send me a temporary admin account via contact form, so I can do some debug on your site.

    Thanks.

    in reply to: MB Group "std" is not showing up in settings page #12963
    Anh TranAnh Tran
    Keymaster

    That's so great, Razib. I've just added that to the latest version 1.2.18 (along with other fixes as well).

    Anh TranAnh Tran
    Keymaster

    Thanks for your feedback. It's strange that I couldn't replicate the bug in the latest version 1.6.18 :(.

    Anh TranAnh Tran
    Keymaster

    I don't think there's any side effect. This configuration only increases the number of inputs submitted.

    To avoid this issue in the future, reducing the number of inputs is the best way. However, I guess it's not feasible in this case. But as long as you keep the max_input_vars high, you don't need to worry about that.

    Anh TranAnh Tran
    Keymaster

    I'm so sorry. This was the debug code that I forgot to remove in the plugin. I've just fixed the plugin, please update.

    in reply to: Taxonomy count doesn't increment #12949
    Anh TranAnh Tran
    Keymaster

    Hi Juan,

    Thanks for your feedback.

    The problem here is the field type is taxonomy_advanced. This field does not setup a relationship between posts and terms. Instead, it only saves terms' IDs in the custom table (or post meta if you don't use custom table).

    To setup the correct relationship between posts and terms, please use field type taxonomy. In this case, the plugin does not save any value. Instead, it only sets the post terms. And thus, the WordPress counter works correctly.

    in reply to: SearchWP Integration #12948
    Anh TranAnh Tran
    Keymaster

    Hi Todd,

    Yes, it's on our plan for 2019. We'll let you know when it's done.

    Anh TranAnh Tran
    Keymaster

    This might relate to PHP's configuration. Please take a look at this solution.

    in reply to: Form don't show #12946
    Anh TranAnh Tran
    Keymaster

    Hi Garth, can you take a video record of the admin / or code, where you setup the meta box and how you insert it in your template?

    Anh TranAnh Tran
    Keymaster

    I've just sent you version 1.6.17 via email. Please take a look.

    Anh TranAnh Tran
    Keymaster

    Hi criv23,

    Are you using the latest version 1.6.18? Did the 1.6.17 work for you?

    in reply to: Form don't show #12924
    Anh TranAnh Tran
    Keymaster

    Can you send me a temporary admin account via contact form? I'll check that more closer.

    in reply to: Form don't show #12922
    Anh TranAnh Tran
    Keymaster

    How did you call the shortcode? Did you put it in post content or text widget?

    If you call with PHP like

    echo '[mb_frontend_form id="area"]';

    Then it doesn't work. The correct code is:

    echo do_shortcode( '[mb_frontend_form id="area"]' );

    in reply to: Form don't show #12919
    Anh TranAnh Tran
    Keymaster

    Hi Garth,

    To check if the meta box is registered only for admin, please check the PHP file that has the meta box code. You might want to check something similar to this:

    add_action( 'admin_init', 'your_function' );
    function your_function() {
        add_filter( 'rwmb_meta_boxes', 'your_meta_boxes' );
    }
    
    // Or
    if ( is_admin() ) {
        include 'your-meta-boxes.php';
    }

    Regarding the purchase: yes, you only need the Frontend Submission extension.

    in reply to: Form don't show #12917
    Anh TranAnh Tran
    Keymaster

    Hi Garth John,

    Do you have any condition when registering the meta boxes? Something like is_admin(). Or you have some condition when load the PHP file that contains the meta boxes code. The MB Frontend Submission only works if the meta boxes registered on both front end and back end.

Viewing 15 posts - 1,486 through 1,500 (of 3,708 total)