Forum Replies Created
-
AuthorPosts
-
June 8, 2019 at 9:18 AM in reply to: ✅Error SQL when use in the query the fields from or to in table mb_relationships #14883
Anh Tran
KeymasterHi Sergio,
The problem is
fromis a reserved keyword for MySQL. You can't use it directly in your SQL. To get over it, you need to put it in back ticks (`). Here is the modified SQL:(Can't post the SQL here because back ticks are used to insert code in this forum)
Anh Tran
KeymasterHi Nick,
I'm not sure about the syntax, you probably need to get help from BB team.
But in this case, you can use the MB Beaver Builder Integration to do the same using the Conditional Logic popup. Here is what I've tested:
Anh Tran
KeymasterHi Sergio,
The original post was about storing image data, e.g. storing full image in the DB.
In your case, you are using
image_advancedfield, which stores image IDs in the DB, which is the default behavior of the plugin and is totally fine. The data is automatically serialized, that's why you seea:2:{i:0;s:0:””;i:1;i:734;}.The reason your helper doesn't work is because you register the meta box for users. So, you need to set the
object_typefor therwmb_metafunction, like this:$images = rwmb_meta( 'info', array( 'object_type' => 'user', 'limit' => 1 ) );Anh Tran
KeymasterHi, I've just sent you the invoice via email. Please check it.
The invoice is sent manually since some company needs to fulfill their details such as address, register ID or VAT.
Anh Tran
KeymasterHi Ryan, I think this is a bug with the WYSIWYG field and I'll try to fix it soon.
Anh Tran
KeymasterIt's a bug in the MB User Meta extension and I have fixed it.
June 6, 2019 at 11:40 AM in reply to: User Field using Select Advanced should display User Full Name and Username too #14857Anh Tran
KeymasterHi Mauro, please use this filter:
https://docs.metabox.io/filters/#choice-fields-user-post-taxonomy-filters
Anh Tran
KeymasterHi Ryan, I think the problem is the validation not working properly with wysiwyg field. I tried in the back end and see the same problem. If you switch between Visual/Text mode, then TinyMCE will update the content and set the validation properly.
Anh Tran
Keymaster@Neil: Thanks a lot for your post! I think other people will find this useful, too!
June 6, 2019 at 11:17 AM in reply to: ✅Adding Custom Fields for Woo Product Variations - Help #14854Anh Tran
KeymasterHi @bodenburgc,
Unfortunately, it's not supported. You can add a whole meta box for the product, but not for a variation.
Anh Tran
KeymasterHi Sergio,
Each meta box (from/to) has an ID:
{relationship_id}_relationships_fromand{relationship_id}_relationships_to, so you can just add these IDs to theidattribute of the shortcode to show on the front end.Anh Tran
KeymasterCan you try entering the ID of the address field into that input box?
Anh Tran
KeymasterHi William,
Thanks for using Meta Box. I've just sent the invoice to your email. Please check it.
Anh Tran
KeymasterHi Sergio,
The first image looks like from the Geolocation extension, doesn't it? The other images looks like from the Map field. Can you check if Geolocation extension is activated on all installations?
-
AuthorPosts