Forum Replies Created
-
AuthorPosts
-
November 24, 2022 at 9:22 PM in reply to: Add Cloneable Group using update_post_meta() whilst preserving existing data #39306
Peter
ModeratorHello Macky,
Please try to use this code
$payment_meta[0]['fr_payment_amount'] = $this->stripe_pi_amt;The cloneable field is the group field so you need to indicate the key of the array where to update the value.
Peter
ModeratorHello,
Thanks for your feedback.
I got the issue. I've escalated this to the development team to fix it in the next update.
Peter
ModeratorHello,
title_taglineis a section, it is not a panel. If you read the WordPress documentation carefully, you can see that a panel is a wrapper of sections, it will look like this https://monosnap.com/file/ZZdMZOjM4ArQOnpAqiDkidHoV8JIRdTest panel Theme Options with the theme Memory https://gretathemes.com/wordpress-themes/memory/
and find the code register the panel in
wp-content/themes/memory/inc/customizer/customizer.phpline 100Let me know how it goes.
November 24, 2022 at 8:58 PM in reply to: ✅How to make a download-button from "File Upload" field? #39303Peter
ModeratorHello,
Following the documentation, our plugins support outputting the field value with code. If you want to make a download button with a page builder plugin, please contact their support to ask for help with this case.
Or you can use a page builder plugin that has integration with Meta Box like Oxygen, Elementor ... please read more here https://docs.metabox.io/compatibility/Or you can create your own shortcode and put the shortcode into the builder to display a download button.
https://support.metabox.io/topic/adding-a-custom-field-as-a-link-to-an-elementor-button/#post-34356November 24, 2022 at 8:52 PM in reply to: ✅I can not update my field group information in custom field #39301Peter
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 Thomas,
There is no option to remove the custom fields in the backend. When registering the field by code, you can create a condition to check if it is the admin area or not then add the code to register the field. Please refer to this topic https://support.metabox.io/topic/make-only-specific-fields-editable-in-frontend/#post-33787
November 23, 2022 at 10:16 PM in reply to: ✅I can not update my field group information in custom field #39291Peter
ModeratorHello Mariano,
Can you please share some screenshots of the issue on your site?
November 23, 2022 at 10:15 PM in reply to: Display Relationship value in GenerateBlocks dynamic data #39290Peter
ModeratorHello Oliver,
Thanks for reaching out.
Regularly, on our documentation, you need to have a basic knowledge of coding to control how to output the value. If not, you can use the shortcode which you can find here https://docs.metabox.io/extensions/mb-relationships/#shortcode
If it does not work, please let me know how you register the relationship and what is the shortcode that you are using.Regarding GenerateBlocks, I'm not sure if it is compatible with Meta Box to get the relationship. If there is a chance, you can see this article to use the Oxygen builder and display the relationship https://oxyhowto.com/more_hows/how-to-use-meta-box-bi-direction-relationship-in-oxygen-builder/
The integration is officially supported by Oxygen builder.Peter
ModeratorHello,
You can find the panel ID in the theme or plugin source code where it is registered. Please read more on the documentation https://developer.wordpress.org/themes/customize-api/customizer-objects/#panels
I recommend contacting the theme or plugin support to ask for providing the panel ID.
Peter
ModeratorHello Aaron,
I'm not sure if Meta Box strings are translated to your language 100%, you can check the untranslated strings here https://translate.wordpress.org/projects/wp-plugins/meta-box/
If the string is not translated, it will display in the English language. If it does not work, can you please share some screenshots of the issue?Peter
ModeratorHello,
You can use the setting
stdto set the default value for a field. But please be aware that this setting will not work if the field or field group already saved value to the database. Read more on this documentation https://docs.metabox.io/creating-fields-with-code/#why-does-not-my-default-value-workPeter
ModeratorHello,
For the radio field, please use the setting
disabledinstead ofreadonly. Please read more on this link https://support.metabox.io/topic/readonly-attribute-doesnt-work-on-radio-field/November 22, 2022 at 11:12 PM in reply to: how to save image field vaues in serilazed format in the database #39273Peter
ModeratorHello,
It is the design of the image fields when saving each value in one row to the database. If you want to save values in serialized format, please consider using the custom table or registering it as a subfield in a group field. Please read more on the documentation
https://docs.metabox.io/extensions/mb-custom-table/
https://docs.metabox.io/extensions/meta-box-group/Peter
ModeratorHello Dragos,
Thanks for reaching out.
1. It is not possible to use one field in two field groups. One field can be registered under one field group (meta box) only.
2. Which media field type you are using? If it has the setting
'multiple' => truein the default field settings, it is expected result to save the array value (serialized) to the database. You can test with the fieldsingle_imageto see how it works.November 22, 2022 at 10:55 PM in reply to: Profile pages using MB User Profile and MB Beaver Builder Integration #39271Peter
ModeratorHello Jan,
1. The default role when registering via registration shortcode is Subscriber. You can change it to another role like Vendor in the shortcode attribute. Like this
[mb_user_profile_register id="meta-box-id" role="vendor"]2. Can you please deactivate all plugins except Meta Box, MB extensions and switch to a standard theme of WordPress (2022) and recheck this issue?
-
AuthorPosts