Changeset 3424171
- Timestamp:
- 12/20/2025 11:35:36 AM (4 weeks ago)
- Location:
- team-showcase/trunk
- Files:
-
- 14 edited
-
admin/team-manager-free-helps.php (modified) (1 diff)
-
admin/team-manager-free-meta-boxes.php (modified) (3 diffs)
-
admin/team-manager-free-post-type.php (modified) (2 diffs)
-
includes/shortcodes/team-shortcode.php (modified) (2 diffs)
-
includes/shortcodes/template/popup-style-one.php (modified) (1 diff)
-
includes/shortcodes/template/popup-style-two.php (modified) (1 diff)
-
includes/shortcodes/template/theme-1.php (modified) (5 diffs)
-
includes/shortcodes/template/theme-2.php (modified) (5 diffs)
-
includes/shortcodes/template/theme-3.php (modified) (5 diffs)
-
includes/shortcodes/template/theme-4.php (modified) (3 diffs)
-
includes/team-manager-free-activator.php (modified) (1 diff)
-
includes/team-manager-free-deactivator.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
team-manager-free.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
team-showcase/trunk/admin/team-manager-free-helps.php
r3335114 r3424171 3 3 exit; 4 4 } 5 6 /* 7 * @Author Themepoints 8 * Copyright: 2016 Themepoints 9 * Version : 3.0.0 10 */ 5 11 ?> 6 12 -
team-showcase/trunk/admin/team-manager-free-meta-boxes.php
r3355106 r3424171 8 8 * @Author Themepoints 9 9 * Copyright: 2016 Themepoints 10 * Version : 2.810 * Version : 3.0.0 11 11 */ 12 12 … … 60 60 $client_website = get_post_meta($post->ID, 'client_website', true); 61 61 $client_shortdescription = get_post_meta($post->ID, 'client_shortdescription', true); 62 63 // Add nonce field for security 64 wp_nonce_field( 'team_manager_free_custom_meta_save', 'team_manager_free_custom_meta_nonce' ); 62 65 ?> 63 66 … … 97 100 # Save Options Meta Box Function 98 101 function team_manager_free_custom_inner_custom_boxes_save($post_id){ 102 103 // Verify nonce 104 if ( ! isset( $_POST['team_manager_free_custom_meta_nonce'] ) || 105 ! wp_verify_nonce( $_POST['team_manager_free_custom_meta_nonce'], 'team_manager_free_custom_meta_save' ) ) { 106 return; 107 } 99 108 100 109 // Check if autosave -
team-showcase/trunk/admin/team-manager-free-post-type.php
r3355106 r3424171 3 3 * @Author Themepoints 4 4 * Copyright: Themepoints 5 * Version : 2.95 * Version : 3.0.0 6 6 */ 7 7 … … 2890 2890 } 2891 2891 2892 # Multicolor Meta Box2893 2894 2892 // Checks for input and sanitizes/saves if needed 2895 2893 if ( isset( $_POST[ 'team_manager_mbgcolor_color' ] ) ) { -
team-showcase/trunk/includes/shortcodes/team-shortcode.php
r3355106 r3424171 93 93 $team_manager_free_website_font_color = get_post_meta( $post_id, 'team_manager_free_website_font_color', true ); 94 94 $team_manager_free_website_hover_color = get_post_meta( $post_id, 'team_manager_free_website_hover_color', true ); 95 96 95 $team_manager_free_image_hide = get_post_meta( $post_id, 'team_manager_free_image_hide', true ); 97 96 $team_manager_free_image_zoom = get_post_meta( $post_id, 'team_manager_free_image_zoom', true ); … … 185 184 $tmf_query = new WP_Query( $args ); 186 185 186 187 $allowed_themes = array( 188 'theme1' => 'theme-1.php', 189 'theme2' => 'theme-2.php', 190 'theme3' => 'theme-3.php', 191 'theme4' => 'theme-4.php', 192 ); 193 194 if ( ! isset( $allowed_themes[ $team_manager_free_post_themes ] ) ) { 195 $team_manager_free_post_themes = 'theme1'; 196 } 197 187 198 ob_start(); 188 switch ( $team_manager_free_post_themes ) { 189 case 'theme1': 190 191 include __DIR__ . '/template/theme-1.php'; 192 193 break; 194 case 'theme2': 195 196 include __DIR__ . '/template/theme-2.php'; 197 198 break; 199 case 'theme3': 200 201 include __DIR__ . '/template/theme-3.php'; 202 203 break; 204 case 'theme4': 205 206 include __DIR__ . '/template/theme-4.php'; 207 208 break; 209 } 199 include __DIR__ . '/template/' . $allowed_themes[ $team_manager_free_post_themes ]; 210 200 return ob_get_clean(); 201 211 202 } 212 203 add_shortcode( 'tmfshortcode', 'team_manager_free_register_shortcode' ); -
team-showcase/trunk/includes/shortcodes/template/popup-style-one.php
r3355106 r3424171 1 1 <?php 2 2 3 if ( ! defined( 'ABSPATH' ) ) {4 exit; // Exit if accessed directly.5 }3 if ( ! defined( 'ABSPATH' ) ) { 4 exit; // Exit if accessed directly. 5 } 6 6 7 7 ?> -
team-showcase/trunk/includes/shortcodes/template/popup-style-two.php
r3355106 r3424171 2 2 3 3 if ( ! defined( 'ABSPATH' ) ) { 4 exit; // Exit if accessed directly.4 exit; // Exit if accessed directly. 5 5 } 6 6 -
team-showcase/trunk/includes/shortcodes/template/theme-1.php
r3355106 r3424171 30 30 color: <?php echo esc_attr( $team_manager_free_header_font_color); ?>; 31 31 font-size: <?php echo esc_attr( $team_manager_free_header_font_size); ?>px; 32 font-style: <?php echo $team_manager_name_font_style;?>;32 font-style: <?php echo esc_attr( $team_manager_name_font_style); ?>; 33 33 text-transform: <?php echo esc_attr( $team_manager_name_font_case); ?>; 34 34 box-shadow: none; … … 43 43 color:<?php echo esc_attr( $team_manager_free_designation_font_color); ?>; 44 44 font-size:<?php echo esc_attr( $team_manager_free_designation_font_size); ?>px; 45 font-style: <?php echo $team_manager_desig_font_style;?>;46 text-transform: <?php echo $team_manager_desig_font_case;?>;45 font-style: <?php echo esc_attr( $team_manager_desig_font_style); ?>; 46 text-transform: <?php echo esc_attr( $team_manager_desig_font_case); ?>; 47 47 } 48 48 .team-manager-free-main-area-<?php echo esc_attr( $post_id ); ?> .team-manager-free-items-profiles { … … 68 68 /* Zoom In */ 69 69 <?php if ($team_manager_free_image_zoom == '2') : ?> 70 .team-manager-free-main-area-<?php echo esc_attr( $post_id); ?> .team-manager-free-items:hover .team-manager-free-items-pic img {70 .team-manager-free-main-area-<?php echo esc_attr( $post_id ); ?> .team-manager-free-items:hover .team-manager-free-items-pic img { 71 71 transform: scale(1.10); 72 72 } … … 159 159 .team-manager-free-main-area-<?php echo esc_attr( $post_id ); ?> .teamshowcasefree-col-xs-6 { 160 160 float: left; 161 margin-bottom: <?php echo $team_manager_free_margin_bottom;?>px !important;161 margin-bottom: <?php echo esc_attr( $team_manager_free_margin_bottom ); ?>px !important; 162 162 min-height: 1px; 163 padding-left: <?php echo $team_manager_free_padding_left;?>px !important;164 padding-right: <?php echo $team_manager_free_padding_left;?>px !important;163 padding-left: <?php echo esc_attr( $team_manager_free_padding_left ); ?>px !important; 164 padding-right: <?php echo esc_attr( $team_manager_free_padding_left ); ?>px !important; 165 165 position: relative; 166 166 } … … 188 188 $team_manager_free_client_address = get_post_meta(get_the_ID(), 'company_address', true); 189 189 $team_manager_free_client_website = get_post_meta(get_the_ID(), 'client_website', true); 190 191 $tpteamfree_social_iconbox_repeat = get_post_meta( get_the_ID(), 'tpteamfree_social_iconbox_repeat', true); 190 $tpteamfree_social_iconbox_repeat = get_post_meta(get_the_ID(), 'tpteamfree_social_iconbox_repeat', true); 192 191 $random_team_id = rand(); 193 192 ?> -
team-showcase/trunk/includes/shortcodes/template/theme-2.php
r3355106 r3424171 91 91 color: <?php echo esc_attr( $team_manager_free_header_font_color); ?>; 92 92 font-size: <?php echo esc_attr( $team_manager_free_header_font_size); ?>px; 93 font-style: <?php echo $team_manager_name_font_style;?>;93 font-style: <?php echo esc_attr( $team_manager_name_font_style); ?>; 94 94 text-transform: <?php echo esc_attr( $team_manager_name_font_case); ?>; 95 95 letter-spacing: 1px; … … 107 107 color:<?php echo esc_attr( $team_manager_free_designation_font_color); ?>; 108 108 font-size:<?php echo esc_attr( $team_manager_free_designation_font_size); ?>px; 109 font-style: <?php echo $team_manager_desig_font_style;?>;110 text-transform: <?php echo $team_manager_desig_font_case;?>;109 font-style: <?php echo esc_attr( $team_manager_desig_font_style); ?>; 110 text-transform: <?php echo esc_attr( $team_manager_desig_font_case); ?>; 111 111 letter-spacing: 0.5px; 112 112 } … … 145 145 .team-manager-free-main-area-<?php echo esc_attr( $post_id ); ?> .teamshowcasefree-col-xs-6 { 146 146 float: left; 147 margin-bottom: <?php echo $team_manager_free_margin_bottom;?>px !important;147 margin-bottom: <?php echo esc_attr( $team_manager_free_margin_bottom); ?>px !important; 148 148 min-height: 1px; 149 padding-left: <?php echo $team_manager_free_padding_left;?>px !important;150 padding-right: <?php echo $team_manager_free_padding_left;?>px !important;149 padding-left: <?php echo esc_attr( $team_manager_free_padding_left); ?>px !important; 150 padding-right: <?php echo esc_attr( $team_manager_free_padding_left); ?>px !important; 151 151 position: relative; 152 152 } … … 173 173 $team_manager_free_client_address = get_post_meta(get_the_ID(), 'company_address', true); 174 174 $team_manager_free_client_website = get_post_meta(get_the_ID(), 'client_website', true); 175 176 $tpteamfree_social_iconbox_repeat = get_post_meta( get_the_ID(), 'tpteamfree_social_iconbox_repeat', true); 175 $tpteamfree_social_iconbox_repeat = get_post_meta(get_the_ID(), 'tpteamfree_social_iconbox_repeat', true); 177 176 $random_team_id = rand(); 178 177 ?> … … 234 233 </div> 235 234 </div> 236 -
team-showcase/trunk/includes/shortcodes/template/theme-3.php
r3355106 r3424171 74 74 color: <?php echo esc_attr( $team_manager_free_header_font_color); ?>; 75 75 font-size: <?php echo esc_attr( $team_manager_free_header_font_size); ?>px; 76 font-style: <?php echo $team_manager_name_font_style;?>;76 font-style: <?php echo esc_attr( $team_manager_name_font_style); ?>; 77 77 text-transform: <?php echo esc_attr( $team_manager_name_font_case); ?>; 78 78 font-weight: 600; … … 93 93 color:<?php echo esc_attr( $team_manager_free_designation_font_color); ?>; 94 94 font-size:<?php echo esc_attr( $team_manager_free_designation_font_size); ?>px; 95 font-style: <?php echo $team_manager_desig_font_style;?>;96 text-transform: <?php echo $team_manager_desig_font_case;?>;95 font-style: <?php echo esc_attr( $team_manager_desig_font_style); ?>; 96 text-transform: <?php echo esc_attr( $team_manager_desig_font_case); ?>; 97 97 } 98 98 .team-manager-free-main-area-<?php echo esc_attr( $post_id ); ?> .team-manager-free-items-social{ … … 152 152 .team-manager-free-main-area-<?php echo esc_attr( $post_id ); ?> .teamshowcasefree-col-xs-6 { 153 153 float: left; 154 margin-bottom: <?php echo $team_manager_free_margin_bottom;?>px !important;154 margin-bottom: <?php echo esc_attr( $team_manager_free_margin_bottom); ?>px !important; 155 155 min-height: 1px; 156 padding-left: <?php echo $team_manager_free_padding_left;?>px !important;157 padding-right: <?php echo $team_manager_free_padding_left;?>px !important;156 padding-left: <?php echo esc_attr( $team_manager_free_padding_left); ?>px !important; 157 padding-right: <?php echo esc_attr( $team_manager_free_padding_left); ?>px !important; 158 158 position: relative; 159 159 } … … 179 179 $team_manager_free_client_address = get_post_meta(get_the_ID(), 'company_address', true); 180 180 $team_manager_free_client_website = get_post_meta(get_the_ID(), 'client_website', true); 181 182 $tpteamfree_social_iconbox_repeat = get_post_meta( get_the_ID(), 'tpteamfree_social_iconbox_repeat', true); 181 $tpteamfree_social_iconbox_repeat = get_post_meta(get_the_ID(), 'tpteamfree_social_iconbox_repeat', true); 183 182 $random_team_id = rand(); 184 183 ?> … … 235 234 </div> 236 235 </div> 237 -
team-showcase/trunk/includes/shortcodes/template/theme-4.php
r3355106 r3424171 65 65 color: <?php echo esc_attr( $team_manager_free_designation_font_color); ?>; 66 66 font-size: <?php echo esc_attr( $team_manager_free_designation_font_size); ?>px; 67 font-style: <?php echo $team_manager_desig_font_style;?>;68 text-transform: <?php echo $team_manager_desig_font_case;?>;67 font-style: <?php echo esc_attr( $team_manager_desig_font_style); ?>; 68 text-transform: <?php echo esc_attr( $team_manager_desig_font_case); ?>; 69 69 margin-bottom: 10px; 70 70 } … … 128 128 .team-manager-free-main-area-<?php echo esc_attr( $post_id ); ?> .teamshowcasefree-col-xs-6 { 129 129 float: left; 130 margin-bottom: <?php echo $team_manager_free_margin_bottom;?>px !important;130 margin-bottom: <?php echo esc_attr( $team_manager_free_margin_bottom); ?>px !important; 131 131 min-height: 1px; 132 padding-left: <?php echo $team_manager_free_padding_left;?>px !important;133 padding-right: <?php echo $team_manager_free_padding_left;?>px !important;132 padding-left: <?php echo esc_attr( $team_manager_free_padding_left); ?>px !important; 133 padding-right: <?php echo esc_attr( $team_manager_free_padding_left); ?>px !important; 134 134 position: relative; 135 135 } … … 165 165 $team_manager_free_social_youtube = get_post_meta(get_the_ID(), 'social_youtube', true); 166 166 $team_manager_free_social_skype = get_post_meta(get_the_ID(), 'social_skype', true); 167 168 $tpteamfree_social_iconbox_repeat = get_post_meta( get_the_ID(), 'tpteamfree_social_iconbox_repeat', true); 167 $tpteamfree_social_iconbox_repeat = get_post_meta(get_the_ID(), 'tpteamfree_social_iconbox_repeat', true); 169 168 $random_team_id = rand(); 170 169 ?> -
team-showcase/trunk/includes/team-manager-free-activator.php
r3355106 r3424171 6 6 This class defines all code necessary to run during the plugin's activaton. 7 7 8 @since 1.0.08 @since 3.0.0 9 9 @package Team_Manager_Free 10 10 @subpackage Team_Manager_Free/includes -
team-showcase/trunk/includes/team-manager-free-deactivator.php
r3355106 r3424171 6 6 This class defines all code necessary to run during the plugin's activaton. 7 7 8 @since 1.0.08 @since 3.0.0 9 9 @package Team_Manager_Free 10 10 @subpackage Team_Manager_Free/includes -
team-showcase/trunk/readme.txt
r3355106 r3424171 4 4 Tags: team, team members, staff, team grid, team showcase, employee directory, team slider, team carousel, team member display, responsive team layout 5 5 Requires at least: 4.0 6 Tested up to: 6. 8.27 Stable tag: 2.96 Tested up to: 6.9 7 Stable tag: 3.0.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 159 159 == Changelog == 160 160 161 = 3.0.0 = 162 * Fix Security Issue. 163 * Added New Options. 164 * Added New CSS. 165 161 166 = 2.9 = 162 167 * Fix Escaping Issue. -
team-showcase/trunk/team-manager-free.php
r3355106 r3424171 4 4 Plugin URI: https://themepoints.com/teamshowcase/ 5 5 Description: Team Showcase is a WordPress plugin that allows you to easily create and manage teams. You can display single teams as multiple responsive columns, you can also showcase all teams in various styles. 6 Version: 2.96 Version: 3.0.0 7 7 Author: Themepoints 8 8 Author URI: https://themepoints.com … … 20 20 define( 'TEAM_MANAGER_PLUGIN_NAME', 'Team Showcase' ); 21 21 define( 'TEAM_MANAGER_PLUGIN_SLUG', 'team-manager-free' ); 22 define( 'TEAM_MANAGER_FREE_VERSION', ' 2.9' );22 define( 'TEAM_MANAGER_FREE_VERSION', '3.0.0' ); 23 23 24 24 // Define paths for the plugin
Note: See TracChangeset
for help on using the changeset viewer.