Forum Replies Created
-
AuthorPosts
-
December 2, 2022 at 9:41 PM in reply to: Profile pages using MB User Profile and MB Beaver Builder Integration #39457
Peter
ModeratorHello Jan,
Let me check that issue on your site.
December 1, 2022 at 10:31 PM in reply to: ✅Custom queries while using Breakdance causing a TWIG issue #39443Peter
ModeratorPeter
ModeratorHello,
When creating/editing the custom post type, you can go to the tab
Supportsand disable optionCommentsto remove the comment box for that post type.If you are using the code, please read more on the documentation https://developer.wordpress.org/reference/functions/register_post_type/#supports
Peter
ModeratorHello,
Using the custom taxonomy for user is not a good solution, WordPress itself does not support taxonomy for user officially. It also cannot be done with Meta Box.
You can create custom fields for user (user meta) to store extra data for each user.Or I think you can create a custom post type called Users, for example, then you can use the custom taxonomy or custom fields as you want.
December 1, 2022 at 10:07 PM in reply to: Open Street Map not loading in Front-End (404 error in console) #39439Peter
ModeratorHello,
Can you please deactivate all plugins (including Oxygen) and follow the documentation below to output the field OSM with the helper function
rwmb_meta()and see if it helps?
https://docs.metabox.io/fields/osm/#template-usageI think it could be a conflicting JS code with another plugin.
Peter
ModeratorHello there,
Can you please let me know the steps to reproduce the issue? I'm just using the type Shortcode and putting your code to the post content and do not see any issue.
Peter
ModeratorHello,
To understand how to pass the custom data to the View shortcode, please do the following steps:
1. View code: just print out the post ID
Post ID: {{ post_id }}2. PHP code that works with Gridbuilder
function render_custom_field_email_block() { // Object can be a post, term or user. $object = wpgb_get_object(); // If this is not a post (you may change this condition for user or term). if ( ! isset( $object->post_type ) ) { return; } // You have to change "custom_field_name" by yours. echo do_shortcode('[mbv name="wpgb-card-meta" post_id='. $object->ID .']'); //pass the ID from object above }Let me know how it goes.
December 1, 2022 at 9:38 PM in reply to: ✅column still takes its width space when visibility and display hidden #39435Peter
ModeratorHello,
Sorry for the misunderstanding, the style "display: none" is added to the wrapper element inside the rwmb-column element so it is not possible to hide the column if the wrapper is hidden. I will inform the development team to consider supporting this case in future updates.
Thanks.
November 30, 2022 at 11:29 PM in reply to: ✅Custom queries while using Breakdance causing a TWIG issue #39428Peter
ModeratorHello Jim,
It could be a compatibility issue with Breakdance, can you please share a copy of this plugin with me? I will inform the development team to check it and see if there is something we can do from our side.
Thanks.
Peter
ModeratorHello,
If the third parameter (post ID) is blank, that means the current post ID is used. In this case, you can just use the field ID as the first parameter.
<?php echo rwmb_meta('embed_code'); ?>Peter
ModeratorHi,
Sorry about missing the info, "official support from Piotnet Grid Builder" that means they create the integration with Meta Box and support the integration. As you can see the integration with Elementor, the integration is officially supported by us.
Peter
ModeratorHello,
Please submit a ticket here https://metabox.io/contact/
Our marketing team will help you to process the request. Thanks.Peter
ModeratorHello,
Changing the order 'DESC' to 'ASC' will change the sorting posts and the argument looks working correctly. It could be a caching issue if you do not see the changes.
Please read more the WP query parameters here https://developer.wordpress.org/reference/classes/wp_query/#order-orderby-parameters
Peter
ModeratorHello,
The view template support passing the variable to the view shortcode. So you can pass the post ID and use the ID in the template as well. Can you please share the view code that you use variable
post_id?Please read more on the documentation https://docs.metabox.io/extensions/mb-views/#custom-data
Peter
ModeratorHello,
I see the post permalink is not generated, so the search form and other plugins might not work if the title is missing. I'm not sure what other issues will happen so far.
As I understand it is not possible to "load Gutenberg into a Metabox-generated field that is saving to a Custom Table". But if you create a custom table with custom fields, you can save the field value to the custom table as the post fields as well.
Please read more on the documentation https://docs.metabox.io/extensions/mb-blocks/
-
AuthorPosts