Forum Replies Created
-
AuthorPosts
-
August 4, 2023 at 8:42 PM in reply to: User Profile Fields not displaying in Elementor dynamic tags selector #42815
Peter
ModeratorHello,
Yes, it works with some simple fields like text, textarea ... I will create a feature request and ask the development team to support the user meta fields in the future.
Peter
ModeratorHello,
I will inform the development team to consider supporting this feature in future updates.
Thanks.
August 3, 2023 at 9:15 PM in reply to: Custom Field (color picker) on Category DD Says "Empty" but it's not. #42810Peter
ModeratorHello,
As I can see, the page https://news.seoul.dulwich.org/whole-school-23-june-2023/ is a single post page. While you are trying to get term meta on the page so it does not work.
Or maybe the Bricks builder does not support outputting the term meta value. You can try to contact their support to get more information.
Or try to use the shortcode to output the field value
[rwmb_meta id="cat-color" object_id="15" object_type="term"]Read more in the documentation https://docs.metabox.io/shortcode/
Peter
ModeratorHello,
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/Peter
ModeratorHello,
It is normal. In the default table wp_postmeta, the field value is also not deleted if you delete a custom field from the field group or code.
You can use the API function to delete the field value in the custom table https://docs.metabox.io/extensions/mb-custom-table/#delete
or use an SQL query to delete it.August 2, 2023 at 10:27 PM in reply to: Unable to access my custom model link listed under my custom menu setting page. #42801Peter
ModeratorHello,
The development team is still working on this issue. You can create the model as the top menu to prevent this issue.
August 2, 2023 at 10:25 PM in reply to: User Profile Fields not displaying in Elementor dynamic tags selector #42800Peter
ModeratorHello,
To display the user meta field, you can add a Heading widget > click on Dynamic tags. In the Site section, you can select the option User Info:
- Field: User Meta
- Key: add the field ID here.
screenshot https://imgur.com/gJXqggCLet me know how it goes.
Peter
ModeratorHello,
You can ask WooCommerce support for providing a way to hide those default fields in the admin area and create the same field IDs with Meta Box to save to the database.
If you are not able to complete the task, please contact us here https://metabox.io/contact/
our development team will help you with an extra fee.Peter
ModeratorHello,
Use the function
print_r()to know the data structure of the field settings. You will need to have a basic knowledge of coding to echo the choice. For example:$field = rwmb_get_field_settings( 'city', '', 123 ); // 123 is the post ID $field_choices = $field['options']; foreach ($field_choices as $value => $label) { echo "Value: " . $value; echo "<br />"; echo "Label: " . $label; echo "<br />"; }If you are not able to complete the task, please contact us here https://metabox.io/contact/
our development team will help you with an extra fee.Peter
ModeratorHello,
Meta Box does not support changing the CPT slug from a custom field. You might need to use a custom code to do that. Refer to this topic https://wordpress.stackexchange.com/questions/41988/redeclare-change-slug-of-a-plugins-custom-post-type
Peter
ModeratorHello,
You should add the code to the template of the listing post to get the current post ID. If not you need to pass the post ID to the function. And the return value is an array so you need to use the function
var_dump()orprint_r()to print out the value.For example:
$field = rwmb_get_field_settings( 'city', '', 123 ); // 123 is the post ID echo '<pre>'; print_r( $field ); echo '</pre>';Peter
ModeratorHello,
Thanks for your feedback.
I've escalated this issue to the development team to fix it. I will let you know when I have any information.
Peter
ModeratorHello,
Currently, it is not possible. You will need to edit the post to upload the file and attach it to the post, like in the admin area.
July 31, 2023 at 8:32 PM in reply to: The auto created relationship has an extra taxonomy in it? #42784Peter
ModeratorHello,
Thanks for your feedback.
It is redundant, I will inform the development team to remove it when generating PHP code.
July 31, 2023 at 7:38 PM in reply to: Custom Post Type: "Quick Edit" changes the owner to the current logged in user #42782Peter
ModeratorHello,
I do not see that issue on my demo site. You can go to Meta Box > Post Types > Edit the CPT > Support tab > Enable "Author" option.
Then when clicking on Quick Edit, make sure the correct author is selected and Publish it. Screenshot https://imgur.com/dYxiPb1
-
AuthorPosts