Forum Replies Created
-
AuthorPosts
-
February 21, 2025 at 10:47 PM in reply to: Event Single with data from Event and related Topics with related Team Member #47713
Peter
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/xz3xeEXPeter
ModeratorHello Pixluser,
The integration between Meta Box and Oxygen Builder is maintained on the Oxygen side. It has been released a few years ago. Please follow this documentation https://oxygenbuilder.com/documentation/templating/meta-box/
Peter
ModeratorHello Peter,
This issue has been fixed. Please use the plugin Meta Box AIO 2.0.1 or MB Builder 4.9.8 and recheck the issue.
Peter
ModeratorHello John,
Yes, it is a pre-made custom fields group like another form: register. There isn't an option to customize the appearance of this form, you can just use some custom CSS code to change the style of the form.
In general, Meta Box supports some forms in the front end with basic format, style and options like WordPress does. It doesn't work like a page builder to customize every element with a few clicks.
You can consider using a page builder that has the same feature to customize their form deeply.February 18, 2025 at 10:52 PM in reply to: How to make centralized My Account page with Custom and WooCommerce Meta??? #47680Peter
ModeratorHello,
1.
1a, 1b. No, there isn't an option to open the lost password form on a specific page and remove the parameter "rwmb-lost-password" from the URL.
1c. You can use the filter hook
rwmb_profile_lost_password_fieldsto change the text. Take a look at the functionget_lost_password_fields()to get more details.
For the color, you can create a custom CSS code to change it as I mentioned in another topic https://support.metabox.io/topic/how-to-customize-appearance-of-front-end-user-submission-form-using-kadence/#post-476602.
2a. You can refer to this topic to know how to use the filter hook https://support.metabox.io/topic/sort-the-username-and-email-fields/#post-24766
This is a standard feature of WordPress https://developer.wordpress.org/plugins/hooks/filters/2b, 2c, 2d. MB User Profile doesn't support this feature "an email would be sent their way with a link to set up a password for their account".
5. Check point 2a above to use the filter hook
rwmb_profile_register_fieldsto override default field settings. Here is an example:'password' => [ 'name' => __( 'Password', 'mb-user-profile' ), 'id' => 'user_pass', 'type' => 'password', 'required' => true, 'desc' => '<span id="password-strength" class="rwmb-password-strength"></span>', 'attributes' => [ 'pattern' => '^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{10,}$' ] ],NOTE: please understand that, we don't support customization code for your specific needs. If you want to customize your site but don't know how to do that. We offer a customization service for an extra fee. Please contact us here for more details https://metabox.io/contact/
Thank you.
February 18, 2025 at 10:01 PM in reply to: Deactivate MB plugin and user avatar snippet stopped functioning #47679Peter
ModeratorHello Care Digital,
I use that snippet on my site and deactivate Meta Box plugin but don't see the issue. Here is the screenshot https://imgur.com/Q7mfAm3
Can you please share some screenshots of the issue on your site and let me know how to reproduce it?
Peter
ModeratorHello,
If you use the variable, you should remove the curly brackets and single quote from the query arg:
{% set topic_args = { relationship: { id: 'relationship-team-to-topic', from: post.ID }, nopaging: true, post_type: 'topic', orderby: post.topic_datetime | date( 'Y-m-d H:i' ), order: 'ASC' } %} -
AuthorPosts