Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 2,326 through 2,340 (of 3,958 total)
  • Author
    Posts
  • in reply to: any plans about adding post tags #8845
    Anh TranAnh Tran
    Keymaster

    Hi,

    Thanks for the question. I've been thinking about this, too. This feature is still on my plan. But the problem is the UI for the field (and not only taxonomy, but also post field). Not sure how to make it good at the moment.

    in reply to: Typo on Documentation Page #8844
    Anh TranAnh Tran
    Keymaster

    Thanks a lot! The docs is updated!

    in reply to: REFUND #8843
    Anh TranAnh Tran
    Keymaster

    Hello,

    Thanks a lot for your feedback! I really appreciate that.

    In order to use your product as an alternative to Toolset, I would need to install 6-8 plugins… For me, that’s a ton – and I happen to try to limit plugins to a total of 10 for an entire project.

    Actually this is not a big problem. We have Meta Box AIO plugin that includes all plugins in a single one. So you can just install 1 plugin and have everything ready. This AIO plugin is available in the Developer Bundle (cause it includes everything).

    But the number of plugins doesn't matter. Their quality matters much more. If you count all Meta Box plugins's files or line of codes, you will see it's less than Toolset!

    So, does the online builder work for the add-ons too? Meaning, could I create a series of CPTs with special functions online, generate the code for that, and then paste into my site without having to install of the plugins?

    You can do that with the MB Builder extension. It supports all premium extensions and support exporting to PHP code. The Online Generator is for the core Meta Box only.

    Hope that helps clarifying some things. If you have any concern, please let me know.

    in reply to: translate problem #8842
    Anh TranAnh Tran
    Keymaster

    No problem, here they are:

    https://www.dropbox.com/sh/d78k2hkno7j3lbl/AACm0vrr5E0p2jwxHJLhKLaaa?dl=0

    in reply to: change id of metabox #8829
    Anh TranAnh Tran
    Keymaster

    Hello,

    We make the meta box id = auto generated from the post title, e.g the post slug, which is always unique. WP doesn't regenerate post slug when update, so neither do the extension.

    Just curious why do you want to change the meta box ID?

    in reply to: Add/New Form is pre populating first post data #8828
    Anh TranAnh Tran
    Keymaster

    Hello,

    Do you set the post_id in the shortcode? The data from the post is get only when this parameter is set.

    in reply to: Meta Boxes Disappeared #8827
    Anh TranAnh Tran
    Keymaster

    Hi guys, thanks for your report. Let me check the bug and fix it.

    in reply to: REFUND #8826
    Anh TranAnh Tran
    Keymaster

    Hello,

    Let me refund the purchase of the MB Term Meta extension. So you can upgrade to the DEV bundle with just the difference in value? How does that sound?

    in reply to: translate problem #8825
    Anh TranAnh Tran
    Keymaster

    Hi,

    I've just tested with Vietnamese and it works. This is the translation files:

    https://imgur.elightup.com/NalVt93.png

    And this is the translated "Submit" button:

    https://imgur.elightup.com/ltoQLDq.png

    Can you check 1) the translation file name, make sure it's mb-frontend-submission-LANGCODE.mo and mb-frontend-submission-LANGCODE.po and 2) The translation strings?

    in reply to: Metabox group does not appear #8823
    Anh TranAnh Tran
    Keymaster

    If you remove the clone option from press_group, then you should not do a foreach loop. Please try this:

    $group_press = rwmb_meta( 'press_group');
    if ( ! empty( $group_press['wysiwyg_3' ) ) {
        echo $group_press['wysiwyg_3'];
    }
    in reply to: New purchase #8822
    Anh TranAnh Tran
    Keymaster

    Hello,

    The upgrade is available for bundles only, not for individual plugins. Please go to My Account page and you'll see buttons to upgrade to the to the developer bundle. You will need to pay only the difference between bundles.

    in reply to: Metabox group does not appear #8807
    Anh TranAnh Tran
    Keymaster

    Hi Phaidonas,

    Your code looks incorrect. You use press_group as a group ID, but in your code it's the meta box ID. Besides, it's cloneable. I've fixed it here: https://pastebin.com/0xBn7vC2. Please take a look.


    @jacek
    : we are aware of that bug and fixing it. We'll update the new version soon this week.

    in reply to: Meta Boxes Disappeared #8806
    Anh TranAnh Tran
    Keymaster

    Hi, when a meta box is a draft, the submit button will have the text "Publish". Click that button will change the status from draft to publish.

    https://imgur.elightup.com/CGmlVQS.png

    in reply to: How to the video field for group type? #8805
    Anh TranAnh Tran
    Keymaster

    Hi,

    Thanks. I'm good 🙂

    Regarding the video field, when getting from the group, it's just the IDs of the uploaded videos. To output the videos, you can do like this:

    <?php
    foreach ( $facilities_videos as $facilities_video ) {
        $facilities_video = RWMB_Video_Field::file_info( $facilities_video );
        ?>
        <video src="<?php echo $facilities_video['src']; ?>">
    <?php } ?>
    in reply to: MB Builder *Required* validation option? #8790
    Anh TranAnh Tran
    Keymaster

    It probably will take some days. If that's urgent for you, you can use Custom Attributes to add an attribute required with value true to the field. That will make the field required.

    Regarding conditions, yes, you should use the Builder to build that. It supports all conditions. If you need to do some extra check (like conditions outside meta boxes), then you need to tweak the code a little bit.

Viewing 15 posts - 2,326 through 2,340 (of 3,958 total)