Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterThat's so great, Razib. I've just added that to the latest version 1.2.18 (along with other fixes as well).
January 9, 2019 at 3:24 PM in reply to: ✅Filter mb_aoi_extensions fails unless at least one item checked in "All-In-One" #12962Anh Tran
KeymasterThanks for your feedback. It's strange that I couldn't replicate the bug in the latest version 1.6.18 :(.
January 9, 2019 at 2:10 PM in reply to: ✅Website sections controlled via metaboxes not showing after certain amount loade #12960Anh Tran
KeymasterI don't think there's any side effect. This configuration only increases the number of inputs submitted.
To avoid this issue in the future, reducing the number of inputs is the best way. However, I guess it's not feasible in this case. But as long as you keep the max_input_vars high, you don't need to worry about that.
January 9, 2019 at 12:00 PM in reply to: ✅Getting error Uncaught Error: Call to undefined function info() #12959Anh Tran
KeymasterI'm so sorry. This was the debug code that I forgot to remove in the plugin. I've just fixed the plugin, please update.
Anh Tran
KeymasterHi Juan,
Thanks for your feedback.
The problem here is the field type is
taxonomy_advanced. This field does not setup a relationship between posts and terms. Instead, it only saves terms' IDs in the custom table (or post meta if you don't use custom table).To setup the correct relationship between posts and terms, please use field type
taxonomy. In this case, the plugin does not save any value. Instead, it only sets the post terms. And thus, the WordPress counter works correctly.Anh Tran
KeymasterHi Todd,
Yes, it's on our plan for 2019. We'll let you know when it's done.
January 8, 2019 at 3:51 PM in reply to: ✅Website sections controlled via metaboxes not showing after certain amount loade #12947Anh Tran
KeymasterThis might relate to PHP's configuration. Please take a look at this solution.
Anh Tran
KeymasterHi Garth, can you take a video record of the admin / or code, where you setup the meta box and how you insert it in your template?
January 8, 2019 at 3:11 PM in reply to: ✅Filter mb_aoi_extensions fails unless at least one item checked in "All-In-One" #12944Anh Tran
KeymasterI've just sent you version 1.6.17 via email. Please take a look.
January 7, 2019 at 5:08 PM in reply to: ✅Filter mb_aoi_extensions fails unless at least one item checked in "All-In-One" #12925Anh Tran
KeymasterHi criv23,
Are you using the latest version 1.6.18? Did the 1.6.17 work for you?
Anh Tran
KeymasterCan you send me a temporary admin account via contact form? I'll check that more closer.
Anh Tran
KeymasterHow did you call the shortcode? Did you put it in post content or text widget?
If you call with PHP like
echo '[mb_frontend_form id="area"]';Then it doesn't work. The correct code is:
echo do_shortcode( '[mb_frontend_form id="area"]' );Anh Tran
KeymasterHi Garth,
To check if the meta box is registered only for admin, please check the PHP file that has the meta box code. You might want to check something similar to this:
add_action( 'admin_init', 'your_function' ); function your_function() { add_filter( 'rwmb_meta_boxes', 'your_meta_boxes' ); } // Or if ( is_admin() ) { include 'your-meta-boxes.php'; }Regarding the purchase: yes, you only need the Frontend Submission extension.
Anh Tran
KeymasterHi Garth John,
Do you have any condition when registering the meta boxes? Something like
is_admin(). Or you have some condition when load the PHP file that contains the meta boxes code. The MB Frontend Submission only works if the meta boxes registered on both front end and back end.Anh Tran
KeymasterHi kesit,
We were unable to replicate the bug. We tested your code and it looks right. Here is our screenshot: https://prnt.sc/lvwk3z. Can you please check that again?
Thanks
-
AuthorPosts