Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
You can use the WordPress function to show the post title, post content, featured images ... based on the post ID. For example:
get_the_title()
https://developer.wordpress.org/reference/functions/get_the_title/You can also contact Oxygen support to ask for implementing the code in the repeater.
Long Nguyen
ModeratorHi,
The admin columns do not work with the subfields in a group, only work with the top field. I will inform the development team to consider supporting this case in future updates.
Long Nguyen
ModeratorHi Macky,
You can follow this documentation to know how to get the subfield value in a group.
https://docs.metabox.io/extensions/meta-box-group/#getting-sub-field-valuesIf you use Oxygen builder to create the template, please contact their support to ask for help with this case. They have an integration plugin with Meta Box to display the field value.
Long Nguyen
ModeratorHi Chris,
Which is the post type that the cloneable group
group_fwdwryesb7qis associated with? If it is the post typegrillethen you can use this code{% for clone in grille.group_fwdwryesb7q %}Long Nguyen
ModeratorResolve the issue by re-save the field group.
Have a nice day.Long Nguyen
ModeratorHi,
It is not possible to take the value of a text or number field to set it as duration format for the video.
June 8, 2022 at 12:39 PM in reply to: Bug Report: Click twice on update, all custom fields are lost #36366Long Nguyen
ModeratorHi Mauro,
1. There is no collapse all/expand all control in the fields list, making it hard to navigate through fields if you forget to collapse as you create them.
Thanks for your feedback. There is no option to collapse/expand all fields in the builder. I'm going to inform the developer team to consider adding it to the to-do list for the future development of the plugin.2. There is no support for entering callbacks functions as needed (i.e. for default values or multiple choice options)
If you use the choice/select field, you can addcallback: function_nameto the choice list to use the callback function to create the list.3. Regarding the issue click twice on the update button, I'm able to reproduce it on my local site. I've escalated this bug to the development team to fix it in the next update.
June 8, 2022 at 12:13 PM in reply to: ✅[Feature Request] Copy-Paste fields between field groups #36365Long Nguyen
ModeratorHi,
Thanks for your feedback.
I'm going to inform the developer team to consider adding it to the to-do list for the future development of the plugin.
Long Nguyen
ModeratorHi Daniele,
It works like the related posts so I think you can use the field post or extension MB Relationships to connect some posts of a CPT to a WooCommerce product and display them on the frontend. But it is very hard to include these posts (pack) in the order and process them in the WooCommerce system.
I recommend using the group product of WooCommerce or a third-party plugin to create the pack like that.Long Nguyen
ModeratorHi,
1. I do not see the option name of the settings page, please add the option name for the settings page Administration. Get more details here https://docs.metabox.io/extensions/mb-settings-page/#using-meta-box-builder
2. And please follow this documentation to know how to get the image URL https://docs.metabox.io/fields/single-image/#template-usage
$favicon = rwmb_get_value( 'favicon', ['object_type' => 'setting'], 'your_option_name' ); $favicon_url = $favicon['url'];link.href = '<?php echo $favicon_url ?>';Long Nguyen
ModeratorHi,
I think this issue is related to the PHP setting
max_input_vars, you can try to follow this tutorial to fix the issue https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/Long Nguyen
ModeratorHi,
Assume that you are using the field
file_advanced, please follow this documentation to know how to output the file URL https://docs.metabox.io/fields/file-advanced/
You can try to contact Oxygen support to ask for outputting the field value or implementing the code or deactivate this builder and add the code to the post template of a theme.Long Nguyen
ModeratorHi Tobias,
You can echo the variable
$faviconwithout using the functionget_field(), I think it comes from ACF.link.href = '<?php echo $favicon; ?>';June 7, 2022 at 12:38 PM in reply to: Adding additional row actions using mbct_{$model}_row_actions #36348Long Nguyen
ModeratorHi Will,
Thanks for your feedback.
I will inform the development team to add passed arguments to this filter hook to use the ID. I think it should be:
apply_filters( "mbct_{$this->model->name}_row_actions", $actions, $item, $column_name, $primary, $this );June 7, 2022 at 12:27 PM in reply to: How to retrieve and update custom field via API (shop_coupon) #36347Long Nguyen
ModeratorHi,
Thanks for your additional information.
WooCommerce has its own REST API schema so it might not work with the field created by Meta Box. You can contact WooCommerce support to ask for help with this case.
If you want to use the REST API v2 of WooCommerce, please follow this documentation https://woocommerce.github.io/woocommerce-rest-api-docs/v2.html#requests-responses
Endpoint format: https://www.example.com/wc-api/v2/coupons?consumer_key=123&consumer_secret=abc
-
AuthorPosts