Our Team Showcase - Version 2.2

Version Description

  1. Fixed plugin update bug. The plugin no longer loses settings on update
  2. Added additional templates to the pro version
Download this release

Release Info

Developer smartcat
Plugin Icon 128x128 Our Team Showcase
Version 2.2
Comparing to
See all releases

Code changes from version 2.1 to 2.2

admin/options.php CHANGED
@@ -20,6 +20,8 @@
20
  <option>Select Template</option>
21
  <option value="grid" <?php echo 'grid' == esc_attr( $template ) ? 'selected=selected' : ''; ?>>Grid - Boxes</option>
22
  <option value="grid_circles" <?php echo 'grid_circles' == esc_attr( $template ) ? 'selected=selected' : ''; ?>>Grid - Circles</option>
 
 
23
  <option disabled="disabled">List - Stacked (pro version)</option>
24
  <option disabled="disabled">Honey Comb (pro version)</option>
25
  </select>
@@ -171,6 +173,10 @@
171
  Grid Boxes &amp; Grid Circles Demo<br>
172
  <img src="<?php echo SC_TEAM_URL ?>screenshot-1.jpg" width="100%">
173
  </td>
 
 
 
 
174
  <td>
175
  Honeycomb Demo<br>
176
  <img src="<?php echo SC_TEAM_URL ?>screenshot-4.jpg" width="100%">
20
  <option>Select Template</option>
21
  <option value="grid" <?php echo 'grid' == esc_attr( $template ) ? 'selected=selected' : ''; ?>>Grid - Boxes</option>
22
  <option value="grid_circles" <?php echo 'grid_circles' == esc_attr( $template ) ? 'selected=selected' : ''; ?>>Grid - Circles</option>
23
+ <option disabled="disabled">Grid Circles 2 (pro version)</option>
24
+ <option disabled="disabled">Carousel (pro version)</option>
25
  <option disabled="disabled">List - Stacked (pro version)</option>
26
  <option disabled="disabled">Honey Comb (pro version)</option>
27
  </select>
173
  Grid Boxes &amp; Grid Circles Demo<br>
174
  <img src="<?php echo SC_TEAM_URL ?>screenshot-1.jpg" width="100%">
175
  </td>
176
+ <td>
177
+ Carousel Demo<br>
178
+ <img src="<?php echo SC_TEAM_URL ?>screenshot-6.jpg" width="100%">
179
+ </td>
180
  <td>
181
  Honeycomb Demo<br>
182
  <img src="<?php echo SC_TEAM_URL ?>screenshot-4.jpg" width="100%">
admin/setting.php CHANGED
@@ -91,7 +91,7 @@
91
  <div id="gopro">
92
  <div class="left">
93
  <h1><b>Our Team Settings</b></h1>
94
- <div><em>Why go pro?</em> More templates, more features, and more control! <br>Professional, sleek and easily customizable Team page & widget with extra options!</div>
95
  </div>
96
  <div class="right">
97
  <a href="http://smartcatdesign.net/our-team-showcase-demo/" target="_blank" class="button-secondary" style="padding: 40px;line-height: 0;font-size: 20px">View Demo</a>
@@ -115,7 +115,7 @@
115
  <li>- To override the template choice from the shortcode, add <b>[our-team template="grid"]</b> . Template Options: <em>grid, grid_circles, hc, stacked</em> (Pro Version)</li>
116
  <li>- Click on Re-order to arrange the order of the team members</li>
117
  <li>- Click on Groups to create groups (example: department, team names)</li>
118
- <li>- <b>Custom Template: </b>Customize your own single member page template, simply copy <b>/inc/template/team_members_template.php</b> into your theme root directory and edit it any way you want(Pro Version)</li>
119
  </ul>
120
 
121
  </td>
91
  <div id="gopro">
92
  <div class="left">
93
  <h1><b>Our Team Settings</b></h1>
94
+ <div><em>Why go pro?</em> 4 More templates including a uniue Honeycomb and Carouse. More features, and more control! <br>Professional, sleek and easily customizable Team page & widget with extra options!</div>
95
  </div>
96
  <div class="right">
97
  <a href="http://smartcatdesign.net/our-team-showcase-demo/" target="_blank" class="button-secondary" style="padding: 40px;line-height: 0;font-size: 20px">View Demo</a>
115
  <li>- To override the template choice from the shortcode, add <b>[our-team template="grid"]</b> . Template Options: <em>grid, grid_circles, hc, stacked</em> (Pro Version)</li>
116
  <li>- Click on Re-order to arrange the order of the team members</li>
117
  <li>- Click on Groups to create groups (example: department, team names)</li>
118
+ <li>- <b>Custom Template: </b>(Pro Version): Allows you to customize the Single Member Page</li>
119
  </ul>
120
 
121
  </td>
inc/class/class.smartcat-team.php CHANGED
@@ -13,7 +13,7 @@ add_action('wp_ajax_sc_team_update_order', 'sc_team_update_order');
13
 
14
  class SmartcatTeamPlugin {
15
 
16
- const VERSION = '1.1';
17
 
18
  private static $instance;
19
  private $options;
@@ -47,10 +47,11 @@ class SmartcatTeamPlugin {
47
 
48
  if ( !get_option( 'smartcat_team_options' ) ) {
49
  add_option( 'smartcat_team_options', $options );
 
 
50
  }
51
 
52
- $options[ 'redirect' ] = true;
53
- update_option( 'smartcat_team_options', $options );
54
  }
55
 
56
  public static function deactivate() {
@@ -67,11 +68,7 @@ class SmartcatTeamPlugin {
67
  add_shortcode( 'our-team', array( $this, 'set_our_team' ) );
68
  add_action( 'add_meta_boxes', array( $this, 'smartcat_team_member_info_box' ) );
69
  add_action( 'save_post', array( $this, 'team_member_box_save' ) );
70
- add_action( 'widgets_init', array( $this, 'wpb_load_widget' ) );
71
- // add_filter( 'manage_posts_columns', array( $this, 'posts_columns' ), 5 );
72
- // add_action( 'manage_posts_custom_column', array( $this, 'posts_custom_columns' ), 5, 2 );
73
-
74
- // add_filter( 'manage_edit-team_member_columns', array( $this, 'edit_columns') );
75
  add_action( 'wp_ajax_smartcat_team_update_pm', array( $this, 'smartcat_team_update_order' ) );
76
  add_action( 'wp_head', array( $this, 'sc_custom_styles' ) );
77
  add_filter( 'the_content', array( $this, 'smartcat_set_single_content' ) );
@@ -437,11 +434,7 @@ class smartcat_team_widget extends WP_Widget {
437
 
438
  // This is where you run the code and display the output
439
  include SC_TEAM_PATH . 'inc/template/widget.php';
440
-
441
-
442
-
443
-
444
- // echo $args['after_title'];
445
  }
446
 
447
  // Widget Backend
@@ -467,4 +460,4 @@ class smartcat_team_widget extends WP_Widget {
467
  return $instance;
468
  }
469
 
470
- }
13
 
14
  class SmartcatTeamPlugin {
15
 
16
+ const VERSION = '2.2';
17
 
18
  private static $instance;
19
  private $options;
47
 
48
  if ( !get_option( 'smartcat_team_options' ) ) {
49
  add_option( 'smartcat_team_options', $options );
50
+ $options[ 'redirect' ] = true;
51
+ update_option( 'smartcat_team_options', $options );
52
  }
53
 
54
+
 
55
  }
56
 
57
  public static function deactivate() {
68
  add_shortcode( 'our-team', array( $this, 'set_our_team' ) );
69
  add_action( 'add_meta_boxes', array( $this, 'smartcat_team_member_info_box' ) );
70
  add_action( 'save_post', array( $this, 'team_member_box_save' ) );
71
+ add_action( 'widgets_init', array( $this, 'wpb_load_widget' ) );
 
 
 
 
72
  add_action( 'wp_ajax_smartcat_team_update_pm', array( $this, 'smartcat_team_update_order' ) );
73
  add_action( 'wp_head', array( $this, 'sc_custom_styles' ) );
74
  add_filter( 'the_content', array( $this, 'smartcat_set_single_content' ) );
434
 
435
  // This is where you run the code and display the output
436
  include SC_TEAM_PATH . 'inc/template/widget.php';
437
+
 
 
 
 
438
  }
439
 
440
  // Widget Backend
460
  return $instance;
461
  }
462
 
463
+ }
inc/img/email.png CHANGED
Binary file
inc/img/fb.png CHANGED
Binary file
inc/img/google.png CHANGED
Binary file
inc/img/linkedin.png CHANGED
Binary file
inc/img/twitter.png CHANGED
Binary file
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Our Team Showcase ===
2
  Contributors: smartcat
3
  Donate link: http://smartcatdesign.net
4
- Tags: team, staff, employees, widget, shortcode, members, honeycomb, stack, grid, custom, template, social, profile, custom post type, portfolio, profile,meet team, skills, cv,v-card
5
  Requires at least: 3.2
6
  Tested up to: 4.1
7
- Stable tag: 2.0
8
  License: GPLv2 or later
9
 
10
  The best way to display your employees, team members, or any type of list. Multiple appealing templates,SEO friendly, re-order functionality.
@@ -13,8 +13,23 @@ The best way to display your employees, team members, or any type of list. Multi
13
 
14
  [View Demo](http://smartcatdesign.net/our-team-showcase-demo/)
15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  * 2 Grid templates: Circles & Boxes
17
- * 1 sidebar widget
18
  * Re-order team members with a simple drag & drop.
19
  * Select the number of columns
20
  * Customize the height of each row
@@ -27,6 +42,9 @@ The best way to display your employees, team members, or any type of list. Multi
27
  * It comes with different styles to choose from: boxes or circles
28
  * Boosts SEO with schema.org markup
29
  * output your team members anywhere with the shortcode [our-team]
 
 
 
30
 
31
  [youtube http://youtu.be/upV_fevCh_s]
32
 
@@ -36,6 +54,7 @@ The best way to display your employees, team members, or any type of list. Multi
36
  3. Drag & Drop re-order of memebers
37
  4. PRO VERSION - Honeycomb Demo
38
  5. PRO VERSION - stacked list Demo
 
39
 
40
  == Installation ==
41
  1. Download the plugin, then upload the zipped file to your site from the WordPress dashboard plugin uploader menu
@@ -43,6 +62,10 @@ The best way to display your employees, team members, or any type of list. Multi
43
 
44
  == Changelog ==
45
 
 
 
 
 
46
  = 2.1 =
47
  1. sidebar widget bug fix
48
  2. removed archive
1
  === Our Team Showcase ===
2
  Contributors: smartcat
3
  Donate link: http://smartcatdesign.net
4
+ Tags: team, staff, employees, widget, shortcode, members, carousel, honeycomb, stack, grid, custom, template, social, profile, custom post type, portfolio, profile,meet team, skills, cv,v-card
5
  Requires at least: 3.2
6
  Tested up to: 4.1
7
+ Stable tag: 2.1
8
  License: GPLv2 or later
9
 
10
  The best way to display your employees, team members, or any type of list. Multiple appealing templates,SEO friendly, re-order functionality.
13
 
14
  [View Demo](http://smartcatdesign.net/our-team-showcase-demo/)
15
 
16
+ Our Team Showcase allows you to easily create and display your team members & staff and show them on your site with ease. Your visitors will see a beautiful & animated
17
+ list of your team, with their pictures, links to social icons, and link to each member page.
18
+
19
+ First, install and activate the plugin. You will be automatically re-directed to the plugin settongs page. Select your preferred settings and colors, Add your staff, upload pictures and finally
20
+ add the shortcode [our-team] to the page, post or widget where you want to display them. You can also set the order that the members appear in with a user-friendly drag & drop interface.
21
+
22
+ If your theme has a sidebar, you can use the extra custom sidebar widget to display the team members in the sidebar.
23
+
24
+ The pro version provides you with 4 additional and very unique templates. Impress your site visitors by using the pro version which includes a Honeycomb layout, Scrolling Carousel, Stacked
25
+ list and an additional circular template.
26
+
27
+ Pro version available here: [Pro Version](http://smartcatdesign.net/downloads/our-team-showcase/)
28
+
29
+ Available Customizations:
30
+
31
  * 2 Grid templates: Circles & Boxes
32
+ * Custom sidebar widget
33
  * Re-order team members with a simple drag & drop.
34
  * Select the number of columns
35
  * Customize the height of each row
42
  * It comes with different styles to choose from: boxes or circles
43
  * Boosts SEO with schema.org markup
44
  * output your team members anywhere with the shortcode [our-team]
45
+ * 4 additional templates with the Pro version
46
+ * Honeycomb, Stacked and Carousel templates with Pro version
47
+ * Easy to setup
48
 
49
  [youtube http://youtu.be/upV_fevCh_s]
50
 
54
  3. Drag & Drop re-order of memebers
55
  4. PRO VERSION - Honeycomb Demo
56
  5. PRO VERSION - stacked list Demo
57
+ 6. PRO VERSION - Carousel Demo
58
 
59
  == Installation ==
60
  1. Download the plugin, then upload the zipped file to your site from the WordPress dashboard plugin uploader menu
62
 
63
  == Changelog ==
64
 
65
+ = 2.2 =
66
+ 1. Fixed plugin update bug. The plugin no longer loses settings on update
67
+ 2. Added additional templates to the pro version
68
+
69
  = 2.1 =
70
  1. sidebar widget bug fix
71
  2. removed archive
sc_our_team.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Our Team Showcase
4
  Plugin URI: http://smartcatdesign.net/downloads/our-team-showcase/
5
  Description: Display your team members in a very attractive way as a widget or page with a shortcode
6
- Version: 2.1
7
  Author: SmartCat
8
  Author URI: http://smartcatdesign.net
9
  License: GPL v2
@@ -28,7 +28,7 @@ require_once ( plugin_dir_path( __FILE__ ) . 'inc/class/class.smartcat-team.php'
28
 
29
  // activation and de-activation hooks
30
  register_activation_hook( __FILE__, array( 'SmartcatTeamPlugin', 'activate' ) );
31
- register_deactivation_hook( __FILE__, 'SmartcatTeamPlugin', 'deactivate' );
32
 
33
  SmartcatTeamPlugin::instance();
34
 
3
  Plugin Name: Our Team Showcase
4
  Plugin URI: http://smartcatdesign.net/downloads/our-team-showcase/
5
  Description: Display your team members in a very attractive way as a widget or page with a shortcode
6
+ Version: 2.2
7
  Author: SmartCat
8
  Author URI: http://smartcatdesign.net
9
  License: GPL v2
28
 
29
  // activation and de-activation hooks
30
  register_activation_hook( __FILE__, array( 'SmartcatTeamPlugin', 'activate' ) );
31
+ register_deactivation_hook( __FILE__, array( 'SmartcatTeamPlugin', 'deactivate' ) );
32
 
33
  SmartcatTeamPlugin::instance();
34
 
screenshot-6.jpg ADDED
Binary file