• Hi, i just installed UM. And the user-profil page show follwing tabs
    about
    posts
    favorite recipes
    my recipes

    but i clicked on “fav recipes” or “my recipes” page gets blank and nothing is shown.
    How can i correct that?

    using “CHOW” Theme with “foodiepress”

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support Ultimate Member Support

    (@ultimatemembersupport)

    Hi @marwhey,

    Ultimate member doesn’t have or add favorite recipes and my recipes tabs by default, please check your plugins or custom code.
    You might have some third party plugin for Ultimate member installed.

    Regards.

    Thread Starter marwhey

    (@marwhey)

    okay but why it’s in settings?!
    see Screenshot: https://i.imgur.com/YyvatLN.png

    Second question: yesterday i was able to add User Meta like “date of birth, insta, etc pp” it is still shown on profil but not editable?! Where is the setting for that?

    Plugin Support Ultimate Member Support

    (@ultimatemembersupport)

    Hi @marwhey,

    Please check your plugins for some third party extensions for Ultimate member e.g UM Custom Tab builder from Suite Plugins etc.

    You should be able to edit these fields in the profile edit dialog under the gear icon button.

    Regards.

    Thread Starter marwhey

    (@marwhey)

    i do not have installed any extensions for UM since now – don’t get were the heck “favorite recipes” and “my recipes” are comming from and how to make them working… 🙁

    and as i tried to say above.. the possibilty to edit User-meta in profil is gone.
    check screenshot: https://i.imgur.com/mqPZGmY.png
    red marked is not editable
    yellow is

    Plugin Support Ultimate Member Support

    (@ultimatemembersupport)

    Hi @marwhey,

    I see, Chow – Recipe & Food WordPress Theme adds custom tabs to the Ultimate member profile. Do you have this “blank” issue on the default WordPress theme?
    I suggest contacting Chow theme support for additional info.
    Unfortunately, we can’t provide support for third party extensions and themes which extend Ultimate member functionality.

    The User meta fields can be edited by editing these fields on the profile page.
    Please make sure to add these fields to your profile form in Ultimate member -> Forms -> your Profile form.

    Regards.

    Thread Starter marwhey

    (@marwhey)

    it seems chow is not able or willing to help.. maybe some users here can help me? i am no coder at all.. what i now found out is that both tabs (fav recipes and my recipes) put out th same(?) error

    Fatal error: Call to a member function make() on null in /.../wordpress/wp-content/themes/chow/inc/extras.php on line 455

    Line 450-460 in extras.php:

    /* Tell the tab what to display */
    add_action('um_profile_content_myrecipes_default', 'um_profile_chow_my_recipes');
    function um_profile_chow_my_recipes( $args ) {
        global $ultimatemember;
      
            $loop = $ultimatemember->query->make(array(
                        'posts_per_page'=> -1, 
                        'author' => um_user('ID'),
                        'post_status' => array(
                            'publish',
                            'pending',
                            'draft',
                            'private',
                            'trash'
                        ),
                    ));
                ?>

    and same for “favorite recipes” tab
    Fatal error: Call to a member function make() on null in /.../wordpress/wp-content/themes/chow/inc/extras.php on line 374

    Line 368-380 in extras.php:

    /* Tell the tab what to display */
    add_action('um_profile_content_recipes_default', 'um_profile_chow_fav_recipes');
    function um_profile_chow_fav_recipes( $args ) {
        global $ultimatemember;
        $favourite_posts = get_user_meta(um_profile_id(), 'foodiepress-fav-posts', true);
        if(!empty($favourite_posts)) { 
            $loop = $ultimatemember->query->make(array(
                    'post__in' => $favourite_posts, 
                    'posts_per_page'=> -1, 
                    'orderby' => 'post__in', 
                    'ignore_sticky_posts' => 1,
                ));
                ?>

    as mentioned i totally get that you from UM can or will not help but maybe a nother user here can? pllleeeassseee

    • This reply was modified 5 years, 2 months ago by marwhey.
    Thread Starter marwhey

    (@marwhey)

    Hi, is there any possibilty to just extend the “posts” tab and ad “recipes” als post type?

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘My Recipes’ is closed to new replies.