Forum Replies Created
-
AuthorPosts
-
November 28, 2021 at 4:16 PM in reply to: ✅How to add Text Color button to TinyMCE/WYSIWYG field #32214
Long Nguyen
ModeratorHi,
The option
forecolorworks as well on my demo site. If you want to show the forecolor in the second toolbar, you can try to use this code'options' => array( 'textarea_rows' => 8, 'teeny' => true, 'media_buttons' => false, 'quicktags' => false, 'tinymce' => array( 'keep_styles' => false, 'paste_remove_styles' => true, 'paste_remove_spans' => true, 'paste_as_text' => true, 'toolbar1' => 'bold,italic,strikethrough,bullist,numlist,blockquote,hr,alignleft,aligncenter,alignright,link,unlink,wp_more,spellchecker,wp_fullscreen,wp_adv', 'toolbar2' => 'forecolor' //here ), ),Refer to this documentation https://codex.wordpress.org/TinyMCE
Long Nguyen
ModeratorHi Phil,
If you use the field type
select_advanced, it will escape the special characters. You can use the field typeselectorcheckbox_listto show the character ampersand&.Long Nguyen
ModeratorHi Adam,
Thanks for reaching out.
Please follow this article to know how the license system works https://metabox.io/meta-box-update-licensing-system/
Long Nguyen
ModeratorHi,
Thanks for your feedback.
If you want to edit the post by Beaver Builder while using the custom blocks created by Meta Box, please click on the button
Beaver Builderon the post lists instead of the editor.Refer to this topic https://support.metabox.io/topic/beaver-builder-metabox-io-and-gutenberg/
Long Nguyen
ModeratorHi,
You can use the helper function rwmb_get_field_settings() to print out the field settings.
For the key
sizeof thetextfield, you can follow this documentation to know the specific settings https://docs.metabox.io/fields/text/Long Nguyen
ModeratorHi,
As on the documentation https://docs.metabox.io/rwmb-meta/
If you do not pass the third parameter$post_idto the helper function, it will take the current post ID to get the field value. But somehow when you edit the post by Oxygen, the post ID is not retrieved. Maybe you are working with Templates, not editing the post itself.Long Nguyen
ModeratorHi,
If you use the Oxygen builder to re-build the checkout page is a good way. But that means you use the default forms and fields of WooCommerce, not the custom fields created by Meta Box.
November 26, 2021 at 12:48 PM in reply to: ✅Post types not displaying on WordPress Admin Panel #32177Long Nguyen
ModeratorHi,
The post-type slug must not be over 20 characters. We have written down on the documentation https://docs.metabox.io/creating-post-types/#general-settings
Long Nguyen
ModeratorHi,
I think it is possible to create a custom checkout page. But you have to create custom functions to handle and process the data after the users submit the frontend form. Refer to these articles
https://metabox.io/create-online-reservation-form-for-restaurants/
https://metabox.io/create-online-admission-form-for-school-university/November 26, 2021 at 12:27 PM in reply to: ✅Product relationship with 'transactions' and 'users' #32175Long Nguyen
ModeratorHi Nicholas,
You can add more meta boxes to the frontend submission shortcode by separating the meta box IDs with commas. Like this
[mb_frontend_form id='metabox-id-1,metabox-id-2' post_fields='title,content']Refer to these topics
https://support.metabox.io/topic/relationship-content-submission/
https://support.metabox.io/topic/mb-relationships-mb-frontend-submission/Long Nguyen
ModeratorNot yet. Please use the letters or underscores instead of the symbol to make it works.
November 25, 2021 at 4:22 PM in reply to: ✅Can't save location for custom field groups, always reverts to POSTS #32161Long Nguyen
ModeratorHi,
Can you please export that field group and share it here? I will import it to my demo site and check the issue.
https://docs.metabox.io/extensions/meta-box-builder/#export--importLong Nguyen
ModeratorHi,
- To save the default date value in the database, you can use the data type
DATE, please read more here https://www.mysqltutorial.org/mysql-data-types.aspx - You can add the setting
'clone' => trueto the field that you want to repeat, please read more here https://docs.metabox.io/cloning-fields/ - The media fields (file, image ...) save the ID of the attachment in the database so you can use the helper function to retrieve the attachment URL. Please read more here https://docs.metabox.io/fields/file/#template-usage
array( 'id' => 'story_basic_repeater_paragraph_text', 'type' => 'text', 'name' => 'Story Basic Repeater Paragraph Text', 'clone' => true, ),November 25, 2021 at 11:14 AM in reply to: ✅include 'post_title' as a field inside register_meta_boxes #32157Long Nguyen
ModeratorHi,
Yes, it is possible. Please follow this documentation to know how to override the default post fields https://docs.metabox.io/extensions/mb-frontend-submission/#reorder-post-fields
Long Nguyen
ModeratorHi,
You can use a plugin to rename the image file after uploaded, such as Phoenix Media Rename https://wordpress.org/plugins/phoenix-media-rename/
- To save the default date value in the database, you can use the data type
-
AuthorPosts