Forum Replies Created
-
AuthorPosts
-
Truong Giang
ParticipantHi,
Please use the
taxonomy_advancedfield. 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.Truong Giang
ParticipantHi there,
Can you use the
image_advancedfield 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.
Truong Giang
ParticipantHi,
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' ), ), ), ),Truong Giang
ParticipantThis topic is duplicated with https://support.metabox.io/topic/metabox-plugin-not-saving-the-field-value-properly/
I'll close it.
Truong Giang
ParticipantHi there,
You must set different ids for 2 event type settings.
Truong Giang
ParticipantHi. Thank you very much for using Meta Box and the translation files.
Truong Giang
ParticipantHi there,
Can you tell me what causes the issue?
Thank you very much.
Truong Giang
ParticipantHi,
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?
Truong Giang
ParticipantHi 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]?
Truong Giang
ParticipantHi 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-boxThank you very much.
Truong Giang
ParticipantHi,
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.
August 7, 2017 at 2:36 PM in reply to: Conditional Logic does not work with MB Frontend Submission #6539Truong Giang
ParticipantHi there,
Thank you for your report. Can you share the code you use to register meta box?
Truong Giang
ParticipantHi there,
Thank you for your suggestion, we will consider this idea. Thank you.
Truong Giang
ParticipantIf 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; } );Truong Giang
ParticipantWhich version of Enfold are you using?
Thank you.
-
AuthorPosts