Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterMaybe just use
get_post_types()?Anh Tran
KeymasterPlease update to the latest version of Meta Box. We fully support WPML in version 4.9.
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.
Anh Tran
KeymasterCan you make a screenshot of the settings?
Anh Tran
KeymasterIs there a possibility to see or extract the code?
Maybe just use
var_dumporprint_r?If you don't mind, please give me the post to register meta boxes. I can check that for you.
-
AuthorPosts