Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 3,526 through 3,540 (of 3,958 total)
  • Author
    Posts
  • in reply to: Dutch language #2539
    Anh TranAnh Tran
    Keymaster

    Hmm, the code for loading languages haven't been touched for a long time. Can you check if all text are not translated or only some of them?

    Also, can you try copying meta-box-nl_NL.po files from the plugin to '/wp-content/languages/plugins/' folder (please create if it doesn't exist) and see if it works?

    in reply to: Image Advanced #2537
    Anh TranAnh Tran
    Keymaster

    Hi Sergey Semenov,

    The value stored by image_advanced is attachment ID, so when you get them, you will receive an array of integers. (The helper function doesn't work pretty well for group at the moment and I will fix it soon so it can return more info of the image instead of just ID).

    In the meantime, please try this code:

    <?php $group_value = rwmb_meta( 'rw_mygroup' );
    foreach ( $group_value as $group_value )
    {
    
       	echo '<div>
          	 	<div class="image"><img src="' . wp_get_attachment_image_url( $group_value['rw_img'], 'thumbnail' ) . '" /></div>
    	   		<div>' . $group_value['rw_textfield1'] . '</div>
    	   		<div>' . $group_value['rw_textfield2'] . '</div>
    	   		<div>' . $group_value['rw_textfield3'] . '</div>
       	</div>';
    } ?>

    You can change the code to use different image size if you want.

    in reply to: Class 'RWMB_Core' not found #2536
    Anh TranAnh Tran
    Keymaster

    Can you try the latest version on Github? It has a fix for edge case, when WP is installed at document root. Not sure if that's the problem you're facing. If it doesn't work, can you send me info of your site (admin account and FTP) to check via the Contact form?

    in reply to: Not working! #2535
    Anh TranAnh Tran
    Keymaster

    Glad that it works for you. FYI: the rules are not applied for "default" page template as WP actually saves nothing to page info if it has default page template. So I think the "exclude" is the best approach here.

    in reply to: Include by category parent #2533
    Anh TranAnh Tran
    Keymaster

    Hi again,

    Sorry for long response. I've just updated the extension to 1.0.0 which includes support for parent terms :).

    in reply to: Select 'Page' does not work #2509
    Anh TranAnh Tran
    Keymaster

    Dear mandelkind,

    Thanks for reporting that bug, Meta Box plugin itself updated the code and post_type now becomes property of field instead of field.query_args. So you'll have to define field like so:

    
    'type' => 'post',
    'name' => 'Page Dropdown',
    'id' => 'page',
    // note that
    'post_type' => 'page'
    // instead of
    'query_args' => [
        'post_type' => 'page'
    ]
    

    We'll release an update for MB Builder, currently, in this version, you can do it by using Custom Attribute, like this example:

    http://prnt.sc/agankf

    in reply to: Problems with update #2493
    Anh TranAnh Tran
    Keymaster

    Hi all,

    I've just updated the Updater extension which solves the problem. Please update it.

    in reply to: Select box option value disappears after import database #2490
    Anh TranAnh Tran
    Keymaster

    Dear Yumiko,

    I found the solution, currently MB Builder doesn't accept empty value so it will generate an error after saving it.

    By default, Select field already has "Select an Item" option, so you don't need to add empty value to the last. If you have to, please set a value then exclude by your custom code. For example, I use dash sign:

    
    $field_value = rwmb_meta('your_select_field');
    
    if ( $field_value === '_' )
        $field_value = '';
    

    Cheers!

    in reply to: Select box option value disappears after import database #2488
    Anh TranAnh Tran
    Keymaster

    Dear Yumi,

    I have checked by create an interview, all post meta data still there after post saved. Check it here:

    /keroseAdm/wp-admin/post.php?post=232&action=edit

    Did you means your post meta data in old website doesn't transfer to new website? If so, you can check by look at wp_postmeta table.

    Cheers!

    in reply to: Select box option value disappears after import database #2485
    Anh TranAnh Tran
    Keymaster

    Hi Yumi,

    I have fixed Add Option not visible bug you can start to use it for now.

    Detailed Report:

    Your website's security is strict so file_get_content() function doesn't works with files in plugins, this function is used to pull template content and if it doesn't works, template content will shows as blank, that's why you can't see Add Option section.

    I'm trying to fix Import / Export features, which fwrite cannot works properly in your host. If you could, can you please do not change user name / passwords for 4 days, I haven't enough time to replicate the bug in my PC.

    Arigatou

    in reply to: Select box option value disappears after import database #2483
    Anh TranAnh Tran
    Keymaster

    Dear Yumi,

    Can you please send me your website's information through the contact form included admin login and password? And FTP information if you could.

    Regards

    in reply to: Dynamically add #2480
    Anh TranAnh Tran
    Keymaster

    Dear Dumas,

    Please update MB Builder to the latest version, it has update for Taxonomy and Taxonomy Advanced.

    You can select any taxonomy, and you can add query args for taxonomy also ๐Ÿ™‚

    Regards,

    Tan

    in reply to: Taxonomy not displaying since update to latest version #2478
    Anh TranAnh Tran
    Keymaster

    Hi again,

    I think I found the problem and fixed it here. The fix is available on Github. Can you please test it?

    in reply to: Select box option value disappears after import database #2474
    Anh TranAnh Tran
    Keymaster

    Dear yumikom,

    To export meta boxes, you can go to Dashboard > Meta Boxes > Check all meta box and in Bulk Options, select Export.

    To import Meta Boxes, go to Dashboard > Meta Boxes > Import, then upload your exported .dat file.

    When you hit "Add Option" in Select Box, Radio Button, you'll have Value and Label field to enter data.

    Please add my Skype: tannguyen0901 or give me your Facebook address if you need to solve this problem quickly.

    Regards

    Tan

    in reply to: Select box option value disappears after import database #2466
    Anh TranAnh Tran
    Keymaster

    Dear yumikom,

    Our builder data saved in serialized data so if some text was changed, it will break all data.

    I haven't Migrate DB Pro so I can't make sure that it can works with serialized data in wp_posts table or not. In case it can't works with that table. I'd recommend you export data on your old website, delete all meta boxes in new website and import from old website again.

    Best regards

    Tan

Viewing 15 posts - 3,526 through 3,540 (of 3,958 total)