Support Forum » User Profile

Forum Replies Created

Viewing 15 posts - 3,706 through 3,720 (of 3,786 total)
  • Author
    Posts
  • PeterPeter
    Moderator

    Hello Jan,

    There is no option to auto login after registering succesfully, you can use the attribute redirect to redirect a user to the login/profile page to let them login manually.
    The welcome email is also not supported but you can use the attribute email_confirmation to send a welcome and confirmation email.

    Read more on the documentation https://docs.metabox.io/extensions/mb-user-profile/#registration-form

    in reply to: auto create the values for relationships #39161
    PeterPeter
    Moderator

    When a user creates entries, he will be the author of the entries and no need to set up a relationship. But if you want to allow them to select entries manually, you can use the feature MB Relationship and then use a WP Query to display selected entries only. You can do the same with two post types: item and entry.
    Hope that makes sense.

    in reply to: Conflict with "Real Media Library" Plugin #39160
    PeterPeter
    Moderator

    Hello there,

    Supporting a conflict with a third-party plugin is beyond our scope of support. However, I will create a feature request for the development team to consider supporting this issue in future updates.

    Thanks for your understanding and patience.

    PeterPeter
    Moderator

    Hello Denise,

    1. Let me explain your case again and let me know if it is incorrect.

    - You have a CPT alt-category
    - You want to show the alt-category post content to the WooCommerce product category description

    2. But there is no connection or relationship between product category and alt-category post to get the CPT alt-category post ID.

    3. What is the object that you assign the custom field alt_page_id to? CPT alt-category or product category? Product category is a taxonomy so if you want to get the term meta alt_page_id, you need to pass the second argument to the helper function

    $value = rwmb_meta( 'alt_page_id', ['object_type' => 'term'], $current_cat_id );
    echo $value;

    Read more on the documentation https://docs.metabox.io/extensions/mb-term-meta/#getting-field-value

    4. Regarding the insert post shortcode, I dont know what type of value it need to display the post content. Please contact their support for further assistance.

    in reply to: Textarea Line Breaks #39147
    PeterPeter
    Moderator

    I've also searched around on Google but have not found a way to import linebreaks to the database. Please use the HTML tags <br> meanwhile.

    in reply to: Holding fields for review #39145
    PeterPeter
    Moderator

    There is no way to prevent saving the field on this action hook. I think you can delete the field value after that by using the function delete_post_meta().

    Or use the field setting save_field and set it to false to prevent saving the field value. Read more on the documentation https://docs.metabox.io/field-settings/

    in reply to: Version 1.3.15 has wrong header #39144
    PeterPeter
    Moderator

    Hello there,

    Thank you for your feedback.

    I've informed the development team to fix this issue as soon as possible.

    in reply to: Metabox Admin menu does not appear after plugin activation #39142
    PeterPeter
    Moderator

    All the downloadable extensions should be available on the My Account page. I've informed our development team to check the issue on your account. I will let you know if I have any information.

    in reply to: Need Help with Views Popular Posts #39132
    PeterPeter
    Moderator

    Hello,

    If you run the query with the PHP code, does it show posts properly?

    $popularpost  = new WP_Query(array(
        'posts_per_page' => 5,
        'meta_key' => 'wpb_post_views_count',
        'orderby' => 'meta_value_num',
        'order' => 'DESC'
    ));

    If yes, it should work in Twig code.

    in reply to: Outputting user data in group loop #39129
    PeterPeter
    Moderator

    Hello Yasmine,

    From the line to get the group value

    $group_id = rwmb_meta( 'archived_team_users_group','', $post->ID );

    you can replace the variable $post->ID with a real post ID like 123 and see if it works. If yes, there is a problem when getting the post ID above that line. If not, there is a problem when outputting the subfield value. Does that make sense?

    And the function print_r() or var_dump() helps you to output the field value for debugging, it's not a solution.

    in reply to: Issues displaying blog post author name and comment counts #39128
    PeterPeter
    Moderator

    Hello,

    The key point here is the post ID or post object, from this line

    {% for item in post.post_related %}

    you have the post object so you can get any post info with the WordPress function. Here are some examples with PHP code, then you can convert it to Twig code on your own.

    https://stackoverflow.com/questions/3188901/wordpress-get-author-info-from-post-id
    https://wordpress.stackexchange.com/questions/38753/how-to-get-comments-by-post-id

    in reply to: SVG / single-image / output as "inline"-string #39126
    PeterPeter
    Moderator

    Hello there,

    It is not possible to save the SVG image with string code in the database. This field saves the image ID to the database as you can read on the documentation https://docs.metabox.io/fields/single-image/

    If you want to save the image code, please use the field textarea or text for this case.

    in reply to: Metabox Admin menu does not appear after plugin activation #39125
    PeterPeter
    Moderator

    Hello Jose,

    The flow should be:

    - Install and activate Meta Box
    - Install and activate other extensions (MB Builder, MB Relationships or just Meta Box AIO ...)
    - Activate the license key

    The first step is written down in the Introduction documentation https://docs.metabox.io/introduction/

    Meta Box core plugin, which is free and available on wordpress.org. It's the foundation of all features and is always required (activated).

    You can download other extensions on the My Account page https://metabox.io/my-account/

    If you have the Lifetime Bundle license, you can use one plugin Meta Box AIO to get all pro features. Please read more here https://docs.metabox.io/extensions/meta-box-aio/

    in reply to: Invalid Request. Please try again. #39114
    PeterPeter
    Moderator

    Hello there,

    This issue happens when a user submits a form twice or more with Ajax enabled and it has been fixed in the new update. Please update MB extensions to the latest versions, clear all caches and check this issue again.

    in reply to: Metabox Admin menu does not appear after plugin activation #39113
    PeterPeter
    Moderator

    Hello Jose,

    Is the plugin Meta Box activated? All MB extensions need to activate the plugin Meta Box to work.

Viewing 15 posts - 3,706 through 3,720 (of 3,786 total)