Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 631 through 645 (of 3,837 total)
  • Author
    Posts
  • PeterPeter
    Moderator

    Hello,

    Thanks for the details. From Meta Box's perspective, we don't support loading the field scripts in the frontend if there is no frontend form. If you create your own form in the frontend, you can create custom code to customize the select2 field based on your requirements.
    I will also forward this request to the development team to consider supporting this case. I will let you know if it will be added to the development queue.

    in reply to: Customizer Settings and fields #48296
    PeterPeter
    Moderator

    Hello,

    In most cases, the option name that stores the customizer field value is theme_mods_themeSlug. If you don't know what the option name is, you can access the database and search for some keywords in the field value, table wp_options.

    PeterPeter
    Moderator

    Hello,

    If you don't use the frontend form in the frontend, there isn't any option to enqueue any field scripts (JS, CSS) in the frontend. I think there is no reason to do so.
    You can simply download the Select2 library to your project and enqueue it in the frontend to use a similar feature of select advanced field for your select field.

    in reply to: Can't populate coordinates with binding address field #48294
    PeterPeter
    Moderator

    Hello,

    So I can see that the Geolocation feature of Meta Box still works properly. If there is an issue with it when using Fluent Forms, please contact their support to get further assistance.

    Also, the fields City and State do not work because they are not supported when using Google Map. Please follow the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#other-fields

    in reply to: Advanced Location Rule: for different post types #48288
    PeterPeter
    Moderator

    Hello,

    > "I can select all Events and all Pages posts to show the field group" and "I can use the extension include/exclude to add the post IDs". can I achieve BOTH at the same time?

    In short, no. You can select all Events and Pages in the builder (UI). But if you want to add the post IDs to the include/exclude settings, you have to use the code.

    > show the field group to ALL Events posts and SOME Pages posts

    Please follow my reply above to use the code to register the custom fields, add some post IDs to the include/exclude settings to see how it works. Then you can add ALL Events post IDs and some Pages IDs.

    If you are not familiar with coding, we offer a customization service with an extra fee. Please contact us here https://metabox.io/contact/ for more details.

    in reply to: Can't populate coordinates with binding address field #48287
    PeterPeter
    Moderator

    Hello Marge,

    You have to use the Custom settings instead of HTML5 Attributes to set the binding for the field. Please check this screenshot https://ibb.co/NdytFy1H

    in the admin area, do you see the country field is populated when typing the address to the Street Address field? Please share a screen record of the geolocation fields in your site admin area, without the Fluent form.

    in reply to: Custom post type get stuck when Gutenberg enabled #48285
    PeterPeter
    Moderator

    Hello,

    Please share your site admin account by submitting this contact form https://metabox.io/contact/
    I will take a look.

    PeterPeter
    Moderator

    Thank you for the feedback. This issue has been escalated to the development team and we are working on it to fix the issue soon. The fix for this issue will be included in the next update of MB plugins.

    in reply to: Question about migrating fields to code #48278
    PeterPeter
    Moderator

    Hello Julia,

    Yes, you also need to remove the field group from the builder (UI). If it still doesn't work, you can try to copy the code and put it in the file functions.php in the theme folder and recheck the issue.
    If it works, I think your custom plugin is loaded before Meta Box plugins so the code doesn't work in this case.

    in reply to: Advanced Location Rule: for different post types #48277
    PeterPeter
    Moderator

    Hello,

    Yes, you can register the custom fields with code and use the extension include/exclude to add the post IDs to the meta box settings. For example:

    add_filter( 'rwmb_meta_boxes', 'prefix_include_exclude_demo' );
    function prefix_include_exclude_demo( $meta_boxes ) {
        $meta_boxes[] = array(
            'title'   => 'Include Meta Box',
            'include' => array(         
                // List of post IDs. Can be array or comma separated. Optional.
                'ID'              => array( 40,271,333,335,273),
    ...
    

    Please follow the documentation https://docs.metabox.io/extensions/meta-box-include-exclude/

    PeterPeter
    Moderator

    Hello,

    Do you deactivate the single plugin Meta Box? You can use only one plugin Meta Box AIO to have all features of MB plugins.

    PeterPeter
    Moderator

    Hello Codog,

    I'm afraid that it isn't possible to prevent the frontend submission form process on clicking the submit button. If you don't want to reload the page, you can enable Ajax to submit the post without reloading.

    in reply to: Advanced Location Rule: for different post types #48271
    PeterPeter
    Moderator

    Hello,

    Yes, in the builder, you can select all Events and Pages post to show the field group. If you want to show the field group on some specific posts, please use the code to register the field group. Following the documentation
    https://docs.metabox.io/extensions/meta-box-include-exclude/

    PeterPeter
    Moderator

    Hello Johannes,

    Thank you for your feedback.

    I can see the issue on my site. You can use one plugin Meta Box AIO to prevent this issue, it also includes Meta Box in the source.

    in reply to: Limit the endpoints to admins and WP Core #48268
    PeterPeter
    Moderator

    Hello Roderick,

    Meta Box doesn't support an option to limit the user to view the post type. You can use a third-party plugin to restrict access to a post type as well, for example https://wordpress.org/plugins/restrict-user-access/

Viewing 15 posts - 631 through 645 (of 3,837 total)