Forum Replies Created
-
AuthorPosts
-
April 12, 2023 at 6:36 PM in reply to: How to display deleted post in MB Frontend Submission Dashboard (Trash Section) #41459
Peter
ModeratorHello,
>> It does display the trashed post on the Frontend dashboard, but I am unable to edit the post even my user role is Admin.
It is expected behavior. You are also not able to edit the trash post in the admin area, just restore it.
April 12, 2023 at 6:26 PM in reply to: ✅Enable Edit For admin while on Front end read only metabox #41458Peter
ModeratorHello Aravinda,
You need to register the meta box and custom fields with code to use that logic. Please read more on the documentation https://docs.metabox.io/creating-fields-with-code/
Peter
ModeratorHello Mark,
MB Blocks does not work with MB Frontend Submission in the frontend. In the backend (admin area), Meta Box does not support editing the user role to restrict the user to see only their own post. It is beyond the scope support of Meta Box.
Peter
ModeratorHello,
It's a very weird issue, I can see it happens on some sites with WP 6.2 but not all of them. I'm discussing this issue with my development team and get back to you later.
Peter
ModeratorHello Jo,
Please make sure you have the latest version of Meta Box 5.6.18 and Meta Box AIO 1.20.2 then check this issue again.
April 11, 2023 at 7:24 PM in reply to: How to display deleted post in MB Frontend Submission Dashboard (Trash Section) #41433Peter
ModeratorHello,
If you want to display the trash posts in the frontend dashboard, you can use the filter hook rwmb_frontend_dashboard_query_args
The frontend dashboard is a custom query to display posts belonging to a user so you can create your own query to display a custom dashboard on your own.
https://developer.wordpress.org/reference/classes/wp_query/Peter
ModeratorHello,
You can use the function
\MetaBox\CustomTable\API::add()or\MetaBox\CustomTable\API::update()and hook to the actionsave_postto update a field in a custom table automatically. Please read more on these documents
https://developer.wordpress.org/reference/hooks/save_post/
https://docs.metabox.io/extensions/mb-custom-table/#addPeter
ModeratorHello,
I do not receive any information. You can send the file through the contact form https://metabox.io/contact/
or upload it to https://pastebin.com/ and share the link here.Peter
ModeratorHello,
Can you please recheck the issue on a clean installation of WordPress and Meta Box? I do not see that issue on my demo site. If it still does not work, please share your site credentials via this contact form https://metabox.io/contact/, I will take a closer look.
Peter
ModeratorHello,
I think yes, you can send the details of the integration and our development team will take a look and give a quick response.
Peter
ModeratorHello Nathan,
Can you please share your site credentials (should be staging site) via the contact form below and details of the issue? I will take a closer look.
https://metabox.io/contact/Peter
ModeratorHello Stefan,
Can you please share some screenshots of the issue on your site? And export the custom taxonomy on your site to a JSON file, I will import it to my local site check this issue.
April 10, 2023 at 9:02 PM in reply to: ✅Need help creating a Delete button for Favorite Posts using MBviews #41410Peter
ModeratorHello,
Supporting customization code for your specific needs is beyond our scope of support. You can create a customization service request here https://metabox.io/contact/, our development team will help you with an extra fee.
Thanks.
Peter
ModeratorHello Konstantinos,
1. Meta Box and MB Geolocation do not support showing location data in next level values like that.
2. You can merge two field values by following the documentation https://docs.metabox.io/extensions/meta-box-geolocation/#custom-binding
3. Not possible. If there are two fields on a page with the same ID, one will not work.
If you are not familiar with coding and want to accomplish a project or a task, you can create a customization service request here https://metabox.io/contact/, our development team will help you with their best.
Peter
ModeratorHello Rod,
Please follow the documentation to understand the main query https://docs.metabox.io/extensions/mb-views/#main-query
So in this case, if you use
term.bookinglink, it will not return the term meta value. You can use the helper functionrwmb_meta()to get the term meta. For example:{{ mb.rwmb_meta( 'bookinglink', { object_type: 'term' }, 123 ) }}Please read more on the documentation
https://docs.metabox.io/extensions/mb-views/#running-php-functions
https://docs.metabox.io/extensions/mb-term-meta/#getting-field-value -
AuthorPosts