Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 3,571 through 3,585 (of 3,702 total)
  • Author
    Posts
  • in reply to: Updater doesn't work #1299
    Anh TranAnh Tran
    Keymaster

    I found the bug and am fixing it. I will update the Updater extension immediately when I'm done. Please be patient.

    Thanks.

    in reply to: WSYIWYG seems to be broken when using groups #1293
    Anh TranAnh Tran
    Keymaster

    Hi, do you see any errors? As I posted on previous reply, it works just fine for me.

    in reply to: Exporting Page / Post Meta Values #1291
    Anh TranAnh Tran
    Keymaster

    Hi 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.

    in reply to: Updater doesn't work #1290
    Anh TranAnh Tran
    Keymaster

    Hi 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.

    in reply to: Columns and Tabs issue #1267
    Anh TranAnh Tran
    Keymaster

    Hi 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 ๐Ÿ™‚

    in reply to: Columns and Tabs issue #1245
    Anh TranAnh Tran
    Keymaster

    I 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_html field, which doesn't output anything, it's just there to make sure total columns equals 12):

    http://pastebin.com/q4s2i5Xj

    in reply to: WSYIWYG seems to be broken when using groups #1242
    Anh TranAnh Tran
    Keymaster

    Hi again, I've setup again some test cases for this problem and now it looks fine to me:

    Very weird ๐Ÿ™

    in reply to: WSYIWYG seems to be broken when using groups #1240
    Anh TranAnh Tran
    Keymaster

    I'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.

    in reply to: Combination 'MB Include Exclude' and 'Meta Box Show Hide' #1239
    Anh TranAnh Tran
    Keymaster

    Hi 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?

    in reply to: Output meta-boxes to admin columns #1237
    Anh TranAnh Tran
    Keymaster

    I would recommend using awesome plugin Admin Columns which is compatible with Meta Box for simple fields (not cloned or group).

    in reply to: Conditional logic on group/ cloned group #1231
    Anh TranAnh Tran
    Keymaster

    Can you please re-download again? I updated all the files on both server and Gumroad.

    Thanks.

    in reply to: use font icon instead of image #1230
    Anh TranAnh Tran
    Keymaster

    Just updated the plugin with full support for Dashicons. Please update.

    Thanks for the idea ๐Ÿ™‚

    in reply to: $.timepicker is undefined #1220
    Anh TranAnh Tran
    Keymaster

    Hmm, 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.

    in reply to: use font icon instead of image #1218
    Anh TranAnh Tran
    Keymaster

    Thanks 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.

    in reply to: Clone Group #1207
    Anh TranAnh Tran
    Keymaster

    You 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: text and file_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',
    				),
    			),
    		),
    	),
    );
Viewing 15 posts - 3,571 through 3,585 (of 3,702 total)