Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 661 through 675 (of 3,837 total)
  • Author
    Posts
  • in reply to: Just Upgraded - And problems straight away #48219
    PeterPeter
    Moderator

    Hello Bertus,

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

    in reply to: Cloneable Fields to Multiple #48216
    PeterPeter
    Moderator

    Hello Tanja,

    If you use the cloneable date field in a cloneable group, the data is saved to the database in a serialized format (array). So if you want to query posts by date field, you can follow the tutorial in your post, use the single cloneable field and enable the setting Clone as multiple to get a single value per row in the database.

    Also, please note that, in case of using Bricks Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
    Refer to our support policy https://metabox.io/support/topic/support-policy/

    in reply to: Elementor - Listing Chosen Posts #48215
    PeterPeter
    Moderator

    Hello Simon,

    You can simply add a Text or Heading widget and select data from Meta Box field post to display the title and link to the post. However, it doesn't support getting other post data like featured image, excerpt ...

    in reply to: jQuery not working in the editor anymore after update #48214
    PeterPeter
    Moderator

    Hello,

    Thanks for following up. Our development team has spent time investigating the issue, and it looks like a limitation of WordPress and the custom block. We are still trying to find a way to make the preview of custom blocks work in the editor.
    I will let you know when it's done.

    PeterPeter
    Moderator

    Hello Jon,

    If you are using MB Views to output the map field, you should add another attribute to the data items and assign it to the post URL (permalink). Then add the URL to the popup in the JavaScript code. Below is an example:

    {% set restaurantsArray = restaurantsArray|merge(
    [
       {
          'longitude':
          'latitude':
          'address':
          'title':
          'icon':
          'url': post.url
       }
    ] ) %}

    marker.bindPopup( '<b>' + location_on_map.title + '</b><br>' + location_on_map.address + '<br><a href="' + location_on_map.url + '">Go to Page</a>' ).openPopup();

    Note: supporting more customization code is beyond our scope of support. If you are not able to complete the task, we offer a customization service for an extra fee. Please contact us here https://metabox.io/contact/ for more details.

    in reply to: Conflict with Polylang Pro v3.7+ #48208
    PeterPeter
    Moderator

    Hello Graham,

    Thanks for reaching out.

    First thing, please update Meta Box AIO to the new version 2.2.0 and recheck the issue. If it still doesn't work, please share your site admin account by submitting this contact form https://metabox.io/contact/

    I will take a look.

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

    Hello Aryan,

    Do you see any fatal error in the WP debug log or JavaScript error in the Console tab of the browser devtool? If so, please share the error message with me.
    https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
    https://developer.chrome.com/docs/devtools/open

    Also, you can export the field group to a JSON file and share it here. I will import it to my demo site and check the issue. Following the documentation
    https://docs.metabox.io/extensions/meta-box-builder/#export--import

    in reply to: Custom Post Type & Posts Field #48204
    PeterPeter
    Moderator

    Hello Simon,

    Yes, when creating the post field, you can set the post type to show the posts from a specific CPT in the list. It is noted in the documentation https://docs.metabox.io/fields/post/#settings

    in reply to: Elementor - Listing Chosen Posts #48203
    PeterPeter
    Moderator

    Hello Simon,

    Thanks for reaching out.

    If you use the single field post, not a subfield in a group field, you can use the Text widget to output the field value the frontend with a simple format/style.

    If you use the group field, you can create the skin to display subfield values in a template. I think point 1 would be better.

    Regarding the Group Skin, I see you do not select the Group Skin to use the skin on the template, see this screenshot https://imgur.com/zRHIUQH
    can you please recheck this?

    PeterPeter
    Moderator

    Hello,

    Sorry for the delayed response. Please share your details and link to the repo by submitting this contact form https://metabox.io/contact/
    I will forward it to the development team to take a look.

    Thank you.

    in reply to: Metablock and Views #48188
    PeterPeter
    Moderator

    Hello,

    Please update Meta Box plugins to the latest versions to select View template in the Block Render Settings section, see this screenshot https://imgur.com/MsyAbOv

    If you can use the PHP code to set the View template, you don't need to use a callback function to create output for the custom block. The View template works as the callback function, you can create the output with the View template properly.

    in reply to: How to move existing fields under a new Group? #48185
    PeterPeter
    Moderator

    Hello Julia,

    Thanks for reaching out.

    It is possible to move a field under a group field. You need to add at least one subfield to the group field then you can drag and drop a top field under the group. Please check this screen record https://imgur.com/18SD1XJ

    And please note that, the field value won't be displayed when you edit the post because the group field has a different data type stored in the database. Following the documentation
    https://docs.metabox.io/extensions/meta-box-group/#getting-sub-field-values

    PeterPeter
    Moderator

    Hello Nathan,

    The issue with tabs when using the builder has been fixed in Meta Box AIO version 2.1.1. If it doesn't work on your site, can you please share a screen record of the issue?

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

    Hello,

    You can replace the meta box setting

    'settings_pages' => ['homepage-masthead-text'],

    to

    'panel' => '', to show the top-level section in the customizer

    $meta_boxes[] = [
        'title'          => __( 'Homepage Intro Text', 'wcpp' ),
        'id'             => 'homepage-masthead-wysiwyg',
        'panel' => '',
    ...
    ]

    Please follow the documentation https://docs.metabox.io/extensions/mb-settings-page/#top-level-sections

    Regarding the blocks, if you want to use the Meta Box custom fields with blocks, you need to create/register a custom block to use it. There isn't an option to use the custom fields with standard WordPress blocks.

    in reply to: CustomModel fields via VisualBuilder #48178
    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    Currently, we only support working with the custom model by code. If you want to create a custom model and fields, you have to use the code to register them. You can put the code in the file functions.php in your custom plugin or theme.
    If you are not familiar with coding, we offer a customization service. Please contact us here https://metabox.io/contact/ for more details.

Viewing 15 posts - 661 through 675 (of 3,837 total)