Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 76 through 90 (of 115 total)
  • Author
    Posts
  • in reply to: Metabox plugin not saving the field value properly #6638
    Truong GiangTruong Giang
    Participant

    Hi,

    Please use the taxonomy_advanced field. You can read more here: https://metabox.io/docs/define-fields/#section-taxonomy
    Taxonomy field does NOT save term IDs in post meta, instead of that, it only set post terms.
    Taxonomy advanced field saves term IDs in post meta as a comma separated string. It does NOT set post terms.

    in reply to: File/image input field does not work when in group #6631
    Truong GiangTruong Giang
    Participant

    Hi there,

    Can you use the image_advanced field before we can solve this problem?

    Update: Oh. Sorry. I have just read your topic about uploading image in frontend. We are checking this problem. Please wait.

    in reply to: Validation does not work for fields in group #6629
    Truong GiangTruong Giang
    Participant

    Hi,

    jQueryValidation bases on input id to check. So please change the validation param like this:

    'validation' => array(
    			'rules' => array(
    				"vm_video_group_vm_video_link" => array(
    					'url'  => true,
    				),
    				"vm_video_group_vm_video_legend" => array(
    					'required'  => true,
    				),
    			),
    			'messages' => array(
    				"vm_video_group_vm_video_link" => array(
    					'url'  => __( 'Ce champ doit être une url valide', 'vm' ),
    				),
    				"vm_video_group_vm_video_legend" => array(
    					'required'  => __( 'Ce champ est requis', 'vm' ),
    				),
    			),
    		),
    
    in reply to: Metabox fields changing the values saving the page #6628
    Truong GiangTruong Giang
    Participant

    This topic is duplicated with https://support.metabox.io/topic/metabox-plugin-not-saving-the-field-value-properly/

    I'll close it.

    in reply to: Metabox plugin not saving the field value properly #6627
    Truong GiangTruong Giang
    Participant

    Hi there,

    You must set different ids for 2 event type settings.

    in reply to: File advanced localization #6612
    Truong GiangTruong Giang
    Participant

    Hi. Thank you very much for using Meta Box and the translation files.

    in reply to: Metabox data not saving #6611
    Truong GiangTruong Giang
    Participant

    Hi there,

    Can you tell me what causes the issue?

    Thank you very much.

    in reply to: User Meta not saving #6610
    Truong GiangTruong Giang
    Participant

    Hi,

    I received your credential. Now I will check it.

    Update: I can't login with your credential. Can you check again and send the new credential?

    in reply to: User Meta not saving #6584
    Truong GiangTruong Giang
    Participant

    Hi there,

    Do you mean when you save user A, it saves data to user B?
    I will check from Meta Box builder first. Thank you for the useful information.

    Update: I think the problem with Meta Box builder is not related to problem with user meta problem. Can you give us your admin credential to [email protected]?

    in reply to: File advanced localization #6559
    Truong GiangTruong Giang
    Participant

    Hi there,

    I see that meta box has not been fully translated to French. We will update it soon. But you can use any translating tool (eg: Loco translate) to translate those strings to French.
    If you use Loco Translate, remember to sync the .po file to update the latest strings.
    It would be great if you could contribute to the translate project here: https://translate.wordpress.org/locale/fr/default/wp-plugins/meta-box

    Thank you very much.

    in reply to: Date field localization #6558
    Truong GiangTruong Giang
    Participant

    Hi,

    Sorry, I found the problem. The function wp_localize_jquery_ui_datepicker() has not been called when jquery-ui-datepicker is enqueued. Please update MB Frontend Submission to the latest version.

    Thank you.

    Truong GiangTruong Giang
    Participant

    Hi there,

    Thank you for your report. Can you share the code you use to register meta box?

    in reply to: Image field - image URL via MB Rest API? #6538
    Truong GiangTruong Giang
    Participant

    Hi there,

    Thank you for your suggestion, we will consider this idea. Thank you.

    in reply to: Geolocation fields do not appear #6537
    Truong GiangTruong Giang
    Participant

    If you are using Enfold version 4, please add this to the file functions.php of your child theme (or theme):

    
    add_action( 'admin_enqueue_scripts', function() {
    	if ( wp_script_is( 'google-maps' ) && wp_script_is( 'avia-google-maps-api' ) ) {
    		wp_dequeue_script( 'avia-google-maps-api' );
    	}
    }, 99 );
    
    add_filter( 'gmap_api_params', function( $params ) {
    	$params['key'] = 'AIzaSyAOu8jBXZkLKhNROTGisYaklDAkLIhTfBM';
    
    	return $params;
    } );
    
    in reply to: Geolocation fields do not appear #6536
    Truong GiangTruong Giang
    Participant

    Which version of Enfold are you using?

    Thank you.

Viewing 15 posts - 76 through 90 (of 115 total)