Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi,
Please make sure that you are using Meta Box v5.3.3, deactivate all plugins except Meta Box and MB extensions, switch to the default theme of WordPress (Twenty Twenty) then check the issue again.
If it still shows only image ID, please follow this guide to know how to create the staging site https://www.wpbeginner.com/wp-tutorials/how-to-create-staging-environment-for-a-wordpress-site/.
Then share the credentials (Admin site and FTP account) via this form https://metabox.io/contact/. I will check it out.
Long Nguyen
ModeratorHi,
It's a rare case, we have not supported an option/filter to remove the submit button. But you can use the custom CSS code to hide this button.
.rwmb-form-submit .rwmb-button { display: none; }Long Nguyen
ModeratorHi,
It helps the user move up/down meta boxes (more than 2 meta boxes), see my screen record https://www.loom.com/share/bad88f48d4ff4b68adeca0e7498365dd.
There is no filter to remove buttons up/down, you can take a look in this file of WordPress core https://github.com/WordPress/WordPress/blob/master/wp-admin/includes/template.php#L1336-L1367.
Long Nguyen
ModeratorHi Doug,
With the Builder, you can use the field
Tabto group a/some fields in a tab. See my screenshot https://share.getcloudapp.com/o0u87yx0. Other Tab settings display in the Settings tab https://share.getcloudapp.com/nOuk5ENo.Long Nguyen
ModeratorHi,
WordPress version 5.5 supports to sort, drag and drop meta boxes. You can use this custom CSS code to remove buttons (up and down) on the settings page.
.handle-order-higher, .handle-order-lower { display: none; }Apply the admin CSS code with this plugin https://wordpress.org/plugins/admin-css-mu/.
Long Nguyen
ModeratorHi,
After changing from
#button-code-testtobody, please try to clear the cache and check it again. You can see my screen record to know how to debug and check what code is running https://www.loom.com/share/8162539567a4408da6f8d76f51b0def3.Long Nguyen
ModeratorHi,
The code that you are using is shown on the user profile page with the setting
'type' => 'user'. On the user profile page, the meta box does not have the ID like on the post/page (post type). You can change the JavaScript code to make it works on the user profile page.jQuery( function ( $ ) { $( '#button_reset' ).on( 'click', function() { $( 'body' ).find( 'input[type=text]' ).val(''); } ); $( '#set_default' ).on( 'click', function() { $( 'body' ).find( '#whole_sale_price' ).val('150000'); $( 'body' ).find( '#retail_price' ).val('100000'); $( 'body' ).find( '#discount_price' ).val('80000'); } ); } );Or remove the setting
'type' => 'user'to custom fields on the post editor and works with the frontend submission shortcode[mb_frontend_form id='button-code-test'].Long Nguyen
ModeratorHi,
The theme Stratus is a premium theme so I'm not able to check the issue with this theme. It seems the theme uses Meta Box as a library to create meta boxes, please try to contact the theme support to ask for help in this case.
Let me know if there is any information.
Long Nguyen
ModeratorHi Olivier,
Could you please deactivate all plugins except Meta Box, MB extensions and switch to the default theme of WordPress (Twenty Twenty) then check the issue again?
August 23, 2020 at 1:00 PM in reply to: ✅Registration form shortcode Role attribute not working #21405Long Nguyen
ModeratorHi,
I've checked the
roleattribute of the shortcode register user and it works as well, see my screen record https://www.loom.com/share/420691646f9a4d3d8bc76de69fe8879e.Could you please deactivate all plugins except Meta Box, MB extensions, clear the cache and check the shortcode again?
Long Nguyen
ModeratorHi,
The field
postonly supports to query and show all posts in an array of post types, as the WP_Query does. The simple way, in this case, is to create two fieldspostthen each field select a post type.Long Nguyen
ModeratorHi,
I've checked on my demo site (multisite also) with the latest version of WordPress, Meta Box, Beaver but not see any issue. Looking into the JavaScript error, there is an issue with React DOM while launching Beaver Builder on the editing page. There are two extensions that use React, MB Blocks and MB Views.
Could you please check in the site if there is any broken View or custom block?
August 22, 2020 at 8:59 AM in reply to: ✅Cannot submit front-end from embedded within an iframe #21395Long Nguyen
ModeratorHi,
The “Same Origin” (same site) policy of the Chrome browser limits access of windows and frames to each other.
https://developer.chrome.com/extensions/xhr
https://javascript.info/cross-window-communicationI've tried to submit via Firefox and see it works. Could you please confirm this?
Also, it's not the Meta Box's issue itself so I mark this topic as resolved.
August 21, 2020 at 4:45 PM in reply to: ✅Cannot submit front-end from embedded within an iframe #21385Long Nguyen
ModeratorHi,
I'm using WordPress 5.5, Meta Box 5.3.3, Meta Box AIO 1.11.18 and theme Twenty Twenty. Just submit a post via a frontend submission form embedded in the
<iframe>tag but not see any issue https://www.loom.com/share/2092f9d1e9494b6c8553e42b0e1901bf.Could you please deactivate all plugins except Meta Box, Meta Box AIO and switch to the default theme of WordPress (Twenty Twenty) then check the issue again?
August 21, 2020 at 11:14 AM in reply to: ✅Clients can move the metabox from below content to the sidebar, how to block? #21376Long Nguyen
ModeratorHi Pieter,
The feature sorting and dragging the meta box has available a long time ago in both editors Classic and Block (Gutenberg). You can use the plugin Unsortable Meta Box to disable this behavior.
-
AuthorPosts