• Logged in member can see their favorites list, but no one else can. Is there something wrong with this:

    <?php

    // Customize Profile Tabs

    /* add a custom tab to show user pages */
    add_filter(‘um_profile_tabs’, ‘pages_tab’, 1000 );
    function pages_tab( $tabs ) {
    $tabs[‘pages’] = array(
    ‘name’ => ‘Favorite Posts’,
    ‘icon’ => ‘um-faicon-star’,
    ‘custom’ => true
    );
    return $tabs;
    }

    /* Tell the tab what to display */
    add_action(‘um_profile_content_pages_default’, ‘um_profile_content_pages_default’);
    function um_profile_content_pages_default( $args ) {
    global $ultimatemember; ?>
    <?php echo do_shortcode(‘[user_favorites user_id=”” include_links=”true” post_types=”post” include_buttons=”false”]’); ?>

    <?php
    }

  • The topic ‘Show on Ultimate Member Profile’ is closed to new replies.