Changeset 1516246
- Timestamp:
- 10/17/2016 04:27:24 AM (9 years ago)
- Location:
- team/trunk
- Files:
-
- 3 edited
-
includes/team-functions.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
team.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
team/trunk/includes/team-functions.php
r1492705 r1516246 15 15 function team_update_team_member_social_field(){ 16 16 17 $class_team_functions = new class_team_functions(); 18 19 $team_member_social_field = $class_team_functions->team_member_social_field(); 20 21 update_option('team_member_social_field', $team_member_social_field); 22 17 $team_member_social_field = get_option('team_member_social_field'); 18 if(empty($team_member_social_field)){ 19 20 $class_team_functions = new class_team_functions(); 21 $team_member_social_field = $class_team_functions->team_member_social_field(); 22 update_option('team_member_social_field', $team_member_social_field); 23 24 } 25 23 26 } 24 27 -
team/trunk/readme.txt
r1492705 r1516246 5 5 Requires at least: 3.8 6 6 Tested up to: 4.6.1 7 Stable tag: 1.1 87 Stable tag: 1.19 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 106 106 == Changelog == 107 107 108 = 1.19 = 109 * 17/10/2016 fix - team memebr social icon issue fixed. 110 108 111 = 1.18 = 109 112 * 08/09/2016 fix - team memebr social icon issue fixed. -
team/trunk/team.php
r1492705 r1516246 4 4 Plugin URI: http://www.pickplugins.com/item/team-responsive-meet-the-team-grid-for-wordpress/ 5 5 Description: Fully responsive and mobile ready meet the team showcase plugin for wordpress. 6 Version: 1.1 86 Version: 1.19 7 7 Author: pickplugins 8 8 Author URI: http://pickplugins.com … … 30 30 define('team_qa_url', 'http://pickplugins.com/questions/' ); 31 31 define('team_plugin_name', 'Team' ); 32 define('team_plugin_version', '1.1 8' );32 define('team_plugin_version', '1.19' ); 33 33 define('team_customer_type', 'free' ); // pro & free 34 34 define('team_share_url', 'http://wordpress.org/plugins/team/' ); … … 70 70 71 71 team_update_team_member_social_field(); 72 73 // Reset permalink 74 $team_class_post_types= new team_class_post_types(); 75 $team_class_post_types->team_posttype_team_member(); 76 flush_rewrite_rules(); 77 72 78 73 79 do_action( 'team_action_install' );
Note: See TracChangeset
for help on using the changeset viewer.