Found Image Our Team by WooThemes | Plugin Review Network Skip to Content

Plugin Review Network

Plugin Review Network

an eye on the best wordpress plugins
Show Sidebar Hide Sidebar
[+] Sidebar [-] Sidebar
Plugin:
Rated:
70%
3.5 Stars (24 votes)

Home

WP.Org

ReadMe

Support
  • Author:
    WooThemes
Version: 1.4.1
Requires: WP 3.8
Last Updated:3015 days ago
Downloads:91989
Installations: 10,000+
Tags:
    profiles, shortcode, team members, teams, template tag, widget
Download Plugin Package

Our Team by WooThemes

Released on October 11, 2013.
Download Plugin Package

Version: 1.4.1

Display team member profiles with descriptions and links to social media using our shortcode, widget or template tag.

  • Description
  • FAQ
  • Changelog
  • Installation
  • Screenshots


Team Member Management

"Our Team by WooThemes" is a clean and easy-to-use team profile management system for WordPress. Load in your team members and display their profiles via a shortcode, widget or template tag on your website. Assign team members to a user, allowing team members to manage their own description via the bio on the profile page as well as display a link to their author archive.

Support

Looking for a helping hand? View plugin documentation. Also be sure to check out the FAQ.

Get Involved

Looking to contribute code to this plugin? Go ahead and fork the repository over at GitHub. (submit pull requests to the latest "release-" branch)

The plugin looks unstyled when I activate it. Why is this?

"Our Team by WooThemes" is a lean plugin that aims to keep it's purpose as clean and clear as possible. Thus, we don't load any preset CSS styling, to allow full control over the styling within your theme or child theme. If you simply want to apply layout (as displayed in the screenshots) you can do so with this snippet. Read more in the documentation.

I don't need the 'Role' field, can I disable that?

You sure can. In fact you can disable all the default fields individually. To disable the role field add:

add_filter( 'woothemes_our_team_member_role', '__return_false' );

To your themes functions.php file. Replace '_role' with '_url', or '_twitter' for example to disable other fields.

I need to add another field, can I do it without touching core files?

Yesiree! To add a new field to the backend add the following to your themes functions.php file:

add_filter( 'woothemes_our_team_member_fields', 'my_new_fields' );
function my_new_fields( $fields ) {
    $fields['misc'] = array(
        'name'          => __( 'Misc Detail', 'our-team-by-woothemes' ),
        'description'   => __( 'Some miscellaneous detail', 'our-team-by-woothemes' ),
        'type'          => 'text',
        'default'       => '',
        'section'       => 'info'
    );
    return $fields;
}

Then to display the contents of that field on the frontend add the following:

add_filter( 'woothemes_our_member_fields_display', 'my_new_fields_display' );
function my_new_fields_display( $member_fields ) {
    global $post;
    $misc = esc_attr( get_post_meta( $post->ID, '_misc', true ) );
    if ( '' != $misc ) {
        $member_fields .= '<li class="misc">' . $misc . '</li><!--/.misc-->' . "\n";
    }
    return $member_fields;
}

Done!

Can I change the template used to display team members in the shortcode and widget?

You sure can! Take the following example as a guide:

add_filter( 'woothemes_our_team_item_template', 'new_team_member_template' );

function new_team_member_template( $tpl ) {
    $tpl = '<div itemscope itemtype="http://schema.org/Person" class="%%CLASS%%">%%TITLE%% %%AVATAR%% <div id="team-member-%%ID%%"  class="team-member-text" itemprop="description">%%TEXT%% %%AUTHOR%%</div></div>';
    return $tpl;
}

That will move the title (name/title) above the avatar/featured image.

How can I add custom CSS classes to each team member?

Using the woothemes_our_team_member_class filter. Use the following snippet to add 'new-class' to each team member. Obviously you can add logic here to add unique classes per user.

add_filter( 'woothemes_our_team_member_class', 'new_team_member_class' );
function new_team_member_class( $css_class ) {
    $css_class .= ' new-class';
    return $css_class;
}

What does assigning a team member to a user do?

If you assign a team member to a user in your WordPress install a couple of things happen:

  1. A link to the team members post archive is output beneath their description. This can be disabled using the woothemes_our_team_args filter if you want.
  2. That user now has control of what is displayed as their description. If they add some information to their bio from their profile page, that will display instead of any content you added to the team member content. If their bio is empty the standard description will appear as normal.

Team member archives and single pages don't look good

To cover archives and single pages would require the inclusion of a template engine which is beyond the scope of this lightweight plugin. That isn't to say it's not possible. We have a tutorial for creating a tighter integration with your theme.

How do I contribute?

We encourage everyone to contribute their ideas, thoughts and code snippets. This can be done by forking the repository over at GitHub.

1.4.1

  • 2015-07-07
  • Removes deprecated constructor call for WP_Widget

1.4.0

  • New - Team member contact email field.
  • New - Team member telephone number field.
  • New - Team member details now output on single / archive templates.
  • Tweak - WordPress user mapping label clearer.
  • Tweak - Added a documentation link to the plugin action links.
  • Tweak - Added a help tab to new/edit post screens.
  • Fix - Undefined index notice. Kudos @apenchev.

1.3.1

  • Tweak - More tag works as expected.
  • Tweak - Updated default slug for Team Taxonomy to 'team-members'.

1.3.0

  • New - Filters for taxonomy args, post type args and individual team member template. Kudos @helgatheviking.
  • New - You can now use the 'slug' parameter in the shortcode to display an individual team member by slug.
  • Fix - WordPress users can now be unassigned from a team member.

1.2.0

  • New - Team members can be sorted by meta. Kudos @helgatheviking.
  • Tweak - Renamed woothemes_our_member_fields filter to woothemes_our_team_member_fields. Kudos @tlehtimaki.
  • Tweak - Default args now filterable via woothemes_our_team_default_args.
  • Localization - Changed textdomain to match plugin slug. Kudos @cfoellmann.

1.1.0

  • New - Team members can be assigned to a WordPress user pulling a link to their posts into the team page and replacing their description with the bio according to their profile.
  • 3.8 UI compatibility.

1.0.2

  • Fixed typo in the team members archive slug. Kudos digitales.
  • title, before_title and after_title params are now passed to shortcode.
  • Team member css class is now filterable allowing custom unique clases.
  • Prepended all filters woothemes_our_team_

1.0.1

  • Added role & twitter args to shortcode.
  • Added role option to widget.
  • Display 12 team members by default (previously 5).
  • Typos and other minor fixes.

1.0.0

  • Initial release. Woo!


Installing "Our Team by WooThemes" can be done either by searching for "Our Team by WooThemes" via the "Plugins > Add New" screen in your WordPress dashboard, or by using the following steps:

  1. Download the plugin via WordPress.org.
  2. Upload the ZIP file through the "Plugins > Add New > Upload" screen in your WordPress dashboard.
  3. Activate the plugin through the 'Plugins' menu in WordPress
  4. Place <?php do_action( 'woothemes_our_team' ); ?> in your templates, or use the provided widget or shortcode.


The team member profile management screen within the WordPress admin.


Screenshot 1


The team members displayed on the front-end with a little CSS to arrange in to columns.


Screenshot 2


Removes deprecated constructor call for WP_Widget
Screenshot 3


Filter 'woothemes_our_member_fields' has been renamed to 'woothemes_our_team_member_fields'.
Screenshot 4


Textdomain changed from 'woothemes-our-team' to 'our-team-by-woothemes'.
Screenshot 5


Some filters have been prepended with woothemes_our_. If you're customising Our Team with filters please check these customisations before updating.
Screenshot 6


Initial release. Woo!
Screenshot 7



 

Click here to cancel reply.

Click here to cancel reply.


*

*


Please copy the string eh3YyI to the field below:

Home | Sitemap | Contact
Network Skin Theme for BioShip by WordQuest
Password Reset
Please enter your e-mail address. You will receive a new password via e-mail.