Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Paul,
Please follow this article to know how to display all locations (CPT) on a map https://metabox.io/display-all-listings-on-a-map/?swcfpc=1
Long Nguyen
ModeratorHi,
As far as I know, Twig version used by Gantry 5 is 1.42.5 while MB Views uses version 3.3.8 so I think it could be a conflict between the two versions.
Please try to contact Gantry support to ask for help with this issue.Long Nguyen
ModeratorHi,
Please notice that the helper function
rwmb_meta()or integrator supports showing raw URL (text) on the frontend as a link to click.To show the URL field value in a button/link, you need to assign it to the attribute
hrefof the<a>tag to make it clickable. Just like<a href="<?php echo rwmb_meta( 'field_url_id' ) ?>">Button Link</a>July 7, 2022 at 12:51 PM in reply to: ✅file_upload reordering interfering with touch scrolling #36856Long Nguyen
ModeratorHi Glen,
You can use this JS code to disable the sortable feature of the
file_uploadfieldjQuery(document).ready( function($) { $('.rwmb-file_upload-wrapper .rwmb-media-list').sortable('disable'); } );Regarding the issue with an Android phone, can you please check this issue with an iPhone?
Long Nguyen
ModeratorHi vacdk,
You need to get the group value first, access the element, and assign another value for this.
$post_id = 123; $value = rwmb_meta( 'group_tapgyiu2mz', '', $post_id ); $value[0]['hidden_field'] = '1234'; rwmb_set_meta( $post_id, $field_id, $value );Long Nguyen
ModeratorHi Sascha,
Custom fields created by Meta Box won't work with WooCommerce on the frontend when processing the order or checkout like that. Our plugin helps you to fill the field value on the backend and display it on the frontend. If you want to customize the checkout fields, please follow WooCommerce documentation https://woocommerce.com/document/tutorial-customising-checkout-fields-using-actions-and-filters/
Long Nguyen
ModeratorHi,
Thank you for your feedback.
It looks like the integrator plugin does not get the alt text from the image to display on the frontend. I will inform the development team to support this case in future updates.
For now, you can use the helper shortcode to display the image with full size and alt text.
[rwmb_meta id="single_image_id" size="full"]Please read more on the documentation https://docs.metabox.io/shortcode/
July 6, 2022 at 4:46 PM in reply to: ✅Critical Error on website after converting datetime fields to timestamps #36835Long Nguyen
ModeratorHi,
Please add a property
timestampto format the date of a subfielddatein a group.{{ field.timestamp | date( 'j. F Y' ) }}Refer to this topic https://support.metabox.io/topic/date-format-is-giving-error-mb-views-template/
And please use different variable names (field, clone), don't just use one for more scopes.
Long Nguyen
ModeratorHi,
Please follow this documentation to use the time format https://trentrichardson.com/examples/timepicker/
Let me know how it goes.
Long Nguyen
ModeratorHi,
Please do not touch or change anything in two WordPress folders
wp-adminandwp-includes, all the customization will be lost after updating a new version of WordPress. If you want to customize TinyMCE, please use some supported hooks (like your code above) or a third-party plugin that supports TinyMCE's additional features.Long Nguyen
ModeratorHi,
Please share your site (or staging) credentials via this contact form https://metabox.io/contact/
I will help you to investigate the issue.Long Nguyen
ModeratorHi Karen,
Thank you for your feedback.
Our marketing team is going to check the issue and get back to you shortly.
July 6, 2022 at 9:56 AM in reply to: Is it possible to make relation between the same posttypes? #36812Long Nguyen
ModeratorHi,
Yes, just one setting
reciprocalas on the documentation.July 5, 2022 at 9:43 PM in reply to: Is it possible to make relation between the same posttypes? #36806Long Nguyen
ModeratorHi Cees,
It is possible. And to avoid displaying two meta boxes on a post, please use the setting
reciprocal. There is a note in the documentation about this case https://docs.metabox.io/extensions/mb-relationships/#using-meta-box-builderLong Nguyen
ModeratorHi,
You can use the editor options to add the buttons to the
WYSIWYGfield in the block. Please read more on the documentation https://docs.metabox.io/fields/wysiwyg/
https://codex.wordpress.org/TinyMCE'options' => [ 'tinymce' => [ 'toolbar2' => 'subscript' //here ], ],If you are using the builder, please check this screenshot https://monosnap.com/file/U6cEl3lxwtMBWrw8jpV4fPAhwGDEYs
-
AuthorPosts