Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I do not see that on my demo site, screen record https://monosnap.com/file/iQRdb11B2538YWhcrpZE93Q0SrwHqo
Can you please check this issue in a fresh install and the latest version of Meta Box and MB plugins?
December 3, 2022 at 10:24 AM in reply to: Translate settings page items inside settings page WPML #39466Peter
ModeratorHello there,
1. Please do not translate any pages under Meta Box menu, it will not work as your expectations and might lead to some unexpected errors.
2. I don't know how to translate a custom field on the same settings page. As far as I know, you can translate the field in the String Translation. You can contact WPML support to get further assistance.
And please remember that it's not a post type to translate as a post. You can see the difference in the URL.December 2, 2022 at 11:14 PM in reply to: Profile pages using MB User Profile and MB Beaver Builder Integration #39462Peter
ModeratorI've removed the condition in "Advanced location rules" (MB Include Exclude) to fix this issue. Screenshot https://monosnap.com/file/ZcVNJfH7e3zBrhHzZuGScV4U01G8GW
Peter
ModeratorHello,
Here is how it displays on my side https://monosnap.com/file/wsptuGxuFs6LNhEGfhHgh4s0HrJUWh
I do not see any issue with the format code. Can you please share some screenshots of the issue on your side?
December 2, 2022 at 10:05 PM in reply to: How to insert custom fields with a dropdown selection? #39460Peter
ModeratorHello there,
You might want to use the field
postwhich supports a dropdown of posts of a certain post type and save the field value as the post ID.Please read more on the documentation https://docs.metabox.io/fields/post/
Peter
ModeratorHello,
If the view template output the post ID of the card correctly, you can create the code to get any data of the post with the ID. For example:
View code:
{{ mb.rwmb_meta( 'custom_field_id', '', post_id ) }}Please read more on the documentation https://docs.metabox.io/functions/rwmb-meta/
https://docs.metabox.io/extensions/mb-views/#running-php-functionsDecember 2, 2022 at 9:44 PM in reply to: ✅MB Group Single Image Field in Oxygen Builder's Repeater #39458Peter
ModeratorHello there,
In case of using Oxygen Builder, please reach out to them if you have any issues with installation, configuration, compatibility, or usage.
Refer to our support policy https://metabox.io/support/topic/support-policy/December 2, 2022 at 9:41 PM in reply to: Profile pages using MB User Profile and MB Beaver Builder Integration #39457Peter
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.
-
AuthorPosts