Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello Soren,
Please update the plugin Meta Box AIO to the latest version 2.0.1 or activate the plugin Meta Box along with Meta Box AIO then check the issue again.
Let me know how it goes.
February 24, 2025 at 10:45 PM in reply to: Metatbox AIO with or without installing individual plugins #47729Peter
ModeratorHello Lucian,
Meta Box AIO includes all extension plugins so you will need to use this plugin to get all features of Meta Box plugins.
By default, all extensions are enabled. You can go to Meta Box > Extensions to disable some of them.Refer to the documentation https://docs.metabox.io/extensions/meta-box-aio/
February 24, 2025 at 9:49 PM in reply to: jQuery not working in the editor anymore after update #47728Peter
ModeratorHello,
Currently, we don't support downloading older versions of MB premium plugins. The development team is working on this issue and we will release an update to cover this issue as soon as possible.
Thanks.
Peter
ModeratorHello,
You are using this code to output the field WYSIWYG value:
if($mc_text) echo '<p>'.nl2br($mc_text).'</p>';removing the function
nl2br()will solve the issue, screenshot https://imgur.com/UcfqfN4if($mc_text) echo $mc_text;February 21, 2025 at 10:54 PM in reply to: jQuery not working in the editor anymore after update #47715Peter
ModeratorHello Gerda,
This issue has been reported here https://support.metabox.io/topic/mb_blocks_preview-not-working/
and currently, it is not fixed yet.
I will get back to you when it is included in an update of MB Blocks plugin.Thank you.
February 21, 2025 at 10:52 PM in reply to: Taxonomy Advanced-can't create archive template for terms #47714Peter
ModeratorHello Tanja,
Please follow the documentation below to understand the difference between
taxonomyandtaxonomy_advancedfields.
https://docs.metabox.io/fields/taxonomy-advanced/
https://docs.metabox.io/fields/taxonomy/-
taxonomy: set post terms and work like WordPress taxonomy box.
-taxonomy_advanced: set post meta and work like other custom fields.if you are using the
taxonomy_advancedfield, you can query posts by post meta. Please contact Bricks support to get further assistance when you use their builder.February 21, 2025 at 10:47 PM in reply to: Event Single with data from Event and related Topics with related Team Member #47713Peter
ModeratorHello,
Yes, for the archive page (all Event posts), you can create a separate query and use the loop to show Event posts. Please follow the documentation to include other views in a view template
https://docs.metabox.io/extensions/mb-views/#include-other-viewsPeter
ModeratorHello,
Please share your site admin account by submitting this contact form https://metabox.io/contact/
I will take a look.February 20, 2025 at 9:48 PM in reply to: Can't clone cloneable group and can't view wyswig 'Text' #47705Peter
ModeratorHello,
Can you please activate the single plugin Meta Box along with Meta Box AIO and rechek the issue?
February 20, 2025 at 9:41 PM in reply to: Date timestamp not saving for clonable group when saved with rwmb_set_meta #47704Peter
ModeratorHello,
Do you hook your callback function to the
inithook with a priority later than 20 so the functionrwmb_set_meta()can work? It is noted in the documentation
https://docs.metabox.io/functions/rwmb-set-meta/This code works as well on my site to set the date field value
add_action( 'init', function() { $start_date = '20-04-2025'; $recurring_events[] = array( 'event_date' => strtotime($start_date), ); rwmb_set_meta( 198, 'recurring_event_group', $recurring_events ); }, 99 );Peter
ModeratorHello John,
There is a small issue with the cloneable button. Please activate the plugin Meta Box to fix the issue. The development team is working on it and the fix for this issue will be included in the next update of Meta Box plugins.
February 20, 2025 at 9:00 PM in reply to: Event Single with data from Event and related Topics with related Team Member #47702Peter
ModeratorHello,
Please notice the side connection in the relationship:
FROMorTO'id' => 'event-to-topic' 'id' => 'topic-to-team',then you can correct the directional
fromortowhen using the query to get the relation post.Following the previous topic, you can use two query args
{% set topic_args = { relationship: { id: 'event-to-topic', from: post.ID }, nopaging: true, post_type: 'topic' } %} {% set team_args = { relationship: { id: 'topic-to-team', from: topic.ID }, nopaging: true, post_type: 'team' } %}I hope that makes sense.
Peter
ModeratorHello,
I still cannot reproduce the issue, screenshot https://imgur.com/rsyJZid
Can you please share some screenshots or a screen record of the issue on your site?
Peter
ModeratorHello Peter,
Thanks for the details. I can see the issue with the range subfield in a group field. It works properly when using it as a top field.
I'm going to escalate this issue to the development team to fix this soon.Peter
ModeratorHello,
You can try to use a custom sanitize callback to stripe the break tag
<br>, following the documentation https://docs.metabox.io/sanitization/Meanwhile, I'm not able to reproduce the issue on my end. The break tag is not added to the unordered list elements. Here is the screen record
https://imgur.com/xz3xeEX -
AuthorPosts