Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1,966 through 1,980 (of 3,728 total)
  • Author
    Posts
  • in reply to: How to change the background color of the Delete Icon? #44069
    PeterPeter
    Moderator

    Hello,

    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;
    }
    in reply to: Custom Taxonomy (Advanced) Count Issue #44068
    PeterPeter
    Moderator

    Hello,

    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.

    in reply to: Load tab content on demand #44061
    PeterPeter
    Moderator

    Hello,

    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.

    in reply to: User to User Relationship #44057
    PeterPeter
    Moderator

    Hello 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 type user doesn't have the feature bi-directional like the MB Relationship extension. That means you need to manually select the related editor when editing the subscriber and vice versa.
    If you want to display a field group when editing a user role only, please use the option Edited user role. Screenshot https://imgur.com/9qBei7t

    PeterPeter
    Moderator

    Hello 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.

    in reply to: Fatal Errors with Custom Post Type v2.6.2 update #44055
    PeterPeter
    Moderator

    Hello 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.

    in reply to: Icon field not loading icons in post edit page #44051
    PeterPeter
    Moderator

    Hello,

    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 %}
    PeterPeter
    Moderator

    Hello,

    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_vars to fix the issue https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/

    Let me know how it goes.

    in reply to: Icon field not loading icons in post edit page #44045
    PeterPeter
    Moderator

    Hello,

    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

    in reply to: Icon field not loading icons in post edit page #44042
    PeterPeter
    Moderator

    Hello,

    Please share your site credentials via this contact form https://metabox.io/contact/
    I will take a look.

    in reply to: NEWBIE Question or feature Request #44041
    PeterPeter
    Moderator

    Hello 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.

    in reply to: Cannot Save New Fields or Change Location to "User" #44039
    PeterPeter
    Moderator

    Hello,

    You can try to follow this tutorial to increase the PHP setting max_input_vars to fix the issue
    https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/

    Let me know how it goes.

    in reply to: Flexible content performance limits #44038
    PeterPeter
    Moderator

    Hello,

    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.

    in reply to: Fatal Errors with Custom Post Type v2.6.2 update #44037
    PeterPeter
    Moderator

    Hello there,

    Please share your site credentials here https://metabox.io/contact/
    I will take a look.

    PeterPeter
    Moderator

    Hello,

    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.

Viewing 15 posts - 1,966 through 1,980 (of 3,728 total)