Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 1,381 through 1,395 (of 3,958 total)
  • Author
    Posts
  • Anh TranAnh Tran
    Keymaster

    It's done in the recent commit.

    in reply to: Custom fields not available #13503
    Anh TranAnh Tran
    Keymaster

    Hi, it's not possible at the moment. We have this request in the list and will try to work on that as soon as we can.

    in reply to: [MB User Profile] Show password meter on registration form #13502
    Anh TranAnh Tran
    Keymaster

    Hi Clayton,

    This feature is available in the latest version 1.2.0. Please update.

    in reply to: Textarea CSS Problem #13483
    Anh TranAnh Tran
    Keymaster

    I meant the MB Tabs extension. Please update it.

    in reply to: Custom fields not available #13479
    Anh TranAnh Tran
    Keymaster

    Hi, I've just updated the plugin on .org. Please update and check it!

    in reply to: Error output to Builder interface #13478
    Anh TranAnh Tran
    Keymaster

    Hey guys, can you export the field group and give me the exported file to check? I couldn't replicate that on my localhost.

    in reply to: Pay to Post #13477
    Anh TranAnh Tran
    Keymaster

    Hi Sam, we actually done that for WP Auto Listings plugin. Here is a quick video to show you how it's done: http://recordit.co/sJmMETYBIu. It has a lot of custom code for the premium feature, so I couldn't share here.

    in reply to: Change Destination Of Custom File Upload Field Type #13476
    Anh TranAnh Tran
    Keymaster

    Hi,

    To avoid the complexity, I avoided using predefined variables for things like site number in multisite network. But you can always do that with a little code, like this:

    function prefix_get_site_upload_dir() {
        return WP_CONTENT_DIR . '/uploads/sites/' . get_current_blog_id() . '/my_uploads/';
    }

    And in the field settings, set:

    'upload_dir' => prefix_get_site_upload_dir(),

    in reply to: Textarea CSS Problem #13475
    Anh TranAnh Tran
    Keymaster

    Hi,

    Thanks a lot for your code. There was a CSS bug with the textarea for tabs-left style, which has just been fixed in the recent version. Please update.

    in reply to: Sortable Select #13474
    Anh TranAnh Tran
    Keymaster

    Hi,

    Unfortunately, we don't have such field type :(. Please try to use cloneable select/radio field, which can help do almost the same thing.

    in reply to: Do I need Relationships for Events & Reviews? #13473
    Anh TranAnh Tran
    Keymaster

    Hi Nick,

    In this situation, you definitely need way to connect reviews to an event. And that's a relationship between Event and Review. So, using MB Relationship is a perfect in this case.

    in reply to: Hyperlink url field outputs strange code #13472
    Anh TranAnh Tran
    Keymaster

    Hi Hein,

    You have 2 cloneable fields, so when you use the shortcode to output, each of them will output in a unordered list.

    To fix this, please use this PHP code instead of shortcode:

    $texts = rwmb_meta( 'text_1' );
    $urls = rwmb_meta( 'url_1' );
    if ( ! empty( $texts ) ) {
        echo '<ul>';
        foreach ( $texts as $k => $text ) {
            echo "<li><a href='{$urls[$k]}'>{$text}</a></li>";
        }
        echo '</ul>';
    }
    in reply to: Pay to Post #13448
    Anh TranAnh Tran
    Keymaster

    We have a demo site at https://demo.wpautolistings.com, but we don't have demo account yet.

    in reply to: Custom fields not available #13447
    Anh TranAnh Tran
    Keymaster

    Sorry for the frustration. I'll check that next Monday and will fix the bugs if there's any.

    Anh TranAnh Tran
    Keymaster

    Oh, I got it. These user meta are used by WP to store meta boxes state (visible/hidden) and their order (users can reorder). Looks like Gutenberg doesn't handle these settings properly.

    Yes, you can remove them without any problem. Meta Box won't be affected by that.

Viewing 15 posts - 1,381 through 1,395 (of 3,958 total)