Forum Replies Created
-
AuthorPosts
-
February 27, 2023 at 6:42 PM in reply to: Displaying/hiding custom fields based on taxonomy value #40744
Peter
ModeratorHello,
Yes, it is. According to the WordPress documentation, the taxonomy slug
must not exceed 32 characters and may only contain lowercase alphanumeric characters, dashes, and underscores
https://developer.wordpress.org/reference/functions/register_taxonomy/Can you please change it to a sample slug like
my_taxonomy_slugand check this issue again? You can also deactivate all plugins except Meta Box, MB extensions and switch to a standard theme of WordPress and see if it helps.February 26, 2023 at 3:49 PM in reply to: Return a map field from a settings page to a custom field #40737Peter
ModeratorHello,
Because the helper function
rwmb_meta()runs after the filter hookrwmb_meta_boxesso you can use the function get_option() to get settings page value inside the function callback.Refer to these topics:
https://support.metabox.io/topic/rwmb_meta-object_type-settings-in-rwmb_meta_boxes/?swcfpc=1#post-39357
https://support.metabox.io/topic/code-not-working-with-updated-version/?swcfpc=1Peter
ModeratorHello,
The password field of the user profile shortcode does not support displaying a clickable eye to show the password like that. I will inform the development team to consider supporting this feature in future updates.
February 26, 2023 at 3:29 PM in reply to: Displaying/hiding custom fields based on taxonomy value #40735Peter
ModeratorHello,
Can you please share a screenshot when you edit the taxonomy > General tab? Is the "Object_type1" taxonomy slug?
February 26, 2023 at 2:54 PM in reply to: ✅Need help with displaying category checkboxlist in WordPress post editor #40733Peter
ModeratorHello Jason,
When editing the taxonomy, please enable option "Hierarchical" above the option "Show on edit page" to display the checkbox like category.
February 25, 2023 at 4:50 PM in reply to: Help understanding how to create custom link structures with metabox AIO? #40727Peter
ModeratorHello,
Customizing the permalink settings is beyond the scope of support of Meta Box. You can try to go to Settings > Permalinks > Custom structure > and set it to
/%category%/%postname%/.Or follow this article to customize the permalink with coding https://stackoverflow.com/questions/57765487/how-to-add-custom-taxonomy-in-custom-post-type-permalink
and this topic https://support.metabox.io/topic/post-type-and-then-taxonomy-for-url-structure/#post-40569Peter
ModeratorHello,
I'm not sure how you deleted the field value, but if that query returns no results, the row (meta ID) is deleted. Or you can go to the database and see the result.
February 25, 2023 at 11:53 AM in reply to: ✅Conditionally Hide a Link in a Metabox Vioew if the Custom field is empty? #40722Peter
ModeratorHello,
You can follow the topic below to check if the field is not empty with the Twig code
https://stackoverflow.com/questions/22968427/check-if-string-variable-is-null-or-empty-or-full-of-white-spacesFor example:
{% if post.upload_presentation|trim is not empty %} <a class="ct-link-button download-brochure__btn" href="{{ post.upload_presentation }}" download>Download Brochure</a> {% endif %}February 25, 2023 at 11:47 AM in reply to: ✅Show Live view when filling up a MetaBox frontend form #40721Peter
ModeratorHello,
It's an interesting question, it will work like the customizer of WordPress in the backend and there would be a lot of JavaScript code to render the changes "live" as you want. I think you should contact an expert developer to help you to create custom code, there is no built-in option for this case.
February 24, 2023 at 10:48 PM in reply to: Can't get the [mb_frontend_dashboard] shortcode to work #40719Peter
ModeratorHello,
The compatibility feature is developed by Bricks team, so I recommend contacting their support for further assistance. Please read more here https://docs.metabox.io/compatibility/
Peter
ModeratorHello,
I've informed our development team to check this issue and get back to you later.
Peter
ModeratorHello,
Meta Box and WordPress do not have an official option to delete the field value (post meta). You can create a custom loop and delete post meta with the function delete_post_meta() or use a third-party plugin to do that https://wordpress.org/plugins/wp-bulk-delete/
For the custom table mb_relationships, you can access your database and delete all rows in the table.
February 24, 2023 at 6:22 PM in reply to: Can't get the [mb_frontend_dashboard] shortcode to work #40711Peter
ModeratorHello there,
I see the frontend submission is wrapped in a builder section. Can you please disable the builder and the frontend shortcode to the page content then check this issue again?
Peter
ModeratorHello,
Not yet, I will let you know when it is fixed. Thanks.
Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a closer look. -
AuthorPosts