REMOVE LINKS FROM TEAM PROFILE IMAGES

Support Forums for LiveMesh Themes & Plugins Forums Peak Theme Support REMOVE LINKS FROM TEAM PROFILE IMAGES

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #26846

    Hi,

    Could you please let me know how I can remove the links on my team’s profile images? I used the widget on the homepage of 100waysofgiving.org, but when I click the picture the url shows a random person’s name and brings me back to the home screen. I would like for each image to send user’s to http://100waysofgiving.org/ourteam/

    Thanks!
    Jen

    #26847
    This reply has been marked as private.
    #26857
    Veena
    Moderator

    At present there is no option to add external url for team members .
    Pls modify file plugins/livemesh-tools/includes/register-post-types.php line no:116 to
    and see if it helps.

    register_post_type('team', array(
                'labels' => $labels,
                'public' => true,
                'show_ui' => true,
                'hierarchical' => false,
                'publicly_queryable' => true,
                'query_var' => true,
                'exclude_from_search' => true,
                'show_in_nav_menus' => false,
                'menu_position' => 20,
                'has_archive' => false,
                'menu_icon' => LM_URI . '/assets/images/admin/users.png',
                'rewrite' => false,
                'supports' => array('title', 'editor', 'thumbnail', 'page-attributes')
            ));
    
Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Peak Theme Support’ is closed to new topics and replies.