Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 3,331 through 3,345 (of 3,708 total)
  • Author
    Posts
  • in reply to: MB Term Meta doesn't work #2769
    Anh TranAnh Tran
    Keymaster

    Thank you very much for your info. I've just updated the extension with that fix ๐Ÿ™‚

    in reply to: Soluction Tabs not shown #2760
    Anh TranAnh Tran
    Keymaster

    Sorry, the latest version is 1.1.0. Can you please re-download the plugin again? I've just tried your code and it works. So I think it must be the version.

    in reply to: โœ…file_upload & post edit #2757
    Anh TranAnh Tran
    Keymaster

    Let me check it again with the developer for file_upload. It's a revamped version of plupload_image (but for file) and now is very similar to file_advanced. I will get back to you soon.

    in reply to: MB Term Meta doesn't work #2756
    Anh TranAnh Tran
    Keymaster

    Thanks for your info @appnet. I will check it now with WordPress 4.5 and get back to you asap.

    in reply to: Soluction Tabs not shown #2754
    Anh TranAnh Tran
    Keymaster

    Can you check these 3 things:
    1. Version of the plugin. It should be 1.0.5 to have tabs enabled.
    2. Follow the instruction in the documentation. It has some extra params for the tabs.

    If there's nothing wrong with that, can you please post your code?

    in reply to: I would like to download MB admin columns #2753
    Anh TranAnh Tran
    Keymaster

    Thanks @qco for your opinion. Actually I have some extensions in the queue and many to come. I don't think 1 core extension bundle can cover them all as the price will increase a lot. While it might suit you, it might fail for others. In stead of putting all in 1 the current core bundle which is already sold to many users, I'm thinking about:

    1. Releasing other bundles as well. This will be done after some extensions are released.
    2. Create a membership plan where users can get access to all current and FUTURE bundles.

    I'm still thinking and haven't made any decision yet. It's more a business aspect than development aspect.

    in reply to: Add text domain in MB Builder #2726
    Anh TranAnh Tran
    Keymaster

    Hi, I think it's not possible. Because the purpose of the builder is letting users create meta boxes and fields for themselves. They will not need to translate to another language.

    in reply to: MB Group not display in post type #2711
    Anh TranAnh Tran
    Keymaster

    Just saw your email. Do you want to continue discussing here or via email? If nothing private, I think we should talk here.

    in reply to: MB Group not display in post type #2705
    Anh TranAnh Tran
    Keymaster

    Hi, can you post your code?

    in reply to: Serious Site Issue After Updates #2697
    Anh TranAnh Tran
    Keymaster

    Probably something went wrong when updating like missing files or files were broken. Glad that reinstalling fixes the problem ๐Ÿ™‚

    in reply to: WYSIWYG rich-text has no Heading support #2696
    Anh TranAnh Tran
    Keymaster

    Ah, the demo just shows you lots of option that you can adjust for your real project :). Glad that it works for you now.

    in reply to: Can't get terms' meta values in frontend #2695
    Anh TranAnh Tran
    Keymaster

    The thing here is the values return from the function get_term_meta is an array of images' IDs. It doesn't return the full info of images like in rwmb_meta. To get full image info, you can use this code:

    foreach ( $images as $image ) {
        $image = RWMB_Image_Field::file_info( $image, 'thumbnail' );
        echo "<a href='{$image['full_url']}' rel='lightbox'><img src='{$image['url']}' width='{$image['width']}' height='{$image['height']}' alt='{$image['alt']}' /></a>";
    }
    in reply to: Can't get terms' meta values in frontend #2692
    Anh TranAnh Tran
    Keymaster

    Hi, sorry for taking long to reply :(.

    Your code is almost correct. It's just not $cat->$term_id, but $cat->term_id. So the code inside the loop should be:

    $images = get_term_meta( $cat->term_id, 'image_advanced', false );
    var_dump( $images ); // Array of image IDs
    $color = get_term_meta( $cat->term_id, 'color', true );
    var_dump( $color ); // Color
    
    in reply to: WYSIWYG rich-text has no Heading support #2689
    Anh TranAnh Tran
    Keymaster

    Ah, you set 'teeny' => true which shows the minimal UI for the editor. Removing it resolves this problem.

    in reply to: Meta Box Show Hide version 0.2 : Input values #2678
    Anh TranAnh Tran
    Keymaster

    Hi guys, could you please post me the code so I can check it specifically?

Viewing 15 posts - 3,331 through 3,345 (of 3,708 total)