Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
Thank you for getting in touch.
Can you please check that two menu items?
http://oxygen.espressivo.online/teams
http://oxygen.espressivo.online/teams/helen-piresIt is possible that the menu item was removed or the page/post is deleted or moved to trash.
Long Nguyen
ModeratorHi,
Thanks for your additional information.
There are several reserved terms that we've noted in the documentation. It might help you in this case. Please read more here https://docs.metabox.io/extensions/mb-custom-post-type/#reserved-terms.
April 3, 2021 at 9:00 PM in reply to: ✅Relationships adding child posts to parent in the front end #26936Long Nguyen
ModeratorHi,
Thank you for reaching out.
You can use the extension MB Frontend Submission to create a post on the frontend and create connections to other posts also.
Each relationship meta box has an ID:
{$relationship_id}_relationships_fromand{$relationship_id}_relationships_to. You can include these IDs in the form shortcode to show it on the front end.Get more details on the documentation https://docs.metabox.io/extensions/mb-frontend-submission/, and refer to this topic https://support.metabox.io/topic/mb-relationships-mb-frontend-submission/.
Long Nguyen
ModeratorHi,
I have not used a data table plugin before. If you familiar with coding, it's not complicated to create a table with a WordPress query and HTML tag
<table>. You can also follow this article to get a table plugin https://kinsta.com/blog/wordpress-table-plugins/.Long Nguyen
ModeratorHi Brian,
Thank you for reaching out.
website: if you are using the helper function rwmb_meta() in a custom loop, you have to pass 3 arguments as in the documentation https://docs.metabox.io/rwmb-meta/#arguments.It should be:
$d->website = rwmb_meta( 'website', '', $d->ID );cities: return null means there is no post connect to a post typedestinations. Is that a post typedestinationsconnect to another post type? So the argument should change tofrom'id' => 'destination-city', 'from' => $d->ID,Long Nguyen
ModeratorHi,
Thanks for your feedback.
I will inform the development team to check on this case and get back to you later.
Long Nguyen
ModeratorHi,
Thank you for getting in touch.
Please do follow some steps to troubleshoot the issue
- Click on the sort by post title or filter by date, screenshot https://share.getcloudapp.com/eDujLrPN.
- Re-save permalink settings (Plain)
If none of these work, please try to install a fresh instance of WordPress and re-check the issue.
Long Nguyen
ModeratorHi,
Thanks for your suggestion.
I will inform the development team to check on this case and get back to you later.
Long Nguyen
ModeratorHi,
The code helps you to disable one custom block on the specific post type, understand that is enabled by default if you do not add the condition. See my screen record https://share.getcloudapp.com/L1udYD40.
Full of code to test
add_filter( 'rwmb_meta_boxes', 'your_prefix_function_name', 999 ); function your_prefix_function_name( $meta_boxes ) { $prefix = ''; if( isset( $_GET['post_type'] ) && $_GET['post_type'] == 'page' ) { return $meta_boxes; } $meta_boxes[] = [ 'title' => __( 'My Block', 'your-text-domain' ), 'category' => 'text', 'type' => 'block', 'context' => 'content', 'fields' => [ [ 'name' => __( 'Text', 'your-text-domain' ), 'id' => $prefix . 'text_t4541bur58', 'type' => 'text', ], ], ]; return $meta_boxes; }Long Nguyen
ModeratorHi AJ,
Do you mean when querying to show the post on the frontend? On the backend, what connection creates first will show first and vice versa.
The extension also supports re-ordering the connections by drag and drop items.
Long Nguyen
ModeratorHi,
Please follow this solution to know how to output the field value https://docs.metabox.io/displaying-fields/.
Long Nguyen
ModeratorHi,
Thank you for reaching out.
I'm afraid that it is not possible to add a status custom field for a relationship. You can create a cloneable group, inside it, create two fields. One is field type user, one is field type select (3 status options). Then each cloneable group is a user with a status.
Get more details on the documentation
https://docs.metabox.io/fields/user/
https://docs.metabox.io/fields/select/April 2, 2021 at 3:51 PM in reply to: ✅Display Taxonomy Featured Image for Single Product Page #26905Long Nguyen
ModeratorHi,
Sorry, I do not understand the question clearly. Can you please clarify it? Create a custom field for taxonomy?
Long Nguyen
ModeratorHi Dorian,
Can you please update the newest version of MB AIO 1.13.7 or MB Builder 4.1.2 and check if it works?
Long Nguyen
ModeratorHi,
On my local site, the meta key (field ID) shows as well when creating a table. Screenshots
https://share.getcloudapp.com/12uAOXnG
https://share.getcloudapp.com/jkuLJ9G1So I recommend contacting plugin wpDataTables support to ask for help in this case.
-
AuthorPosts