Forum Replies Created
-
AuthorPosts
-
February 28, 2023 at 5:59 PM in reply to: Bug: Conditional Logic Set On Value Of Taxonomy Custom Field Prevents Post Save #40755
Peter
ModeratorHello,
Thanks for following up. This issue relates to the extension MB Builder, not Meta Box itself. This issue is in our development queue so please wait for the next updates of our plugins.
February 28, 2023 at 5:51 PM in reply to: ℹ️[Feature Request] Conditional Logic For Relationships #40754Peter
ModeratorHello,
Each meta box relationship has the ID with the following format
relatioshipID_relationships_fromorrelatioshipID_relationships_to. You can use conditional logic outside of meta box with that ID to show/hide the relationship meta box. Please read more on the documentation https://docs.metabox.io/extensions/meta-box-conditional-logic/#using-outside-meta-boxesFebruary 27, 2023 at 10:30 PM in reply to: Search Result view not activated, Archive view instead #40750Peter
ModeratorHello,
If you deactivate that plugin, does the view template work properly? You can use the standard search widget of WordPress to check this issue.
February 27, 2023 at 8:52 PM in reply to: Displaying/hiding custom fields based on taxonomy value #40749Peter
ModeratorHello,
Please export the field group to the JSON file and share it with me or share the PHP code generated, I will check the issue on my local site.
Read more on the documentation https://docs.metabox.io/extensions/meta-box-builder/#getting-php-codePeter
ModeratorHello,
The field type
key_valueitself works like a cloneable field and it does not need to enable'clone' => trueso the settingmax_clonewill not work in this case.I will inform the development team to consider adding a setting to set the max added items.
February 27, 2023 at 6:50 PM in reply to: Selecting many relationships taxes forever (more efficient way)?? #40745Peter
ModeratorHello,
Thank you for your feedback.
Currently, MB relationship select box only supports selecting one object per selection. You can add more objects and it also supports searching for objects with the default field type select_advanced.
February 27, 2023 at 6:42 PM in reply to: Displaying/hiding custom fields based on taxonomy value #40744Peter
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.
-
AuthorPosts