Forum Replies Created
-
AuthorPosts
-
May 19, 2024 at 9:40 PM in reply to: Taxonomies (Categories) not available when editing a post #45471
Peter
ModeratorOk, please share the login details by submitting this contact form https://metabox.io/contact/
I will take a look.May 19, 2024 at 3:07 PM in reply to: Taxonomies (Categories) not available when editing a post #45468Peter
ModeratorHello,
Please edit the custom taxonomy > Advanced tab > Enable/disable the option "Hierarchical" > Save the taxonomy and update the custom post again.
May 19, 2024 at 3:04 PM in reply to: How to order relationships in Bricks Builder query loops #45467Peter
ModeratorHello,
Yes, the order of related items in the frontend should reflect the order of related items in the admin area. You can use the parameter "order, orderby" of WP Query to override the default order of related items.
https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parametersPeter
ModeratorI found the issue, the time format of the time field "slider" is invalid. You should change it to a supported one "hh:mm" to fix the issue, screenshot https://imgur.com/wOP1j58
Following the documentation https://trentrichardson.com/examples/timepicker/
May 18, 2024 at 3:06 PM in reply to: ✅Datetime is not rendering per user's time Zone after saving #45462Peter
ModeratorYes, the time is saved to the database with the "timezone (UTC) + offset". But it doesn't mean displaying the proper time for each user's/visitor's time zone in the frontend, just the value in the database when saving the post.
Following the documentation https://docs.metabox.io/fields/datetime/
May 17, 2024 at 10:25 PM in reply to: Taxonomies (Categories) not available when editing a post #45458Peter
ModeratorHello Rune,
Please go to Meta Box > Taxonomies > Edit the custom taxonomy > Advanced tab > Enable the option "Show on edit page" and check this issue again.
May 17, 2024 at 10:09 PM in reply to: Set Settings Page Custom Field data and be able to choose it from a CPT page #45457Peter
ModeratorHello,
For the first question, I think you don't need to setup a complicated field. Just create a select field with 4 choices. In the template, you can create a
ifstatement to output the setting page field value based on the post field value. Like this:if ( post_field_value == something ) { echo settings_page_field_value; }Peter
ModeratorHello
The image field could return an array and you cannot output the array directly. Please follow the example code in the documentation to output the image field
https://docs.metabox.io/extensions/mb-views/#custom-query
https://docs.metabox.io/functions/rwmb-meta/May 16, 2024 at 10:17 PM in reply to: ✅Datetime is not rendering per user's time Zone after saving #45444Peter
ModeratorHello,
I'm afraid that it isn't possible to show the proper time for each user's/visitor's time zone. The time is saved to the database and only displayed one time value.
Peter
ModeratorHello Mark,
If you want to create nested relationships like this format: A > B > C ~ Series > Episode > Sponsor and display them in the frontend, you will need to create some nested WP Query. Please refer to this topic https://support.metabox.io/topic/displaying-2-custom-post-types-via-a-relationship-custom-post-type/#post-26821
and documentation https://docs.metabox.io/extensions/mb-relationships/
Peter
ModeratorHello Keith,
Please create a new field group, add the date/time picker AND a time picker then check the issue again. If it works, there could be an issue with the current field group on your site. Please export the field group to a JSON file and share it here. I will check it on my demo site.
Following the documentation https://docs.metabox.io/extensions/meta-box-builder/#export--import
Peter
ModeratorNo, the tab field must be added as the first field in the field group. See this screenshot https://imgur.com/RX5yiwA
It's not the same in your screen record.
May 15, 2024 at 8:47 PM in reply to: Creating a simple directory of professionals for a village association #45433Peter
ModeratorHello,
You can use the extension MB User Profile that supports registering the user in the frontend. However, it doesn't support creating a new post of a post type like that.
Please follow the documentation https://docs.metabox.io/extensions/mb-user-profile/Peter
ModeratorThanks for the details.
I can reproduce the issue on the demo site and I've escalated this issue to the development team to fix it. I will get back to you soon.Peter
ModeratorHello,
Yes, all fields are validated and sanitized by PHP and WordPress functions before processing, similar to the WordPress registration/login form. I think you don't need to use extra validation/sanitization.
Refer documentation https://docs.metabox.io/sanitization/
-
AuthorPosts