Forum Replies Created
-
AuthorPosts
-
March 23, 2022 at 8:31 PM in reply to: ✅WP_Query and filter by custom post type and custom taxonomy term #35238
Long Nguyen
ModeratorHi,
In case of using Oxygen Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/March 23, 2022 at 5:45 PM in reply to: ✅Hello how can i make my custom field appear on user registration #35237Long Nguyen
ModeratorHi,
You can add the registration shortcode to a regular page to display the registration form and custom fields instead of the default registration form of WordPress
[mb_user_profile_register id="kontak"]Refer to this documentation https://docs.metabox.io/extensions/mb-user-profile/
March 23, 2022 at 5:34 PM in reply to: ✅Checkbox not checking when clicking checked by default #35235Long Nguyen
ModeratorHi,
It looks like the "action pack" login plugin has a function that prevents Meta Box and extensions work properly. I'm not sure in case of using this plugin. You can try to contact their support to ask for help with this issue.
March 23, 2022 at 12:57 PM in reply to: Is it Possible to Have Relationship Metabox Editable Only on One Side? #35231Long Nguyen
ModeratorHi,
You can export the relationship from the builder to get the PHP code, move it to the trash or delete it. Then add the code to the file functions.php in the theme/child theme folder.
The data is already saved into the database so don't worry it will be lost after deleting the relationship from the builder.
Refer to this documentation https://docs.metabox.io/extensions/meta-box-builder/#getting-php-code
March 23, 2022 at 11:31 AM in reply to: ✅get post metabox data inside of MB Block Default Value #35230Long Nguyen
ModeratorHi,
Please use the function
get_post_meta()to get the field value when registering the meta box. Refer to this topic https://support.metabox.io/topic/bug-settings-not-available-for-custom-fields/#post-29610For example:
$post_id = null; if ( isset( $_GET['post'] ) ) { $post_id = intval( $_GET['post'] ); } elseif ( isset( $_POST['post_ID'] ) ) { $post_id = intval( $_POST['post_ID'] ); } $rating1 = get_post_meta( $post_id, 'rating_1', true );Long Nguyen
ModeratorHi,
Please swap field ID and option name in your code. The format to get the setting's value is
$value = rwmb_meta( $field_id, ['object_type' => 'setting'], $option_name ); echo $value;it should be
$value = rwmb_meta( 'custom_field', ['object_type' => 'setting'], 'settings_page' ); echo $value;Long Nguyen
ModeratorHi,
Can you please share the code that creates the relationships on your site? Refer to this documentation https://docs.metabox.io/extensions/meta-box-builder/#getting-php-code
March 22, 2022 at 10:23 PM in reply to: Why does my WYSIWYUG text area / field not respect my paragraphs? #35212Long Nguyen
ModeratorHi,
I will also check this issue on your site along with this topic https://support.metabox.io/topic/post-type-migration-not-displaying-for-me/page/2/
Long Nguyen
ModeratorYes, you can create a feature request or feedback and send it via the contact form. I will forward it to the development team to consider adding it to the development queue.
https://metabox.io/contact/Long Nguyen
ModeratorHi Dan,
Can you please answer my question?
Did you share the info via the ticket system? I've still not received it.I want to take a closer look on your site.
March 22, 2022 at 10:15 PM in reply to: ✅Adding and rendering shortcodes from other plugins (eg Tabulizer not working) #35209Long Nguyen
ModeratorHi Chris,
You can add the custom code to the file
functions.phpin the theme/child theme folder, or use the plugin Code Snippets https://wordpress.org/plugins/code-snippets/But I recommend contacting Tabulizer support to implement the code step by step if you are not familiar with coding.
March 22, 2022 at 10:12 PM in reply to: ✅WP_Query and filter by custom post type and custom taxonomy term #35208Long Nguyen
ModeratorHi,
To query posts by field value stored in the custom table, please follow the documentation
https://docs.metabox.io/extensions/mb-custom-table/#query-posts-with-wp_queryMarch 22, 2022 at 9:37 PM in reply to: Is it Possible to Have Relationship Metabox Editable Only on One Side? #35206Long Nguyen
ModeratorHi,
The builder does not support options to customize the field settings. You need to use the code to get more control over field settings.
Long Nguyen
ModeratorHi Peter,
Elementor does not support the conditional option to show/hide a field value. You can try to create a shortcode to check if the field value is not empty and display it then add the shortcode to Elementor builder.
Refer to this documentation https://docs.metabox.io/extensions/meta-box-group/#outputing-group-with-page-builders
Long Nguyen
ModeratorHi,
Please share the code that creates the fields on your site. If you are using the Builder, please refer to this documentation https://docs.metabox.io/extensions/meta-box-builder/#getting-php-code
and share some screenshots when editing the post "Bold Ruler" and the code that output the field value.
-
AuthorPosts