Forum Replies Created
-
AuthorPosts
-
Peter
ModeratorHello,
I'm not sure if the Bricks supports creating a template for subpage only. If you create the template by coding, you can use the property
post_parentof the$postobject to check if the page is a subpage (child-page). Refer to this topic https://wordpress.stackexchange.com/questions/169306/check-if-is-on-child-page-of-a-particular-pageFebruary 15, 2024 at 9:21 PM in reply to: ✅The option for Prepended permalink structure is not working #44571Peter
ModeratorHello,
That option works with the Custom Structure permalink settings, screenshot https://imgur.com/ZeU2Vw7
- If you disable "Prepended permalink structure", the post type URL will be: https://yoursite.com/cpt-slug/post-slug
- If you enable it, the post type URL will be: https://yoursite.com/abc/cpt-slug/post-slugPeter
ModeratorHello Eric,
I don't have more idea about your approach to import data to your database. Just ensure the post IDs are auto-increment (1, 2, 3 ...) when importing data and you have a backup of the database before doing that.
Peter
ModeratorHello Doug,
There isn't an option to set up the icon for the setting tab in the builder. I will inform the development team to consider supporting this feature in future updates.
Peter
ModeratorHello,
The filter hook
rwmb_outer_htmlis applied to the field and it generates a closing tag automatically. If you want to add a class to the field group (meta box), please use theclasssetting.
Following the documentation https://docs.metabox.io/creating-fields-with-code/February 13, 2024 at 11:06 PM in reply to: ✅Custom table field to have same value as post title #44558Peter
ModeratorHello,
I think it is possible. You can create a new field group for the field
product_nameand save data to the custom table. Then use the actionrwmb_after_save_postto hook a callback function to savepost_titlefield value to the custom table.Following the documentation
https://docs.metabox.io/actions/rwmb-after-save-post/
https://docs.metabox.io/extensions/mb-custom-table/#updateFebruary 13, 2024 at 10:56 PM in reply to: Taxonomy Slug in Metabox and WordPress Settings different #44557Peter
ModeratorHello,
After changing the CPT, Taxonomy slug, the posts, and terms created are still saved in the database. They are just not displayed in the admin area. You can use a plugin to switch CPT, Taxonomy for them.
https://wordpress.org/plugins/post-type-switcher/
https://wordpress.org/plugins/taxonomy-switcher/Peter
ModeratorHello,
Can you please share the code that you are using to customize the meta box settings? Please try to add the code to the file functions.php in the theme folder and recheck this.
Peter
ModeratorHello,
I'm afraid that there isn't a way to render the third-party shortcode when using Meta Box shortcode without bypassing HTML filtering. It helps you to prevent security issues so please be more careful to use the shortcode.
February 12, 2024 at 2:45 PM in reply to: ✅Unregister Custom Table in Database / using Bricks Builder #44545Peter
ModeratorHello,
In the case of using Bricks 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/February 12, 2024 at 2:43 PM in reply to: ✅Who to restrict each user to submit only one ID Card (form)? #44544Peter
ModeratorHello,
MB Frontend Submission doesn't support that feature. You can refer to this topic to use a custom code
https://support.metabox.io/topic/does-mb-front-end-submission-work-with-user-posts-limit/February 12, 2024 at 2:35 PM in reply to: Frontend rendering issue after plugin update to 1.24.2 #44543Peter
ModeratorHello,
You just need to add the code in the documentation to the file functions.php in the theme folder
add_filter( 'rwmb_meta_shortcode_secure', '__return_false' );February 9, 2024 at 10:14 PM in reply to: ✅Enhancement Request: Group fields in metaboxes using CSS GRID & FLEXBOX #44528Peter
ModeratorHello,
Thank you for your suggestion. I understand you want to use the CSS Grid or Flexbox to display custom fields in the admin area to get more effective. I will inform the development team to consider supporting this feature in future updates.
Peter
ModeratorHello Andrew,
There isn't a parameter to set the order when using the relationship. By default, it should display the order of relation in the admin area. You can try to use the code in the documentation to output the relationship and recheck this issue. Please use the default WordPress theme and don't use Oxygen when testing,
https://docs.metabox.io/extensions/mb-relationships/#getting-connected-itemsFebruary 9, 2024 at 10:03 PM in reply to: ✅Connecting an Event (TEC Pro) with a CPT | Bricks Builder #44526Peter
ModeratorHello Philipp,
Please try to use the code to output the relationship page/event and see if it works, without using Bricks. Following the documentation https://docs.metabox.io/extensions/mb-relationships/#getting-connected-items
-
AuthorPosts