Forum Replies Created
-
AuthorPosts
-
Long Nguyen
ModeratorHi Andrew,
You can select:
Location: Post type - Page
Advanced location rules: Post - About Us
screenshot https://monosnap.com/file/4dTQkDSPjzE4SgGDpPd2k9eAbbJcRcto show a meta box on the editing page About Us only.
March 4, 2022 at 2:28 PM in reply to: ✅How To Change Post Type Slug Without Losing Current Posts #34296Long Nguyen
ModeratorHi Brent,
You can use the plugin Post Type Switcher to switch the post type to another one https://wordpress.org/plugins/post-type-switcher/
Long Nguyen
ModeratorHi,
Ok, please share your site credentials via the contact form. I will take a closer look.
https://metabox.io/contact/Long Nguyen
ModeratorHi Martin,
There is no limit to creating the custom fields, it is just limited by the hosting/server capabilities. As you can see on the screen record above, I've imported your fields to my local site and it works as well without any errors.
March 4, 2022 at 12:54 PM in reply to: ✅Ajax form resubmission after failed validation (causes invalid error message) #34290Long Nguyen
ModeratorHi,
I'm not able to reproduce this issue on my local site, screen record https://monosnap.com/file/h8wFhZBQM4AEKylGz5l2y4Xo7f3esY
If you have online hosting, please share the staging site credentials, I will help you to check the issue.
March 4, 2022 at 10:31 AM in reply to: ✅How to Insert/Edit Relationship Field Manually? What's this Field ID? #34289Long Nguyen
ModeratorHi,
MB Relationships data is stored in a custom table instead of the table
wp_postmeta, please read more on the documentation https://docs.metabox.io/extensions/mb-relationships/#database
so I don't think FluentForm can work with this data.You can contact FluentForm support to ask for help with this case, they are the team who created the integration with Meta Box.
Long Nguyen
ModeratorHi,
Please try to re-save the settings page "Website" and re-select the location settings page of the field group then insert the field in View again. 175 looks like a post ID instead of the option name "Website".
Let me know how it goes.
Long Nguyen
ModeratorHi,
On my demo site, the words with diacritics display as well, screenshot https://monosnap.com/file/Kk3rc0lCWdrmEPCnAq52oAjlQ2MMYD
Reload the page or change the site language do not affect the post title in the relationship box.
March 4, 2022 at 10:15 AM in reply to: Option to Have Labels Above Inputs by Default (Including Relationships) #34286Long Nguyen
ModeratorHi Petr,
There is no option to put the label above the input by default. But you can use some custom CSS code to do that easily. Use this plugin if you want to apply CSS code in the admin area https://wordpress.org/plugins/admin-css-mu/
body .rwmb-field { display: block; }And it is not possible to move the relationship field inside a meta box because the relationship is a separate meta box.
March 4, 2022 at 10:03 AM in reply to: ✅Adding a custom field as a link to an elementor button #34285Long Nguyen
ModeratorHi,
The same solution is here https://support.metabox.io/topic/displaying-repeater-fields-in-elementor/
March 3, 2022 at 3:09 PM in reply to: ✅How to Insert/Edit Relationship Field Manually? What's this Field ID? #34260Long Nguyen
ModeratorHi,
Please refer to this topic https://support.metabox.io/topic/mb-relationships-mb-frontend-submission/
to know how to include the relationship in the frontend submission form.March 3, 2022 at 3:03 PM in reply to: ✅Ajax form resubmission after failed validation (causes invalid error message) #34259Long Nguyen
ModeratorHi,
From the new version 4.0.0, MB Frontend Submission uses table wp_options to store form config and errors with the option key mbfs_key. Please check the frontend form on your site if it has this hidden field https://monosnap.com/file/M01XVOw9JKsR1ZGxlOTPgPOtWuwQ5n
Long Nguyen
ModeratorHi,
Thanks, I got the issue. As my previous reply here https://support.metabox.io/topic/front-end-delete-and-wordpress-database-error/#post-34179
The issue happens when you re-order the post fields (post_title) but you do not register a corresponding column in the custom table (post_title).
https://docs.metabox.io/extensions/mb-custom-table/#creating-custom-tables
https://docs.metabox.io/extensions/mb-frontend-submission/#reorder-post-fieldsYou can try to remove the field post_title and re-check this issue.
[ 'type' => 'text', 'name' => 'Title', 'id' => 'post_title', 'class' => 'dc-post-title', 'limit' => 50, 'required' => true, ],Long Nguyen
ModeratorHi,
You can explode the variable
$config['id']to an array and check if a meta box id is available in this array. For example:$meta_box_id = 'job-post-title'; $config_ids = explode( ',', $config['id'] ); if( in_array( $meta_box_id, $config_ids ) ) { wp_mail( '[email protected]', 'New submission', 'A new post has been just submitted.' ); } else { echo "Do something if false"; }Long Nguyen
ModeratorHi,
The file
php.inishould be in the server folder instead of thepublic_htmlfolder. Refer to the article https://metabox.io/wordpress-custom-fields-not-saving-increase-max-input-vars/
https://stackoverflow.com/questions/59621958/how-can-i-permanently-increase-max-input-vars-the-php-ini-approach-periodicallyyou can try to increase it with a higher value, eg: 100000.
-
AuthorPosts