Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterDear Dave,
Nothing is special here, here is my screenshot, similar with you:
After I did it, only Administrator can see the Meta Box.
Anh Tran
KeymasterDear Dave,
I have tested and it works, did you installed and activated the Include/Exclude extension?
Anh Tran
KeymasterDear Pipo,
If you installed and activated the Conditional Logic, in the Builder, navigate to Settings page, then add
Visible when post_ID = 4
and it should works 🙂
Anh Tran
KeymasterDear Pipo,
The value is saved in the post via the field id normally, you can get the value by using
rwmb_meta($field_id)function.Anh Tran
KeymasterWhich version of the plugin are you using?
November 30, 2016 at 11:09 PM in reply to: INVOICE for https://metabox.io/plugins/core-extensions-bundle/ #4602Anh Tran
KeymasterJust sent you the invoice!
Anh Tran
KeymasterNo problem. It's done and you have access to all extensions now.
Anh Tran
KeymasterJust done that! Enjoy!
Anh Tran
KeymasterPlease follow the instruction in the documentation. Here is a sample code:
$meta_boxes[] = array( 'title' => 'Car Information', 'fields' => array( // Group array( 'name' => 'Car Details', 'id' => 'car_details', 'type' => 'group', 'fields' => array( array( 'name' => 'Model', 'id' => 'model', 'type' => 'text', ), // Other sub-fields here ), ), ), );Anh Tran
KeymasterHi, that’s ok. I’m happy to help you switch to the Developer Bundle. As you paid via Paypal, I can refund you easily. Would you mind purchasing the Developer Bundle and then I can refund you 3 previous payments?
November 29, 2016 at 10:42 PM in reply to: INVOICE for https://metabox.io/plugins/core-extensions-bundle/ #4589Anh Tran
KeymasterJust send me your company’s info via the contact form in the Contact page and I will send you the invoice.
Anh Tran
KeymasterYes, I will do it tomorrow 🙂
November 29, 2016 at 10:40 PM in reply to: How to do about include 'mb-settings-page' in themes? #4587Anh Tran
KeymasterFirst, you need to update the extensions to the latest version. Then you need to include the plugin’s main file. For more info, please check this docs:
https://metabox.io/docs/include-extensions-themes-plugins/
You should also update Meta Box plugin to the latest version. The code above seems too old.
Anh Tran
KeymasterMaybe try replacing the code above with:
add_action( 'init', function() { add_filter( 'rwmb_meta_boxes', 'prefix_register_meta_boxes' ); }, 5 );And check the code to register terms, make sure it's hooked into
initwith priority 0, like this:add_action( 'init', 'prefix_register_tax', 0 );Anh Tran
KeymasterHi Pipo,
You need to use either the extension Conditional Logic or Include Exclude to do that. The Builder extension on its own doesn't support this.
-
AuthorPosts