Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 301 through 315 (of 3,835 total)
  • Author
    Posts
  • in reply to: Google Autofill not working #49224
    PeterPeter
    Moderator

    Hello,

    Thanks for the details. I can see the issue with the Geolocation fields when enabling conditional logic. Let me escalate the issue to the development team to fix it.

    in reply to: Error in character count routine - Custom Fields #49223
    PeterPeter
    Moderator

    Hello Jayron,

    Thanks for reaching out.

    There is an issue with the Text Limiter feature when adding the prepend value to the field. I've escalated this issue to the development team to fix it as soon as possible.
    In the meantime, you can remove the prepend value to make it work.

    in reply to: Problem creating CPT #49222
    PeterPeter
    Moderator

    Hello Jayron,

    I'm not able to reproduce the issue on my demo site. The placeholder %singular_name% should be replaced with your singular name in the Labels tab. Please update Meta Box AIO to the latest version 3.2.0, create a new CPT then check this issue again.

    in reply to: 1/3 tabs on my setting page are blank #49220
    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    Can you please export the not-working field group to a JSON file and share it with me? Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import

    Also, do you see any JavaScript errors in the Console tab of the browser inspect tool?

    in reply to: From and To fields reversed...? #49219
    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    Yes, that is expected behavior. The field setting will be applied to the reversed object type from <-> to because you are actually using the field of the reversed object type.
    It might be confusing at first time but everything works as it is.

    Let me know if you have any issues when using MB Relationships extension.

    in reply to: Google Autofill not working #49206
    PeterPeter
    Moderator

    Hello,

    I see there are some issues when checking your field group:

    1. Address fields, if you use the custom ID, you have to use the binding setting, screenshot https://imgur.com/wkyHmpF
    Following the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#custom-binding

    2. Field group setting doesn't have geo.api_key, screenshot https://imgur.com/J5YL3hj
    Following the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#geolocation-api

    After that, the address fields are auto-populated with values as well. Here is the screen record https://drive.google.com/file/d/1l_mZHqxbYdltxVcGxMW2zC_b7u0rlMK0/view?usp=drive_link

    in reply to: Hiding/removing the single post page of certain post types #49205
    PeterPeter
    Moderator

    Hello,

    Thanks for your feedback.

    I will inform the development team to consider supporting this feature in future updates.

    in reply to: Google Autofill not working #49197
    PeterPeter
    Moderator

    Hello,

    The Geolocation extension still works properly on my demo site, screenshot https://imgur.com/ead26K8. I think there could be an issue with your Google API Key. Please try to create a new key and recheck the issue.

    If it still doesn't work, please export your field group to a JSON file and share it with me. I will import it to my site and investigate the issue.

    in reply to: Unwanted Extensions - Unable to Check "Off" #49196
    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    You need to have those plugins activated on your site to enable/disable the extensions
    - Beaver Builder
    - Elementor
    - FacetWP
    - Yoast

    but somehow, the option meta_box_aio in the database has values for those extensions. I suggest you access your database, table wp_options, search for the option meta_box_aio and update it with value below to fix the issue.

    a:1:{s:10:"extensions";a:28:{i:0;s:16:"mb-acf-migration";i:1;s:16:"mb-admin-columns";i:2;s:9:"mb-blocks";i:3;s:15:"mb-comment-meta";i:4;s:19:"mb-custom-post-type";i:5;s:15:"mb-custom-table";i:6;s:18:"mb-divi-integrator";i:7;s:22:"mb-frontend-submission";i:8;s:12:"mb-rank-math";i:9;s:16:"mb-relationships";i:10;s:11:"mb-rest-api";i:11;s:11:"mb-revision";i:12;s:16:"mb-settings-page";i:13;s:12:"mb-term-meta";i:14;s:20:"mb-toolset-migration";i:15;s:12:"mb-user-meta";i:16;s:8:"mb-views";i:17;s:16:"meta-box-builder";i:18;s:16:"meta-box-columns";i:19;s:26:"meta-box-conditional-logic";i:20;s:20:"meta-box-geolocation";i:21;s:14:"meta-box-group";i:22;s:24:"meta-box-include-exclude";i:23;s:18:"meta-box-show-hide";i:24;s:13:"meta-box-tabs";i:25;s:17:"meta-box-template";i:26;s:21:"meta-box-text-limiter";i:27;s:16:"meta-box-tooltip";}}

    PeterPeter
    Moderator

    Hello Nick,

    The frontend validation filter still works well on my demo site. You can try to setup a clean environment with WordPress and Meta Box plugins to recheck this. If it works, please deactivate all plugins except Meta Box plugins, switch to a WordPress theme to troubleshoot the issue.

    PeterPeter
    Moderator

    Hello,

    Thanks for reaching out.

    There could be an error in the background when the editor user saves the post. Please enable WP debug by following the documentation https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/

    then you can login as an editor, edit the post and save some changes. Then check the error log if there are any error messages when you save the post.

    in reply to: Default fields validation #49189
    PeterPeter
    Moderator

    Hello,

    Yes, the MB user registration form doesn't sanitize the username field as WordPress does. It is simply a text field and we use the function sanitize_text_field to sanitize this field. See more here https://github.com/wpmetabox/meta-box/blob/master/inc/sanitizer.php#L50

    and check the function get_register_fields() in the file /wp-content/plugins/meta-box-aio/vendor/meta-box/mb-user-profile/src/DefaultFields.php

    If you want to customize this field, you can use the filter hook rwmb_profile_register_fields, added to the function get_register_fields.

    in reply to: Show meta fields in Add New User #49187
    PeterPeter
    Moderator

    Hello,

    Currently, we don't have a plan to support this feature. I will update you in this ticket if I have more information.

    Thank you.

    in reply to: Save progress of new or edit form automatically #49178
    PeterPeter
    Moderator

    Hello,

    You can use some action hooks like rwmb_frontend_before_form, rwmb_frontend_after_form, rwmb_frontend_after_submit_button ... then add some JS code to the callback function to run it in the frontend form.

    Following the documentation https://docs.metabox.io/extensions/mb-frontend-submission/#general-hooks

    in reply to: Checkbox List - Save as Serialized Array #49176
    PeterPeter
    Moderator

    Hello,

    Currently, there isn't an option to save the checkbox list field value to the database as a serialized array. I will inform the development team to consider supporting this feature in future updates.

    Thank you.

Viewing 15 posts - 301 through 315 (of 3,835 total)