Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
Please use the field
taxonomy_advancedinstead oftaxonomyin a block. Please refer to this topic https://support.metabox.io/topic/not-show-taxonomy-field-values-in-mb-blocks/Long Nguyen
ModeratorHi Hazmi,
You should use the setting
clone_defaultfor the subfield, not the group itself, to set the default value for a subfield in a cloneable group. Please read more on this documentation https://docs.metabox.io/extensions/meta-box-group/#clone-default-valuesLong Nguyen
ModeratorHi Martin,
It looks like the file
wp-includes/SimplePie/Parse/Date.phpis missing on your site. Please try to reinstall the WordPress core by going to the admin area > Dashboard > Updates > Reinstall version (latest 6.0.2) and let me know if it helped.Long Nguyen
ModeratorHi,
The extension MB Geolocation does not support updating the location info automatically. You have to edit the post and update the address field manually to populate the new location. If you are familiar with coding, you can follow the documentation to know how to update a field value in a custom table with code https://docs.metabox.io/extensions/mb-custom-table/#api
September 13, 2022 at 11:15 PM in reply to: rwmb_xxxxxxxx_after_save_post not working after post type slug change #38296Long Nguyen
ModeratorHi,
So which part/function that does not work after changing the CPT slug?
update_post_meta()orwp_update_post()Can you please also share the code that creates the field group
logbook? I see that in this action hookrwmb_logbook_after_save_post.Long Nguyen
ModeratorHi,
It looks like the button widget of Elementor does not work with the subfield value in a group. I will inform the development team to consider supporting this case in future updates.
Thanks for your patience.
September 13, 2022 at 12:35 PM in reply to: rwmb_xxxxxxxx_after_save_post not working after post type slug change #38282Long Nguyen
ModeratorHi Jerome,
Can you please share the code that creates the callback function hooks to the action
rwmb_after_save_post? Do the field group and custom fields work with the new post type slug? Changing the post type slug might lead to many unexpected issues on your site.Long Nguyen
ModeratorHi,
I got this. Please add a rule
!importantto override the current style of the field..rwmb-taxonomy-wrapper .rwmb-input-list li { display: block !important; }Long Nguyen
ModeratorHi,
The product attribute is not a taxonomy, it works like a settings page in the admin area. The (default) taxonomies of WooCommerce product are Color (pa_color) and Size (pa_size). Please check these screenshots https://imgur.com/a/gaWjMHP
Long Nguyen
ModeratorHi,
I'm not quite sure why the translation text does not display in the German language if I use MB Views on your site. If I use the WordPress function
get_option()and output the field value on a template file, the translation text display as well.$site_options = get_option( 'site-configuration' ); echo $site_options['site_settings_texts_more_itineraries'];Maybe there is an issue with the WPML settings on your site. If you don't mind, please use the PHP function as I tried.
Long Nguyen
ModeratorHi,
As you can read on the documentation https://docs.metabox.io/fields/oembed/#data
the field oEmbed saves the file URL to the database. If it is muted when outputting the field value with the builder, please contact builder support to ask for help with this case.Long Nguyen
ModeratorHi,
Thanks for your details. As I said before, capabilities or user role permission is not in our scope of support. If you use a role editor plugin, please contact their support to get further assistance.
Long Nguyen
ModeratorHi Fergal,
Please follow the WP documentation to know how to display the pagination in a loop https://developer.wordpress.org/themes/functionality/pagination/
September 11, 2022 at 9:58 PM in reply to: How to add target"=_blank" to the URL Custom Field Type? #38265Long Nguyen
ModeratorHi,
When outputting the field value, you can add the attribute to the HTML code. For example:
<a href="<?php echo rwmb_meta( 'field_URL_id' ); ?>" target="_blank"><?php echo rwmb_meta( 'field_URL_id' ); ?></a>to open the URL in a new tab. Read more on the documentation https://docs.metabox.io/displaying-fields-with-code/
Long Nguyen
ModeratorHi,
The feature
js_optionsis available when you create thedatefield in the builder, screenshot https://monosnap.com/file/ELPs5V6wPR0Fjgz24iy5QR8wOhZ7ot -
AuthorPosts