Forum Replies Created
-
AuthorPosts
-
December 6, 2018 at 9:53 AM in reply to: ✅Wrong action name being used in User Profile extension #12515
Anh Tran
KeymasterHi Joe,
I've just invited you to join our team on Bitbucket, where we host all our extensions. Feel free to contribute code. We really appreciate your help!
Anh Tran
KeymasterHey guys,
Sorry for long time. We've just updated Conditional Logic to 1.6.4, which now supports Gutenberg. It works for
post_formatandpage_templateand all rules internal for meta boxes / fields (such as show / hide a field based on another field). For some rules like checking by categories or custom taxonomies, there's a limitation from Gutenberg that can't be done at the moment. We'll work with Gutenberg team to find a solution and will update the plugin as soon as we can.December 5, 2018 at 12:06 PM in reply to: ✅I need to know what Data Type I can use in MB Custom Table #12488Anh Tran
KeymasterHi Jefferson, the data types are MySQL types and listed here.
I see the field
direct_salethat you used has typeTINYINT(1), so I guess it's used for checkbox field, which has value1or0.I've just checked the custom table extension and found a bug for displaying empty value (including
0). I'll fix it now.Anh Tran
KeymasterHi Neil,
We have resolved the problem of storing custom fields 🙂 Only the layout issue left.
Regarding the 3rd party form, I have experience with Gravity Forms the most, and it works really well for all the situations I had in the past. So it's my obvious recommendation. WPForms and Ninja Forms are also popular, but I don't like their UI in the back end. Ninja Forms used to have a nice UI that blended well with WordPress, but it changed :(.
Anh Tran
KeymasterHi Neil,
The MB Relationships extension automatically creates 2 meta boxes for 2 sides of each relationship with these IDs:
{$relationship_id}_relationships_from{$relationship_id}_relationships_to
So you might need to use these IDs to include into the front-end forms to let users select a post/user to make a connection.
To display connected items in the front end, you need to code a little bit. The code is provided in the docs. As you're using Beaver Builder, I'd suggest creating a shortcode to display related items, then insert the shortcode into a text module.
Anh Tran
KeymasterHi Neil,
I've checked your site and see you're using custom table to store custom fields. However, I can't find the code that create the custom table. Maybe you missed it, and that's why the custom fields are not saved. Can you please check that again?
I've put the requests for group in my task list. Our team will work on that as soon as we can.
Update: We have resolved the issue. The problem is that the meta box uses a custom table but there's no custom table registered. Deselect the checkbox to let meta box saves to custom table fixes the bug.
December 3, 2018 at 5:17 PM in reply to: ✅metabox removes multiple text field with html links inside #12450Anh Tran
KeymasterHi Gunvor, I've tested again and couldn't see that bug. Here is my video: http://recordit.co/HdBt0F4baT
Did you try the latest code on Github?
Anh Tran
KeymasterHi, I'd recommend using FacetWP plugin or Search & Filter. We have in integration with FacetWP.
Anh Tran
KeymasterHi Hazmi, let me check that again. It supposes to work in both case.
December 2, 2018 at 12:54 PM in reply to: ✅Select_tree with attribute required true not works #12441Anh Tran
KeymasterHi Jefferson,
Does the code work when you remove that attribute completely? Setting it
falseactually doesn't do anything.December 2, 2018 at 12:50 PM in reply to: ✅Adding submenu to Metabox settings page replacing parent menu #12440Anh Tran
KeymasterHi,
When you create a top-level settings page, make sure you create a sub-menu for the settings first. The first sub-menu will be used for the top-level menu. That's the default behavior in WordPress.
So make sure your custom page is added after all settings page (top-menu and sub-menu) are added.
Anh Tran
KeymasterHi,
I think this can be done with custom JavaScript only. So you need to enqueue a JS file, and in that file track the number of choice and show an alert when they select more.
Anh Tran
KeymasterHi Aishwarya,
All the settings are saved in a single option in the options table. You can write a code to
get_optionandupdate_optionfor your users. It's not built-in the plugin, though.Anh Tran
KeymasterHi,
Please add
post_fields="title"to the shortcode. It will tell the extension to add post title field to the form and process its value. -
AuthorPosts