Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
It is possible that the fields are not saved value caused by this code
if ( empty( $_GET['post'] ) ) { return; }it should be
return $meta_boxes;You can try to remove this block of code or function
casa_rejection_reasonsthen re-save the field value.Long Nguyen
ModeratorHi Steve,
Can you please share the code that creates the CPT on your site? Do you use any redirecting snippets or plugins?
You can also follow the step Debugging Information here to troubleshoot this issue https://support.metabox.io/topic/how-to-create-a-new-topic/
August 4, 2021 at 11:19 AM in reply to: ✅Just bought Core package but actually need developer #29881Long Nguyen
ModeratorHi Ken,
Thank you for getting in touch.
You can purchase the Developer Bundle then we will issue a refund for the Core Bundle.
Long Nguyen
ModeratorHi,
I think you can create a custom taxonomy
highlightfor each CPT. Using the custom taxonomy will get posts faster than the custom field, please read more here.Then you can use the setting
query_argswhen creating the relationship to show thehighlightposts on the select box only.
Get more details on the documentation https://docs.metabox.io/extensions/mb-relationships/#syntaxLong Nguyen
ModeratorHi Topher,
This issue is so weird. Please try to deactivate all plugins except Meta Box, MB Extensions and switch to a default theme of WordPress to re-check the issue.
If this procedure does not help, please share the code that creates meta boxes and custom fields on the CPT page. I will try to check it on my end.
Long Nguyen
ModeratorHi,
How to create tabs in the Builder: https://docs.metabox.io/extensions/meta-box-tabs/#using-meta-box-builder
and change the tab style: https://imgur.com/vk92m2bLong Nguyen
ModeratorHi,
Yes, it is possible. You can use the setting
query_argsof the fieldpostto set some arguments to query posts. Get more details on the documentation
https://docs.metabox.io/fields/post/#settings
https://docs.metabox.io/fields/post/#sample-codeLong Nguyen
ModeratorHi,
To display the date in the German language, you need to follow these steps:
- Set the site language in Admin dashboard > Settings > General > Site language: German
- Set thetimestamptotrue
- Use the function date_i18n() and follow the documentation to output the localization date.
https://docs.metabox.io/fields/date/#template-usageIt might be complicated for the beginner but Meta Box is a developer tool, it helps you to output the raw value. So you need to have a basic knowledge of coding to display the value in any way you want.
August 3, 2021 at 9:58 PM in reply to: ✅"handle_multiple_relationships" throws an error when no objects were found #29869Long Nguyen
ModeratorHi Lee,
Thank you for your feedback.
I will inform the development team to fix this issue in the next update.
Long Nguyen
ModeratorHi Tobias,
You can use the setting
js_optionsto change the date format, such as'js_options' => [ 'dateFormat' => 'dd.mm.yy', ],If you are using the Builder, please use the option Date picker options https://imgur.com/8ip8rgD
Get more details on the documentation https://docs.metabox.io/fields/date/#settings
Long Nguyen
ModeratorHi,
If you run the function
booking_link()in the admin area, it might not work because the helper functionrwmb_meta()is executed later than the settings page. Please try to use the function get_option() to get settings page value.Refer to this topic https://support.metabox.io/topic/bug-settings-not-available-for-custom-fields/
Long Nguyen
ModeratorHi,
There is no field auto-increment for the post like ID. I think you can create a text field then update it after creating a post with the format
prefix_postID.Refer to this documentation https://docs.metabox.io/actions/#rwmb_after_save_post
Long Nguyen
ModeratorHi Steve,
The Plural Name and Singular Name can be in the Korean language, but the slug should be in the Romanized language (alphanumeric characters). Please get more details here https://docs.metabox.io/extensions/mb-custom-post-type/#general-settings
Long Nguyen
ModeratorHi,
This field saves the location in the following format
latitude,longitude,zoom, so it's does not support saving more values of the field. You can contact Elementor support to ask for displaying the js_options of this field.August 2, 2021 at 3:06 PM in reply to: ✅Gravity Forms Post Field File Upload to MetaBox Image Advanced #29843Long Nguyen
ModeratorHi,
Can you please test with other simple fields like
single_imageortext? It is possible that theimage_advancedfield is more complicated when saving value to the database and GF does not support that.You can also refer to this topic https://support.metabox.io/topic/gravity-forms-submissions-not-updating-user-meta/
-
AuthorPosts