Support Forum ยป User Profile

Forum Replies Created

Viewing 15 posts - 3,331 through 3,345 (of 3,704 total)
  • Author
    Posts
  • 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?

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

    By default, the wysiwyg has everything the default editor has. You need to click to the "Toolbar Toggle" button to show the format selection dropdown, like this:

    http://prntscr.com/aoqf1k

    Anh TranAnh Tran
    Keymaster

    Can you just try including the plugin's file directly without putting it inside the 'init' hook?

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

    I don't think so :(. You purchased the bundle on Sep 30 last year. Since then, 3 premium extensions were added to the bundle (Settings Page, Term Meta and Admin Columns). The price at that time was $79 only.

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

    I've just tested again and it works. A stupid question, but can you post your code again?

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