Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
Thanks for getting in touch.
I've installed Social Warfare from WordPress.org https://wordpress.org/plugins/social-warfare/
but not see any issue. Please deactivate all plugins except Meta Box and Social Warfare then re-check this issue. Get more details on this topic https://support.metabox.io/topic/how-to-create-a-new-topic/.Long Nguyen
ModeratorHi,
Please follow the Debugging Information step and let me know how it goes.
https://support.metabox.io/topic/how-to-create-a-new-topic/Long Nguyen
ModeratorHi,
Can you please share some screenshots of your View and post page?
Long Nguyen
ModeratorHi Jordan,
I do not see any issue with your code, screen record https://share.getcloudapp.com/2NuweR4z.
Please make sure that Meta Box and Meta Box extensions are up to date. Then follow the step Debugging Information here https://support.metabox.io/topic/how-to-create-a-new-topic/.
Let me know if it helped.
May 7, 2021 at 9:12 PM in reply to: ✅when Reciprocal relationship checked cant change connection #28002Long Nguyen
ModeratorHi Felix,
You can remove "Reciprocal relationship" and use the query on two single templates.
- In the single Work, use this code
$connected = new WP_Query( [ 'relationship' => [ 'id' => 'art-work-2-press', 'from' => get_the_ID(), // You can pass object ID or full object ], 'nopaging' => true, ] );- In the single Press, use this code
$connected = new WP_Query( [ 'relationship' => [ 'id' => 'art-work-2-press', 'to' => get_the_ID(), // here ], 'nopaging' => true, ] );then copy the loop from one template to the other.
Long Nguyen
ModeratorHi Cees,
-
Is the review a custom post type or based on the WordPress comments?
-
The Frontend Submit form does not support changing the post status from Draft to Publish. You can refer to this topic and use the WordPress function wp_update_post() to update the post status based on the field value.
Long Nguyen
ModeratorHi David,
The MB Custom Post Type just helps you to create post types visually without coding. It does not handle the post template. You can follow the Beaver Builder document to know how to hide the page title https://docs.wpbeaverbuilder.com/beaver-builder/getting-started/bb-editor-basics/show-or-hide-the-wordpress-page-title/.
Or contact the theme support to ask for help in this case.Long Nguyen
ModeratorHi,
You are talking about View so of course, the code is added to View.
https://share.getcloudapp.com/E0uYB20ZLong Nguyen
ModeratorHi Jordan,
Please try to use the shortcode in the Block editor or Classic editor. Let me know how it goes.
Long Nguyen
ModeratorHi,
The media fields (images or files) save the ID of the media in the database so it will show the image ID when you use the Divi builder. Please follow the template usage and create a shortcode to show the image in the builder.
Long Nguyen
ModeratorHi,
Thank you for reaching out.
You can use the WordPress function date_i18n() via the proxy
mbto show the date in localized format, the field date should be saved in timestamp.Here is the sample code
{% set field_date = mb.rwmb_meta('field_id') %} Date: {{ mb.date_i18n('j. F Y', field_date) }}Long Nguyen
ModeratorHi Floris,
You can use a third-party plugin to manage the accessibility of user role, such as User Role Editor https://wordpress.org/plugins/user-role-editor/
Long Nguyen
ModeratorHi Cees,
It can be done by using the code to create the field. You can create a text field in a settings page to save the Google API key, then when creating the field, just get the option value and assign it to the
api_keysetting.
https://docs.metabox.io/fields/map/#sample-codeLong Nguyen
ModeratorHi,
Thanks for your feedback.
Meta Box has the extension MB Relationships or field type post works similar to the relationship field type of ACF in the backend. But we have to use the code to show the info of the relation posts.
I will inform the development team to make it compatible with Elementor and other page builders for easier drag and drop.
May 6, 2021 at 10:22 AM in reply to: ✅Define filterable and/or sortable admin columns in extened class #27955Long Nguyen
ModeratorHi,
Thank you for reaching out.
The custom admin columns do not support sorting by field value due to we don't know what's data type you add to the column. You can override the function
sort()likeshow()to handle the query.
https://prnt.sc/12jyse3 -
AuthorPosts