Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterI found the bug and am fixing it. I will update the Updater extension immediately when I'm done. Please be patient.
Thanks.
Anh Tran
KeymasterHi, do you see any errors? As I posted on previous reply, it works just fine for me.
Anh Tran
KeymasterHi Maxell,
The Meta Box plugin uses native WP mechanism to store post meta. It's compatible with WP database, so you can use the Import/Export feature of WP to import and export posts and their meta without any problem.
Anh Tran
KeymasterHi Piet,
Sorry for the problem you have met. As we already talked in email, I'm fixing the problem with the Updater (remove the email field, hide the API key field, etc.). After it's done, you will receive updates as expected. Please give me some time.
Regarding EDD or GF, I'm afraid they can't fit my requirements. That's why I made the system my own. Thanks for your suggestion anyway.
Anh Tran
KeymasterHi zainsohail19, glad that the code works for you. I will fix the CSS issue in the next version of Tab extension. I will also answer your question on wp.org ๐
Anh Tran
KeymasterI just found the problem. When you added columns, the total columns in one row must be exactly 12. In the code above, the last row of the About tab has only 8 columns. Here is the fixed code (I added a
custom_htmlfield, which doesn't output anything, it's just there to make sure total columns equals 12):Anh Tran
KeymasterAnh Tran
KeymasterI'm debugging the problem but haven't solved it yet. Give me more 3 days so I can dig deeper into each line of code.
August 17, 2015 at 8:23 AM in reply to: Combination 'MB Include Exclude' and 'Meta Box Show Hide' #1239Anh Tran
KeymasterHi Flikweert,
I think the problem is not those plugins. They work well together. Basically, the Include Exclude extension decides whether or not load the meta box in a specific page and the Show/Hide decides whether or not show/hide it via Javascript (the meta box is loaded in this case). So it's fine to use them together.
I guess the browser crashes because of another reason. Maybe there are a lot of JS or elements on the page. Or something else. Can you please give me more details to look into?
Anh Tran
KeymasterI would recommend using awesome plugin Admin Columns which is compatible with Meta Box for simple fields (not cloned or group).
Anh Tran
KeymasterCan you please re-download again? I updated all the files on both server and Gumroad.
Thanks.
Anh Tran
KeymasterJust updated the plugin with full support for Dashicons. Please update.
Thanks for the idea ๐
Anh Tran
KeymasterHmm, can you please update the plugin to the latest version and use this way to register meta boxes? It's important to note that the way you register meta boxes is old and it causes some problems (as mentioned in the link above).
Thanks.
Anh Tran
KeymasterThanks Piet for the great idea! I also think icon font (Dashicons) is much better than images as WordPress already supports it. I will change the plugin to support Dashicons soon.
Anh Tran
KeymasterYou mean you can edit fields without touching code? If so, we have 2 extensions for this purpose: MB Builder extension or MB Template extension.
Regarding the text and image: yes, you can do that. You need to register a group which has 2 sub-fields:
textandfile_input(do not use any image fields here as they won't work for group):$meta_boxes[] = array( 'title' => 'Meta Box Title', 'post_types' => 'custom-post-type', 'fields' => array( array( 'id' => 'group', 'type' => 'group', 'clone' => true, 'fields' => array( array( 'id' => 'text', 'name' => 'Text', 'type' => 'text', ), array( 'id' => 'image', 'name' => 'Image', 'type' => 'file_input', ), ), ), ), ); -
AuthorPosts
