Forum Replies Created
-
AuthorPosts
-
August 28, 2023 at 9:05 PM in reply to: Custom database with custom upload_dir for images problem #43064
Peter
ModeratorHello Rob,
What is "decode" in this case? You can simply follow the documentation below to get the field value that is stored in a custom table.
https://docs.metabox.io/extensions/mb-custom-table/#getting-field-valuePeter
ModeratorHello,
I do not see the video URL in your comment. Can you please recheck this?
Peter
ModeratorHello,
You can set the min value to
-9999999999then add the negative number again.August 27, 2023 at 10:55 PM in reply to: ✅Redering for only post content area repeats the display of the posts #43056Peter
ModeratorHello,
I assume that the Type of the View template is Archive and you are using a query loop to display a list of posts. So you should select the option "The layout between header and footer".
Also, if you want to display a sidebar, please follow a topic that you've created https://support.metabox.io/topic/how-to-add-a-sidebar/Peter
ModeratorHello,
The error log indicates the issue comes from the plugin Oxygen builder. You can deactivate this plugin and try to edit the field group again.
Peter
ModeratorHello,
Currently, there isn't a way to add custom fields to the Product Data section of WooCommerce. I will inform the development team to consider supporting this feature in future updates.
Peter
ModeratorHello,
The custom field variable in the builder is created by Bricks builder so I recommend contacting Bricks support to get more information.
Peter
ModeratorHello,
Currently, the validation does not work with a subfield in a group. Our development team is working on this issue to fix it. Meanwhile, you can try to use the extension MB Text Limiter.
Please read more in the documentation https://docs.metabox.io/extensions/meta-box-text-limiter/
Peter
ModeratorHello,
There isn't a default field for the parent term of the current term. You can use some WordPress functions to get the parent term name and permalink. For example:
{% set current_term = mb.get_term_by( 'id', term.id, 'category' ) %} {% set parent_term = mb.get_term_by( 'id', current_term.parent, 'category' ) %} Parent term name: {{ parent_term.name }} <br> Parent term permalink: {{ mb.get_term_link( parent_term, 'category' ) }}Please read more in the documentation
https://docs.metabox.io/extensions/mb-views/#running-php-functions
https://developer.wordpress.org/reference/functions/get_term_by/
https://developer.wordpress.org/reference/functions/get_term_link/Peter
ModeratorHello,
You can create a custom query to get the total posts of a post type and follow the documentation to show this on a WordPress dashboard widget.
https://developer.wordpress.org/apis/dashboard-widgets/
https://developer.wordpress.org/reference/classes/wp_query/Peter
ModeratorHello,
I think it is expected. You are using the cloneable and the next clone field should display in the same column. You can set 12 columns (default) to display the field.
Peter
ModeratorHello,
You should add the column ID instead of the column title to display the admin column, it should be
product_cat, notCategories. Screenshot https://imgur.com/ep6eNHaRegarding the default
_idfield, it is a hidden-standard custom field of the field group when using the builder. We shouldn't touch this field or get rid of it.August 27, 2023 at 4:41 PM in reply to: Warning: The following meta box are not available: "dealer_registration". #43045Peter
ModeratorHello,
The form must be added somewhere on your site so it displays in the frontend, maybe a custom code or Kadence block. You can try to deactivate all plugins except Meta Box, MB extension plugins and switch to a standard theme of WordPress and check this issue again.
Peter
ModeratorHello,
You are right, the WP admin bar affected the position of the select box. I've escalated this issue to the development team to fix it in the next update.
Peter
ModeratorHello Andrew,
I don't see that issue on my demo site, screenshot https://imgur.com/pwN5ePG
You can export the field group to a JSON file and share it here. I will help you to check the issue.And please note that, the filterable feature only works with the
taxonomyfield. Read more in the documentation https://docs.metabox.io/extensions/mb-admin-columns/ -
AuthorPosts