Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,211 through 3,225 (of 3,722 total)
  • Author
    Posts
  • PeterPeter
    Moderator

    Hello Ole,

    Unfortunately, there is no option/way to change that parameter. Please leave it as it is.

    in reply to: Google Map Field attached to User Profile not updating #40482
    PeterPeter
    Moderator

    Hello,

    What I means is when using the WS Form, the Map field value is not saved with the correct format latitude,longitude,zoom as written down in the documentation. That's why it does not work.

    Also, the WS Form team maintains compatibility with Meta Box so I recommend contacting them to ask for help with this issue. You can send the link to this topic to them when submitting a question.
    Please read more here https://docs.metabox.io/compatibility/

    PeterPeter
    Moderator

    Hello,

    The IDs of the two input fields are: user_pass and user_pass2.

    in reply to: Custom field changes won't save #40480
    PeterPeter
    Moderator

    Hello Peter,

    Can you please export your field group to a JSON file and share it here? I will import it to my demo site to see if it works.

    in reply to: Required field is stored empty #40478
    PeterPeter
    Moderator

    Hello,

    Thanks, I see the issue with the validation in the block and I've escalated this issue to the development team to fix this. It will be included in the next update or so.

    PeterPeter
    Moderator

    Hello Scott,

    I also see that issue on my demo site. I've escalated this issue to the development team to check this and get back to you if I have any information.

    in reply to: Problems with columns when displaying taxonomies #40466
    PeterPeter
    Moderator

    Hello,

    I do not see the admin column registered in your code. It should be like this

    			array(
    				'id' 			=> 'taxonomy_type',
    				'type' 			=> 'taxonomy_advanced',
    				'name' 			=> __( 'Type', 'ims-home-i18n' ),
    				'desc' 			=> __( 'Select the type of the log', 'ims-home-i18n' ),
    				'taxonomy' 		=> 'changelog_type',
    				'field_type' 	=> 'select',
    				'remove_default' => true,
    				'admin_columns' => 'after title', //here
    			),

    Please read more on the documentation https://docs.metabox.io/extensions/mb-admin-columns/

    PeterPeter
    Moderator

    Hello Steven,

    Please try to deactivate all plugins except Meta Box and MB extensions, switch to a standard theme of WordPress and check this issue again. If the issue persists, please copy your site to a staging site then share the credentials to this contact form https://metabox.io/contact/, I will take a closer look.

    in reply to: Licence Management Bugs #40464
    PeterPeter
    Moderator

    Hello Julie,

    It should be in 24 hours.

    in reply to: Use Profile field is not displaying (email) #40463
    PeterPeter
    Moderator

    Hello,

    Yes, I understand this case. Actually, the user_email is not a custom field when saving the user profile. If you check the database, it is saved to the table wp_users, not the table wp_usermeta. Using the Meta Box custom field to relocate it on the page is a hacky way.

    I hope that makes sense.

    PeterPeter
    Moderator

    Hello,

    Can you please try to deactivate all plugins except Meta Box, MB AIO and switch to a standard theme of WordPress then recheck this issue? The width of the input box can be affected by the style of the theme or a plugin on your site.

    in reply to: Add Image To Advanced Select Option #40453
    PeterPeter
    Moderator

    Hello,

    Thanks, I understand that you need to display the saved value when editing the post. I already said you need to use the selected attribute of the <option> tag to display the saved value first instead of Low value. You can read more on this topic https://wordpress.stackexchange.com/questions/105471/how-to-mark-an-option-as-selected

    For example:

    <?php 
        if( $meta == 'High' ) {
            $select = 'selected';
        }
     ?>
    <select id="alert_type">
        <option value="Low" data-img_src="/wp-content/uploads/2022/12/Low.png">Low</option>
        <option value="High" <?php echo $select ?> data-img_src="/wp-content/uploads/2022/12/High.png">High</option>
        <option value="Usage" <?php echo $select ?> data-img_src="/wp-content/uploads/2022/12/Usage.png">Usage</option>
        <option value="Non-Usage" data-img_src="/wp-content/uploads/2022/12/NonUsage.png">Non-Usage</option>
    </select>

    Then you can select High and Usage value to see how it works.

    Please note that, supporting customization code is beyond our scope of support, you can read more here https://support.metabox.io/topic/support-policy/.
    If it still does not work, you can request a customization service by submitting here https://metabox.io/contact/

    in reply to: Problems with columns when displaying taxonomies #40452
    PeterPeter
    Moderator

    Hello,

    Can you please share the code that registers the custom table also? The code above is used to register the custom fields.
    Please read more on the documentation https://docs.metabox.io/extensions/mb-custom-table/#using-custom-tables-with-code

    in reply to: Required field is stored empty #40451
    PeterPeter
    Moderator

    Hello there,

    I see the issue when the post is still saved but the field title is empty, I can also reproduce it on my local site. But I do not see the issue with core/button and core/media-text like your screenshot.

    If you remove the MB block, does the issue persist?

    in reply to: Use Profile field is not displaying (email) #40450
    PeterPeter
    Moderator

    Hello Sam,

    The field ID is user_email which is the default field ID of WordPress and the custom field created by Meta Box does not work in the admin area so you will not see anything output with Beaver Builder.

    You can try to change the field ID to another one like my_user_email, add the value for the field and recheck this issue.

    Please read more about the default field IDs here https://docs.metabox.io/extensions/mb-user-profile/#default-fields

Viewing 15 posts - 3,211 through 3,225 (of 3,722 total)