Forum Replies Created
-
AuthorPosts
-
December 13, 2023 at 9:22 AM in reply to: ✅How to change the background color of the Delete Icon? #44069
Peter
ModeratorHello,
Because you don't have the file trash.svg in the same directory of the file that you add the CSS code. You can add the absolute URL of the icon file to the CSS code to change the background color of the delete button, like this:
.mbfp-posts .mbfp-table__delete { background: #000000 url(https://yoursite.com/wp-content/plugins/mb-favorite-posts/assets/trash.svg) no-repeat center; }Peter
ModeratorHello,
The field taxonomy_advanced sets the post meta, it does not set the post term. You should use the field taxonomy in this case to count the term in the admin area.
Peter
ModeratorHello,
Currently, we don't support loading the fields when opening a tab like that. I will inform the development team to consider supporting this feature in future updates.
Peter
ModeratorHello Sridhar,
1. The extension MB Include Exclude doesn't work with MB Relationships. The relationship box will display in all user roles.
2. Then you use the field group with the field type
user. In this case, the MB Include Exclude will work but the field typeuserdoesn't have the feature bi-directional like the MB Relationship extension. That means you need to manually select the relatededitorwhen editing thesubscriberand vice versa.
If you want to display a field group when editing a user role only, please use the optionEdited user role. Screenshot https://imgur.com/9qBei7tDecember 11, 2023 at 4:28 PM in reply to: Issue displaying several values of relationship on archive page #44056Peter
ModeratorHello Matthias,
I'm not sure if the MB Views works with Bricks to get the post ID of each post in the loop (archive page), but you can refer to the topic below to use the MB Views to create your own archive page and display all "persons" posts that related to a "kurs" post.
https://support.metabox.io/topic/the-relationship-in-view-thru-shortcode-doesnt-get-shown/For further assistance, I recommend contacting Bricks support, they maintain the compatibility with Meta Box on their end.
Peter
ModeratorHello Alyssa,
The issue here is some post types of other plugins/theme are managed by Meta Box Post Types. It was an issue in the past with the old version of MB CPT. To fix this issue, please go to Meta Box > Post Types > Remove all post types that you have not created. Do the same with taxonomy.
Let me know how it goes.
Peter
ModeratorHello,
The data saved to the database is the icon name so you should wrap it in an HTML tag to output the file URL. For example:
{% for clone in post.group_field_id %} {% set icon_name = clone.icon_field_id %} <img src="{{ mb.get_stylesheet_directory_uri() }}/assets/svg/{{ icon_name }}.svg" /> {% endfor %}December 10, 2023 at 10:14 AM in reply to: ✅Undefined array key "object_type" and Undefined array key "prefix" #44050Peter
ModeratorHello,
Please set the Location of the field group to the default Post Type: Post and recheck this issue. If it persists, you can try to follow this tutorial to increase the PHP setting
max_input_varsto fix the issue https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Let me know how it goes.
Peter
ModeratorHello,
The correct path is
/home2/pbfinanc/public_html/wp-content/themes/generatepress_child/assets/svg/I add it to the option icon_dir and the icons show as well, screenshot https://imgur.com/9i1OyaD
Peter
ModeratorHello,
Please share your site credentials via this contact form https://metabox.io/contact/
I will take a look.Peter
ModeratorHello there,
Meta Box doesn't support an option to create the help tab. It just passes the arguments from UI to the function
register_post_type()of WordPress to create the post type. You can use the custom code to create help tabs on your end.December 7, 2023 at 10:51 PM in reply to: ✅Cannot Save New Fields or Change Location to "User" #44039Peter
ModeratorHello,
You can try to follow this tutorial to increase the PHP setting
max_input_varsto fix the issue
https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Let me know how it goes.
Peter
ModeratorHello,
Let me answer your questions.
1. There shouldn't be a page loading speed when outputting the value in the front end, very slightly. The group field value is saved in the database as a serialized and you can get all subfield values with one function. Following the documentation https://docs.metabox.io/extensions/meta-box-group/
2. The builder is created with JavaScript code, so it will slow down if you have more fields. I will inform the development team to improve the builder in future updates.
3. Please share a screen record of the issue on your end with the WYSIWYG field.
4. Use the custom table to save field value when you need to query post by field value. If you only get field value by post ID, no need to use that.
Peter
ModeratorHello there,
Please share your site credentials here https://metabox.io/contact/
I will take a look.December 7, 2023 at 8:52 PM in reply to: MB_Relationships_API::each_connected not working, need fix or alternative #44035Peter
ModeratorHello,
Currently, there is only one way to display relationships on the archive page. However, I don't see an impact on performance. I've also escalated this issue to the development team to fix it. I will let you know when it's done.
-
AuthorPosts