Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 2,641 through 2,655 (of 3,725 total)
  • Author
    Posts
  • in reply to: Custom Taxonomy Block not respecting orderby #42105
    PeterPeter
    Moderator

    Hello,

    Meta Box UI does not support passing the custom args like that. Please use the code to register the custom taxonomy.

    in reply to: Using MB Blocks in Theme Templates #42104
    PeterPeter
    Moderator

    Hello,

    Do you mean to use the custom block in Full Site Editing (Appearance > Editor)? Currently, MB Blocks does not work with FSE, our development team is working on this feature to make the custom block works in FSE.

    PeterPeter
    Moderator

    Hello,

    You can add two or more frontend shortcodes on a page to submit post types on the frontend. But editing the post on the frontend will not work for all post types. So totally, please use one frontend shortcode per page.

    PeterPeter
    Moderator

    Hello Chris,

    Follow the documentation https://docs.metabox.io/extensions/mb-rest-api/
    please check the Rest API URL and see if the custom fields display under the meta_box key. If yes, I think MB Rest API works properly.

    PeterPeter
    Moderator

    Hello,

    Thanks for your details.

    I can reproduce the issue on my demo site. I've escalated this issue to the development team to fix it in the next update.

    in reply to: Regex remove everything after @ (including @) #42092
    PeterPeter
    Moderator

    Hello Sam,

    Meta Box does not support adding the JS code to the field settings to adjust the input value like that. You can use the validation to validate the display name input when creating/updating the user profile. Refer to the documentation https://docs.metabox.io/validation/

    in reply to: Inserting Images via the Beaver Shortcode #42088
    PeterPeter
    Moderator

    Hello,

    With the single_image field, there are some supported return values: title, caption, alt, description.

    [wpbb post:meta_box field='single_image_id' display='title']

    in reply to: Custom Taxonomy Block not respecting orderby #42087
    PeterPeter
    Moderator

    Hello,

    There isn't a way to pass the args manually when registering custom taxonomy with Meta Box UI. Also, I don't see the orderby in the list of accepted args when registering the custom taxonomy with code, please check the documentation
    https://developer.wordpress.org/reference/functions/register_taxonomy/

    in reply to: BUG in field group and WYSIWYG on page. #42084
    PeterPeter
    Moderator

    Hello Smith,

    Thanks for your feedback.

    There is an issue with the WYSIWYG field and our development team is working on this issue. Hopefully, it will be fixed soon. For now, please use the Text tab to add the value to the field and save the post.

    in reply to: Inserting Images via the Beaver Shortcode #42083
    PeterPeter
    Moderator

    Hello Chris,

    Now you can use the Beaver shortcode to display the single image URL
    [wpbb post:meta_box field='single_image']

    or display a list of images if using the shortcode to display image_advanced field

    [wpbb post:meta_box field='image_advanced']

    PeterPeter
    Moderator

    Hello,

    It's not an issue of Meta Box and needs some custom code to query the product variation so it is beyond our scope of support. If you are not able to complete the task, please contact us here https://metabox.io/contact/
    Our development team will help you with an extra fee.

    in reply to: Conditional Logic AND Disabling a field #42075
    PeterPeter
    Moderator

    Hello,

    MB Conditional Logic only supports showing/hiding a field based on a condition. It does not support disabling a field. If you are familiar with coding, you can create some custom JS code to disable a field, refer to this topic https://stackoverflow.com/questions/5963099/how-do-i-disable-form-fields-using-css

    PeterPeter
    Moderator

    Hello,

    1. Thanks, I will inform the development team to consider supporting an option to set the data type manually in the builder.

    1A. Yes, the code is the step to create the custom table. You will need to link the custom fields to the table. In the builder, you need to enable option "Save data in a custom table" and add the table name to the option below, and don't enable option "Create table automatically", screenshot https://monosnap.com/file/z8Zg1W3PfLoLFFGR2ihvibBdqnnAhb

    3. You can follow the documentation https://docs.metabox.io/functions/rwmb-meta/
    to get the post meta (field value) based on the post ID. For example:

    $post_ids = rwmb_meta( 'where_to_buy' ); 
    
    foreach ($post_ids as $post_id) {
        echo rwmb_meta( 'vendor_url', '', $post_id ); 
    }

    3A. I'm not sure what is the search you want to use but it needs to have some custom code to create an SQL query in the database and it's beyond the scope support of Meta Box. Meta Box supports inputting values in the backend and outputting the value in the frontend.

    3B. Thanks for your feedback. I will inform our development team to improve the documentation and UI for easier to use.

    Final: What is the selector or field type you are mentioning? Do you mean the default select field of Object type and Post type when creating the relationship?

    in reply to: Custom Taxonomy Block not respecting orderby #42071
    PeterPeter
    Moderator

    Hello Brandon,

    The custom taxonomy block is not created by Meta Box, it is the standard feature of WordPress. You can register a custom taxonomy with coding and enable show_in_rest to use the taxonomy block.

    in reply to: Cannot get any settings page values #42066
    PeterPeter
    Moderator

    Hello,

    Can you please share the generated PHP code from the field group that is assigned to the setting page? You can also use the WordPress function get_option() to get a setting page value.

    Your two functions get_mini_cta_value() and get_hero_status() look getting the field value associated with a post, not a setting page. Please read more in the documentation https://docs.metabox.io/extensions/mb-settings-page/#settings-fields

Viewing 15 posts - 2,641 through 2,655 (of 3,725 total)