Forum Replies Created
-
AuthorPosts
-
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" #12925
Anh 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
Anh Tran
KeymasterHi,
We were able to see the bugs. But when apply the fix, we see that only the code in
group.jsis needed. We're not very clear about the added code inconditional-logic.jsthat you provided. Is that needed?Anh Tran
KeymasterHi Garth John,
Did you activate both Meta Box and MB Frontend Submission plugins together?
Anh Tran
KeymasterSorry, it was 1.5.1. I forgot to update the version on the website. Please update again.
Anh Tran
KeymasterHi, did you update to the latest version? I've just released a new fix today.
January 3, 2019 at 12:39 PM in reply to: ✅Filter mb_aoi_extensions fails unless at least one item checked in "All-In-One" #12863Anh Tran
KeymasterThanks a lot for your feedback! I've just updated the AIO extension with fixes for these bugs. Please update and let me know if there's anything wrong.
January 3, 2019 at 9:21 AM in reply to: Relationships - change order of posts returned by shortcode #12859Anh Tran
KeymasterHi Max, the
orderandorderbyshould be outside ofrelationshipparam, as they're arguments forWP_Query. Please try:$connected = new WP_Query( array( 'relationship' => array( 'id' => 'therapists_to_modalities', 'to' => get_the_ID(), ), 'orderby' => 'name', 'order' => 'ASC', 'nopaging' => true, ) );January 3, 2019 at 9:18 AM in reply to: ✅Updated to latest metabox group plugin (1.2.17)... having issues #12858Anh Tran
KeymasterGlad to hear that. Let me know if you see anything buggy.
January 2, 2019 at 9:52 AM in reply to: ✅Updated to latest metabox group plugin (1.2.17)... having issues #12844Anh Tran
KeymasterHi Lynne,
Did you see any JavaScript error in the console?
January 2, 2019 at 9:49 AM in reply to: Relationships - change order of posts returned by shortcode #12843Anh Tran
KeymasterHi Max,
Currently, it's not supported in the shortcode (although it's available via PHP when you use WP_Query and set the
orderbyparameter). We'll add order parameter to the shortcode soon. -
AuthorPosts