Plugin Directory

Changeset 3318107


Ignore:
Timestamp:
06/26/2025 09:14:05 AM (9 months ago)
Author:
pickelements
Message:
  • Latest Version Compatibility Issue.
  • Update Filter Menu.
  • Update Options Page.
  • Update CSS File.
Location:
team-ultimate/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • team-ultimate/trunk/libs/meta-boxes/team-ultimate-post-metaboxes.php

    r3291243 r3318107  
    274274                                <div class="column-customize-inner">
    275275                                    <div class="column-heading-area">
    276                                         <span class="sub-heading"><?php _e('Select Team Categories', 'team-ultimate'); ?></span>
    277                                         <span class="sub-description"><?php _e('Select your Categories to display team members, if you did not select any Categories it shows all the members.', 'team-ultimate');?> </span>
     276                                        <span class="sub-heading"><?php _e('Select Categories', 'team-ultimate'); ?></span>
     277                                        <span class="sub-description"><?php _e('The category names will only be visible when members are published within any categories.', 'team-ultimate');?> </span>
    278278                                    </div>
    279279                                    <div class="column-dropdown-items">
     
    294294                                                    $cat_id = $category->cat_ID;
    295295                                                    $checked = ( in_array($cat_id,(array)$pe_team_catslist)? ' checked="checked"': "" );
    296                                                     echo'<li id="cat-'.$cat_id.'"><input type="checkbox" name="pe_team_catslist[]" id="'.$cat_id.'" value="'.$cat_id.'"'.$checked.'> <label for="'.$cat_id.'">'.__( $category->cat_name, 'team-manager-free' ).'</label></li>';
     296                                                    echo'<li id="cat-'.$cat_id.'"><input type="checkbox" name="pe_team_catslist[]" id="'.$cat_id.'" value="'.$cat_id.'"'.$checked.'> <label for="'.$cat_id.'">'.__( $category->cat_name, 'team-ultimate' ).'</label></li>';
    297297                                                endforeach;
    298298                                            ?>
     
    303303                                <div class="column-customize-inner">
    304304                                    <div class="column-heading-area">
    305                                         <span class="sub-heading"><?php _e('Choose Team Style', 'team-ultimate');?></span>
     305                                        <span class="sub-heading"><?php _e('Team Style', 'team-ultimate');?></span>
    306306                                        <span class="sub-description"><?php _e('Select Team Showcase style.', 'team-ultimate');?> </span>
    307307                                    </div>
     
    319319                                <div class="column-customize-inner">
    320320                                    <div class="column-heading-area">
    321                                         <span class="sub-heading"><?php _e('Team Type', 'team-ultimate');?></span>
    322                                         <span class="sub-description"><?php _e('Choose team showcase type grid or slider. all options available on the grid & slider settings tab.', 'team-ultimate');?> </span>
     321                                        <span class="sub-heading"><?php _e('Team Laout Type', 'team-ultimate');?></span>
     322                                        <span class="sub-description"><?php _e('Select Layout type grid or slider. all options available on the grid & slider settings tab.', 'team-ultimate');?> </span>
    323323                                    </div>
    324324                                    <div class="column-dropdown-items">
     
    332332                                <div class="column-customize-inner">
    333333                                    <div class="column-heading-area">
    334                                         <span class="sub-heading"><?php _e('Display Total Item', 'team-ultimate');?></span>
    335                                         <span class="sub-description"><?php _e('Choose how many team member you want to show. Only Available on the Pro Version.', 'team-ultimate');?> </span>
     334                                        <span class="sub-heading"><?php _e('Member Limit', 'team-ultimate');?></span>
     335                                        <span class="sub-description"><?php _e('Limit number of team members to show.', 'team-ultimate');?> </span>
    336336                                    </div>
    337337                                    <div class="column-dropdown-items">
     
    343343                                    <div class="column-heading-area">
    344344                                        <span class="sub-heading"><?php _e('Order By', 'team-ultimate');?></span>
    345                                         <span class="sub-description"><?php _e('Choose team member order By: Date, Menu Order or Random.', 'team-ultimate');?> </span>
     345                                        <span class="sub-description"><?php _e('Select an order by option.', 'team-ultimate');?> </span>
    346346                                    </div>
    347347                                    <div class="column-dropdown-items">
    348348                                        <select name="pe_team_orderby" id="pe_team_orderby" class="timezone_string">
    349                                             <option value="date" <?php if ( isset ( $pe_team_orderby ) ) selected( $pe_team_orderby, 'date' ); ?>><?php _e('Publish Date', 'team-ultimate');?></option>
    350                                             <option value="menu_order" <?php if ( isset ( $pe_team_orderby ) ) selected( $pe_team_orderby, 'menu_order' ); ?>><?php _e('Order', 'team-ultimate');?></option>
    351                                             <option value="rand" <?php if ( isset ( $pe_team_orderby ) ) selected( $pe_team_orderby, 'rand' ); ?>><?php _e('Random', 'team-ultimate');?></option>
    352                                         </select>
     349                                            <option value="date" <?php if ( isset ( $pe_team_orderby ) ) selected( $pe_team_orderby, 'date' ); ?>><?php _e('Publish Date', 'team-ultimate'); ?></option>
     350                                            <option value="title" <?php if ( isset ( $pe_team_orderby ) ) selected( $pe_team_orderby, 'title' ); ?>><?php _e('Title', 'team-ultimate'); ?></option>
     351                                            <option value="ID" <?php if ( isset ( $pe_team_orderby ) ) selected( $pe_team_orderby, 'ID' ); ?>><?php _e('ID', 'team-ultimate'); ?></option>
     352                                            <option value="author" <?php if ( isset ( $pe_team_orderby ) ) selected( $pe_team_orderby, 'author' ); ?>><?php _e('Author', 'team-ultimate'); ?></option>
     353                                            <option value="name" <?php if ( isset ( $pe_team_orderby ) ) selected( $pe_team_orderby, 'name' ); ?>><?php _e('Name', 'team-ultimate'); ?></option>
     354                                            <option value="menu_order" <?php if ( isset ( $pe_team_orderby ) ) selected( $pe_team_orderby, 'menu_order' ); ?>><?php _e('Menu Order', 'team-ultimate'); ?></option>
     355                                            <option value="rand" <?php if ( isset ( $pe_team_orderby ) ) selected( $pe_team_orderby, 'rand' ); ?>><?php _e('Random', 'team-ultimate'); ?></option>
     356                                        </select><br />
    353357                                    </div>
    354358                                </div><!-- End -->
     
    357361                                    <div class="column-heading-area">
    358362                                        <span class="sub-heading"><?php _e('Order', 'team-ultimate');?></span>
    359                                         <span class="sub-description"><?php _e('Choose team member order: Descending or Ascending', 'team-ultimate');?> </span>
     363                                        <span class="sub-description"><?php _e('Select an order option.', 'team-ultimate');?> </span>
    360364                                    </div>
    361365                                    <div class="column-dropdown-items">
     
    400404                                                    <div class="column-heading-area">
    401405                                                        <span class="sub-heading"><?php _e('Name Font Size', 'team-ultimate');?></span>
    402                                                         <span class="sub-description"><?php _e('Choose team member name font size. default font size:18px ', 'team-ultimate');?> </span>
     406                                                        <span class="sub-description"><?php _e('Choose team member name font size.', 'team-ultimate');?> </span>
    403407                                                    </div>
    404408                                                    <div class="column-dropdown-items">
     
    410414                                                    <div class="column-heading-area">
    411415                                                        <span class="sub-heading"><?php _e('Name Font Color', 'team-ultimate');?></span>
    412                                                         <span class="sub-description"><?php _e('Choose team member name text color. default color: #333333', 'team-ultimate');?> </span>
     416                                                        <span class="sub-description"><?php _e('Choose team member name text color.', 'team-ultimate');?> </span>
    413417                                                    </div>
    414418                                                    <div class="column-dropdown-items">
     
    420424                                                    <div class="column-heading-area">
    421425                                                        <span class="sub-heading"><?php _e('Name Text Transform', 'team-ultimate');?></span>
    422                                                         <span class="sub-description"><?php _e('Choose team member name text transform. default text transform: capitalize', 'team-ultimate');?> </span>
     426                                                        <span class="sub-description"><?php _e('Choose team member name text transform.', 'team-ultimate');?> </span>
    423427                                                    </div>
    424428                                                    <div class="column-dropdown-items">
     
    435439                                                    <div class="column-heading-area">
    436440                                                        <span class="sub-heading"><?php _e('Name Font Style', 'team-ultimate');?></span>
    437                                                         <span class="sub-description"><?php _e('Choose team member name text Style. default: Normal', 'team-ultimate');?> </span>
     441                                                        <span class="sub-description"><?php _e('Choose team member name text Style.', 'team-ultimate');?> </span>
    438442                                                    </div>
    439443                                                    <div class="column-dropdown-items">
     
    448452                                                    <div class="column-heading-area">
    449453                                                        <span class="sub-heading"><?php _e('Name Font Weight', 'team-ultimate');?></span>
    450                                                         <span class="sub-description"><?php _e('Choose team member name font weight. default: 500. Available on the premium version only.', 'team-ultimate');?> </span>
     454                                                        <span class="sub-description"><?php _e('Choose team member name font weight. Available on the premium version only.', 'team-ultimate');?> </span>
    451455                                                    </div>
    452456                                                    <div class="column-dropdown-items">
     
    494498                                                    <div class="column-heading-area">
    495499                                                        <span class="sub-heading"><?php _e('Designation Font Size', 'team-ultimate');?></span>
    496                                                         <span class="sub-description"><?php _e('Choose Team Member Designation Font Size. default font size: 15px', 'team-ultimate');?> </span>
     500                                                        <span class="sub-description"><?php _e('Choose Team Member Designation Font Size.', 'team-ultimate');?> </span>
    497501                                                    </div>
    498502                                                    <div class="column-dropdown-items">
     
    504508                                                    <div class="column-heading-area">
    505509                                                        <span class="sub-heading"><?php _e('Designation Font Color', 'team-ultimate');?></span>
    506                                                         <span class="sub-description"><?php _e('Choose Team Member Designation Font Color. default font color: #333333', 'team-ultimate');?> </span>
     510                                                        <span class="sub-description"><?php _e('Choose Team Member Designation Font Color.', 'team-ultimate');?> </span>
    507511                                                    </div>
    508512                                                    <div class="column-dropdown-items">
     
    514518                                                    <div class="column-heading-area">
    515519                                                        <span class="sub-heading"><?php _e('Designation Text Transform', 'team-ultimate');?></span>
    516                                                         <span class="sub-description"><?php _e('Choose Team Member Designation Text Transform. default text transform: capitalize', 'team-ultimate');?> </span>
     520                                                        <span class="sub-description"><?php _e('Choose Team Member Designation Text Transform.', 'team-ultimate');?> </span>
    517521                                                    </div>
    518522                                                    <div class="column-dropdown-items">
     
    529533                                                    <div class="column-heading-area">
    530534                                                        <span class="sub-heading"><?php _e('Designation Text Style', 'team-ultimate');?></span>
    531                                                         <span class="sub-description"><?php _e('Choose Team Member Designation Text Style. default text style: Normal', 'team-ultimate');?> </span>
     535                                                        <span class="sub-description"><?php _e('Choose Team Member Designation Text Style.', 'team-ultimate');?> </span>
    532536                                                    </div>
    533537                                                    <div class="column-dropdown-items">
     
    571575                                                    <div class="column-heading-area">
    572576                                                        <span class="sub-heading"><?php _e('Email Font Size', 'team-ultimate');?></span>
    573                                                         <span class="sub-description"><?php _e('Choose Team Member Email Font Size. default font size: 15px', 'team-ultimate');?> </span>
     577                                                        <span class="sub-description"><?php _e('Choose Team Member Email Font Size.', 'team-ultimate');?> </span>
    574578                                                    </div>
    575579                                                    <div class="column-dropdown-items">
     
    581585                                                    <div class="column-heading-area">
    582586                                                        <span class="sub-heading"><?php _e('Email Font Color', 'team-ultimate');?></span>
    583                                                         <span class="sub-description"><?php _e('Choose Team Member Email Font Color. default font color: #333333', 'team-ultimate');?> </span>
     587                                                        <span class="sub-description"><?php _e('Choose Team Member Email Font Color.', 'team-ultimate');?> </span>
    584588                                                    </div>
    585589                                                    <div class="column-dropdown-items">
     
    591595                                                    <div class="column-heading-area">
    592596                                                        <span class="sub-heading"><?php _e('Email Hover Font Color', 'team-ultimate');?></span>
    593                                                         <span class="sub-description"><?php _e('Choose Team Member Email Hover Font Color. default font color: #7d7777', 'team-ultimate');?> </span>
     597                                                        <span class="sub-description"><?php _e('Choose Team Member Email Hover Font Color.', 'team-ultimate');?> </span>
    594598                                                    </div>
    595599                                                    <div class="column-dropdown-items">
     
    601605                                                    <div class="column-heading-area">
    602606                                                        <span class="sub-heading"><?php _e('Email Text Transform', 'team-ultimate');?></span>
    603                                                         <span class="sub-description"><?php _e('Choose Team Member Email Text Transform. default text transform: capitalize', 'team-ultimate');?> </span>
     607                                                        <span class="sub-description"><?php _e('Choose Team Member Email Text Transform.', 'team-ultimate');?> </span>
    604608                                                    </div>
    605609                                                    <div class="column-dropdown-items">
     
    616620                                                    <div class="column-heading-area">
    617621                                                        <span class="sub-heading"><?php _e('Email Text Style', 'team-ultimate');?></span>
    618                                                         <span class="sub-description"><?php _e('Choose Team Member Email Text Style. default text style: Normal', 'team-ultimate');?> </span>
     622                                                        <span class="sub-description"><?php _e('Choose Team Member Email Text Style.', 'team-ultimate');?> </span>
    619623                                                    </div>
    620624                                                    <div class="column-dropdown-items">
     
    658662                                                    <div class="column-heading-area">
    659663                                                        <span class="sub-heading"><?php _e('Contact Font Size', 'team-ultimate');?></span>
    660                                                         <span class="sub-description"><?php _e('Choose Team Member Contact Font Size. default font size: 15px', 'team-ultimate');?> </span>
     664                                                        <span class="sub-description"><?php _e('Choose Team Member Contact Font Size.', 'team-ultimate');?> </span>
    661665                                                    </div>
    662666
     
    669673                                                    <div class="column-heading-area">
    670674                                                        <span class="sub-heading"><?php _e('Contact Font Color', 'team-ultimate');?></span>
    671                                                         <span class="sub-description"><?php _e('Choose Team Member Contact Font Color. default font color: #333333', 'team-ultimate');?> </span>
     675                                                        <span class="sub-description"><?php _e('Choose Team Member Contact Font Color.', 'team-ultimate');?> </span>
    672676                                                    </div>
    673677                                                    <div class="column-dropdown-items">
     
    709713                                                    <div class="column-heading-area">
    710714                                                        <span class="sub-heading"><?php _e('Location Font Size', 'team-ultimate');?></span>
    711                                                         <span class="sub-description"><?php _e('Choose Team Member Location Font Size. default font size: 15px', 'team-ultimate');?> </span>
     715                                                        <span class="sub-description"><?php _e('Choose Team Member Location Font Size.', 'team-ultimate');?> </span>
    712716                                                    </div>
    713717                                                    <div class="column-dropdown-items">
     
    719723                                                    <div class="column-heading-area">
    720724                                                        <span class="sub-heading"><?php _e('Location Font Color', 'team-ultimate');?></span>
    721                                                         <span class="sub-description"><?php _e('Choose Team Member Location Font Color. default font color: #333333', 'team-ultimate');?> </span>
     725                                                        <span class="sub-description"><?php _e('Choose Team Member Location Font Color.', 'team-ultimate');?> </span>
    722726                                                    </div>
    723727                                                    <div class="column-dropdown-items">
     
    759763                                                    <div class="column-heading-area">
    760764                                                        <span class="sub-heading"><?php _e('Social Icons Style', 'team-ultimate');?></span>
    761                                                         <span class="sub-description"><?php _e('Choose social icons style. default style: square', 'team-ultimate');?> </span>
     765                                                        <span class="sub-description"><?php _e('Choose social icons style.', 'team-ultimate');?> </span>
    762766                                                    </div>
    763767                                                    <div class="column-dropdown-items">
     
    772776                                                    <div class="column-heading-area">
    773777                                                        <span class="sub-heading"><?php _e('Social Icon Color', 'team-ultimate');?></span>
    774                                                         <span class="sub-description"><?php _e('Choose team social icons color. default: #333333', 'team-ultimate');?> </span>
     778                                                        <span class="sub-description"><?php _e('Choose team social icons color.', 'team-ultimate');?> </span>
    775779                                                    </div>
    776780                                                    <div class="column-dropdown-items">
     
    782786                                                    <div class="column-heading-area">
    783787                                                        <span class="sub-heading"><?php _e('Social Icon Bg Color', 'team-ultimate');?></span>
    784                                                         <span class="sub-description"><?php _e('Choose team social icons Background color. default: #333333', 'team-ultimate');?> </span>
     788                                                        <span class="sub-description"><?php _e('Choose team social icons Background color.', 'team-ultimate');?> </span>
    785789                                                    </div>
    786790                                                    <div class="column-dropdown-items">
     
    792796                                                    <div class="column-heading-area">
    793797                                                        <span class="sub-heading"><?php _e('Social Icon Size', 'team-ultimate');?></span>
    794                                                         <span class="sub-description"><?php _e('Choose Team member social icon font size. default size: 13px', 'team-ultimate');?> </span>
     798                                                        <span class="sub-description"><?php _e('Choose Team member social icon font size.', 'team-ultimate');?> </span>
    795799                                                    </div>
    796800                                                    <div class="column-dropdown-items">
     
    818822                                                    <div class="column-heading-area">
    819823                                                        <span class="sub-heading"><?php _e('Show/Hide Team Content', 'team-ultimate');?></span>
    820                                                         <span class="sub-description"><?php _e('show/hide team member content details. default: Show', 'team-ultimate');?> </span>
     824                                                        <span class="sub-description"><?php _e('show/hide team member content details.', 'team-ultimate');?> </span>
    821825                                                    </div>
    822826
     
    832836                                                    <div class="column-heading-area">
    833837                                                        <span class="sub-heading"><?php _e('Content Text Color', 'team-ultimate');?></span>
    834                                                         <span class="sub-description"><?php _e('Choose team member content text color. default color: #fdfdfd', 'team-ultimate');?> </span>
     838                                                        <span class="sub-description"><?php _e('Choose team member content text color.', 'team-ultimate');?> </span>
    835839                                                    </div>
    836840                                                    <div class="column-dropdown-items">
     
    842846                                                    <div class="column-heading-area">
    843847                                                        <span class="sub-heading"><?php _e('Content Font Size', 'team-ultimate');?></span>
    844                                                         <span class="sub-description"><?php _e('Choose team member content text size. default text size: 14px', 'team-ultimate');?> </span>
     848                                                        <span class="sub-description"><?php _e('Choose team member content text size.', 'team-ultimate');?> </span>
    845849                                                    </div>
    846850                                                    <div class="column-dropdown-items">
     
    852856                                                    <div class="column-heading-area">
    853857                                                        <span class="sub-heading"><?php _e('Member Background Color', 'team-ultimate');?></span>
    854                                                         <span class="sub-description"><?php _e('Choose Team member Background color. default color:#fafafa', 'team-ultimate');?> </span>
     858                                                        <span class="sub-description"><?php _e('Choose Team member Background color.', 'team-ultimate');?> </span>
    855859                                                    </div>
    856860                                                    <div class="column-dropdown-items">
     
    862866                                                    <div class="column-heading-area">
    863867                                                        <span class="sub-heading"><?php _e('Member Overlay Bg Color', 'team-ultimate');?></span>
    864                                                         <span class="sub-description"><?php _e('Choose Team member Overlay color. default color:#324957', 'team-ultimate');?> </span>
     868                                                        <span class="sub-description"><?php _e('Choose Team member Overlay color.', 'team-ultimate');?> </span>
    865869                                                    </div>
    866870                                                    <div class="column-dropdown-items">
     
    889893                                                    <div class="column-heading-area">
    890894                                                        <span class="sub-heading"><?php _e('Show/Hide Team Skills', 'team-ultimate');?></span>
    891                                                         <span class="sub-description"><?php _e('show/hide team member skills. default: hide', 'team-ultimate');?> </span>
     895                                                        <span class="sub-description"><?php _e('show/hide team member skills.', 'team-ultimate');?> </span>
    892896                                                    </div>
    893897                                                    <div class="column-dropdown-items">
     
    902906                                                    <div class="column-heading-area">
    903907                                                        <span class="sub-heading"><?php _e('Skills Text Color', 'team-ultimate');?></span>
    904                                                         <span class="sub-description"><?php _e('Choose team social icons Background color. default: #000000', 'team-ultimate');?> </span>
     908                                                        <span class="sub-description"><?php _e('Choose team social icons Background color.', 'team-ultimate');?> </span>
    905909                                                    </div>
    906910                                                    <div class="column-dropdown-items">
     
    912916                                                    <div class="column-heading-area">
    913917                                                        <span class="sub-heading"><?php _e('Skills line Bg Color', 'team-ultimate');?></span>
    914                                                         <span class="sub-description"><?php _e('Choose team member skills line Background color. default: #959595', 'team-ultimate');?> </span>
     918                                                        <span class="sub-description"><?php _e('Choose team member skills line Background color.', 'team-ultimate');?> </span>
    915919                                                    </div>
    916920                                                    <div class="column-dropdown-items">
     
    921925                                                    <div class="column-heading-area">
    922926                                                        <span class="sub-heading"><?php _e('Skills Animate Color', 'team-ultimate');?></span>
    923                                                         <span class="sub-description"><?php _e('Choose team member skills line animation Background color. default: #f4392f', 'team-ultimate');?> </span>
     927                                                        <span class="sub-description"><?php _e('Choose team member skills line animation Background color.', 'team-ultimate');?> </span>
    924928                                                    </div>
    925929                                                    <div class="column-dropdown-items">
     
    949953                                                <div class="column-heading-area">
    950954                                                    <span class="sub-heading"><?php _e('Name Font Size', 'team-ultimate');?></span>
    951                                                     <span class="sub-description"><?php _e('Choose team member name font size. default font size:16px ', 'team-ultimate');?> </span>
     955                                                    <span class="sub-description"><?php _e('Choose team member name font size.', 'team-ultimate');?> </span>
    952956                                                </div>
    953957
     
    960964                                                <div class="column-heading-area">
    961965                                                    <span class="sub-heading"><?php _e('Name Font Color', 'team-ultimate');?></span>
    962                                                     <span class="sub-description"><?php _e('Choose team member name text color. default color: #333333', 'team-ultimate');?> </span>
     966                                                    <span class="sub-description"><?php _e('Choose team member name text color.', 'team-ultimate');?> </span>
    963967                                                </div>
    964968                                                <div class="column-dropdown-items">
     
    970974                                                <div class="column-heading-area">
    971975                                                    <span class="sub-heading"><?php _e('Name Text Transform', 'team-ultimate');?></span>
    972                                                     <span class="sub-description"><?php _e('Choose team member name text transform. default text transform: capitalize', 'team-ultimate');?> </span>
     976                                                    <span class="sub-description"><?php _e('Choose team member name text transform.', 'team-ultimate');?> </span>
    973977                                                </div>
    974978                                                <div class="column-dropdown-items">
     
    985989                                                <div class="column-heading-area">
    986990                                                    <span class="sub-heading"><?php _e('Name Font Style', 'team-ultimate');?></span>
    987                                                     <span class="sub-description"><?php _e('Choose team member name text Style. default: Normal', 'team-ultimate');?> </span>
     991                                                    <span class="sub-description"><?php _e('Choose team member name text Style.', 'team-ultimate');?> </span>
    988992                                                </div>
    989993                                                <div class="column-dropdown-items">
     
    9981002                                                <div class="column-heading-area">
    9991003                                                    <span class="sub-heading"><?php _e('Name Font Weight', 'team-ultimate');?></span>
    1000                                                     <span class="sub-description"><?php _e('Choose team member name font weight. default: 500. Available on the premium version only.', 'team-ultimate');?> </span>
     1004                                                    <span class="sub-description"><?php _e('Choose team member name font weight. Available on the premium version only.', 'team-ultimate');?> </span>
    10011005                                                </div>
    10021006                                                <div class="column-dropdown-items">
     
    10431047                                                <div class="column-heading-area">
    10441048                                                    <span class="sub-heading"><?php _e('Designation Font Size', 'team-ultimate');?></span>
    1045                                                     <span class="sub-description"><?php _e('Choose Team Member Designation Font Size. default font size: 15px', 'team-ultimate');?> </span>
     1049                                                    <span class="sub-description"><?php _e('Choose Team Member Designation Font Size.', 'team-ultimate');?> </span>
    10461050                                                </div>
    10471051                                                <div class="column-dropdown-items">
     
    10531057                                                <div class="column-heading-area">
    10541058                                                    <span class="sub-heading"><?php _e('Designation Font Color', 'team-ultimate');?></span>
    1055                                                     <span class="sub-description"><?php _e('Choose Team Member Designation Font Color. default font color: #333333', 'team-ultimate');?> </span>
     1059                                                    <span class="sub-description"><?php _e('Choose Team Member Designation Font Color.', 'team-ultimate');?> </span>
    10561060                                                </div>
    10571061                                                <div class="column-dropdown-items">
     
    10631067                                                <div class="column-heading-area">
    10641068                                                    <span class="sub-heading"><?php _e('Designation Text Transform', 'team-ultimate');?></span>
    1065                                                     <span class="sub-description"><?php _e('Choose Team Member Designation Text Transform. default text transform: capitalize', 'team-ultimate');?> </span>
     1069                                                    <span class="sub-description"><?php _e('Choose Team Member Designation Text Transform.', 'team-ultimate');?> </span>
    10661070                                                </div>
    10671071                                                <div class="column-dropdown-items">
     
    10781082                                                <div class="column-heading-area">
    10791083                                                    <span class="sub-heading"><?php _e('Designation Text Style', 'team-ultimate');?></span>
    1080                                                     <span class="sub-description"><?php _e('Choose Team Member Designation Text Style. default text style: Normal', 'team-ultimate');?> </span>
     1084                                                    <span class="sub-description"><?php _e('Choose Team Member Designation Text Style.', 'team-ultimate');?> </span>
    10811085                                                </div>
    10821086                                                <div class="column-dropdown-items">
     
    11181122                                                <div class="column-heading-area">
    11191123                                                    <span class="sub-heading"><?php _e('Email Font Size', 'team-ultimate');?></span>
    1120                                                     <span class="sub-description"><?php _e('Choose Team Member Email Font Size. default font size: 15px', 'team-ultimate');?> </span>
     1124                                                    <span class="sub-description"><?php _e('Choose Team Member Email Font Size.', 'team-ultimate');?> </span>
    11211125                                                </div>
    11221126                                                <div class="column-dropdown-items">
     
    11281132                                                <div class="column-heading-area">
    11291133                                                    <span class="sub-heading"><?php _e('Email Font Color', 'team-ultimate');?></span>
    1130                                                     <span class="sub-description"><?php _e('Choose Team Member Email Font Color. default font color: #333333', 'team-ultimate');?> </span>
     1134                                                    <span class="sub-description"><?php _e('Choose Team Member Email Font Color.', 'team-ultimate');?> </span>
    11311135                                                </div>
    11321136                                                <div class="column-dropdown-items">
     
    11381142                                                <div class="column-heading-area">
    11391143                                                    <span class="sub-heading"><?php _e('Email Hover Font Color', 'team-ultimate');?></span>
    1140                                                     <span class="sub-description"><?php _e('Choose Team Member Email Hover Font Color. default font color: #7d7777', 'team-ultimate');?> </span>
     1144                                                    <span class="sub-description"><?php _e('Choose Team Member Email Hover Font Color.', 'team-ultimate');?> </span>
    11411145                                                </div>
    11421146                                                <div class="column-dropdown-items">
     
    11481152                                                <div class="column-heading-area">
    11491153                                                    <span class="sub-heading"><?php _e('Email Text Transform', 'team-ultimate');?></span>
    1150                                                     <span class="sub-description"><?php _e('Choose Team Member Email Text Transform. default text transform: capitalize', 'team-ultimate');?> </span>
     1154                                                    <span class="sub-description"><?php _e('Choose Team Member Email Text Transform.', 'team-ultimate');?> </span>
    11511155                                                </div>
    11521156                                                <div class="column-dropdown-items">
     
    11631167                                                <div class="column-heading-area">
    11641168                                                    <span class="sub-heading"><?php _e('Email Text Style', 'team-ultimate');?></span>
    1165                                                     <span class="sub-description"><?php _e('Choose Team Member Email Text Style. default text style: Normal', 'team-ultimate');?> </span>
     1169                                                    <span class="sub-description"><?php _e('Choose Team Member Email Text Style.', 'team-ultimate');?> </span>
    11661170                                                </div>
    11671171                                                <div class="column-dropdown-items">
     
    12031207                                                <div class="column-heading-area">
    12041208                                                    <span class="sub-heading"><?php _e('Contact Font Size', 'team-ultimate');?></span>
    1205                                                     <span class="sub-description"><?php _e('Choose Team Member Contact Font Size. default font size: 15px', 'team-ultimate');?> </span>
     1209                                                    <span class="sub-description"><?php _e('Choose Team Member Contact Font Size.', 'team-ultimate');?> </span>
    12061210                                                </div>
    12071211                                                <div class="column-dropdown-items">
     
    12131217                                                <div class="column-heading-area">
    12141218                                                    <span class="sub-heading"><?php _e('Contact Font Color', 'team-ultimate');?></span>
    1215                                                     <span class="sub-description"><?php _e('Choose Team Member Contact Font Color. default font color: #333333', 'team-ultimate');?> </span>
     1219                                                    <span class="sub-description"><?php _e('Choose Team Member Contact Font Color.', 'team-ultimate');?> </span>
    12161220                                                </div>
    12171221                                                <div class="column-dropdown-items">
     
    12511255                                                <div class="column-heading-area">
    12521256                                                    <span class="sub-heading"><?php _e('Location Font Size', 'team-ultimate');?></span>
    1253                                                     <span class="sub-description"><?php _e('Choose Team Member Location Font Size. default font size: 15px', 'team-ultimate');?> </span>
     1257                                                    <span class="sub-description"><?php _e('Choose Team Member Location Font Size.', 'team-ultimate');?> </span>
    12541258                                                </div>
    12551259                                                <div class="column-dropdown-items">
     
    12611265                                                <div class="column-heading-area">
    12621266                                                    <span class="sub-heading"><?php _e('Location Font Color', 'team-ultimate');?></span>
    1263                                                     <span class="sub-description"><?php _e('Choose Team Member Location Font Color. default font color: #333333', 'team-ultimate');?> </span>
     1267                                                    <span class="sub-description"><?php _e('Choose Team Member Location Font Color.', 'team-ultimate');?> </span>
    12641268                                                </div>
    12651269                                                <div class="column-dropdown-items">
     
    12861290                                                <div class="column-heading-area">
    12871291                                                    <span class="sub-heading"><?php _e('Show/Hide Team Content', 'team-ultimate');?></span>
    1288                                                     <span class="sub-description"><?php _e('show/hide team member content details. default: Show', 'team-ultimate');?> </span>
     1292                                                    <span class="sub-description"><?php _e('show/hide team member content details.', 'team-ultimate');?> </span>
    12891293                                                </div>
    12901294                                                <div class="column-dropdown-items">
     
    12991303                                                <div class="column-heading-area">
    13001304                                                    <span class="sub-heading"><?php _e('Content Text Color', 'team-ultimate');?></span>
    1301                                                     <span class="sub-description"><?php _e('Choose team member content text color. default color: #fdfdfd', 'team-ultimate');?> </span>
     1305                                                    <span class="sub-description"><?php _e('Choose team member content text color.', 'team-ultimate');?> </span>
    13021306                                                </div>
    13031307                                                <div class="column-dropdown-items">
     
    13091313                                                <div class="column-heading-area">
    13101314                                                    <span class="sub-heading"><?php _e('Content Font Size', 'team-ultimate');?></span>
    1311                                                     <span class="sub-description"><?php _e('Choose team member content text size. default text size: 14px', 'team-ultimate');?> </span>
     1315                                                    <span class="sub-description"><?php _e('Choose team member content text size.', 'team-ultimate');?> </span>
    13121316                                                </div>
    13131317                                                <div class="column-dropdown-items">
     
    13191323                                                <div class="column-heading-area">
    13201324                                                    <span class="sub-heading"><?php _e('Member Background Color', 'team-ultimate');?></span>
    1321                                                     <span class="sub-description"><?php _e('Choose Team member Background color. default color:#fafafa', 'team-ultimate');?> </span>
     1325                                                    <span class="sub-description"><?php _e('Choose Team member Background color.', 'team-ultimate');?> </span>
    13221326                                                </div>
    13231327                                                <div class="column-dropdown-items">
     
    13291333                                                <div class="column-heading-area">
    13301334                                                    <span class="sub-heading"><?php _e('Member Overlay Bg Color', 'team-ultimate');?></span>
    1331                                                     <span class="sub-description"><?php _e('Choose Team member Overlay color. default color:#f8f8f8', 'team-ultimate');?> </span>
     1335                                                    <span class="sub-description"><?php _e('Choose Team member Overlay color.', 'team-ultimate');?> </span>
    13321336                                                </div>
    13331337                                                <div class="column-dropdown-items">
     
    13661370                                                <div class="column-heading-area">
    13671371                                                    <span class="sub-heading"><?php _e('Social Icons Style', 'team-ultimate');?></span>
    1368                                                     <span class="sub-description"><?php _e('Choose social icons style. default style: square', 'team-ultimate');?> </span>
     1372                                                    <span class="sub-description"><?php _e('Choose social icons style.', 'team-ultimate');?> </span>
    13691373                                                </div>
    13701374                                                <div class="column-dropdown-items">
     
    13791383                                                <div class="column-heading-area">
    13801384                                                    <span class="sub-heading"><?php _e('Social Icon Color', 'team-ultimate');?></span>
    1381                                                     <span class="sub-description"><?php _e('Choose team social icons color. default: #333333', 'team-ultimate');?> </span>
     1385                                                    <span class="sub-description"><?php _e('Choose team social icons color.', 'team-ultimate');?> </span>
    13821386                                                </div>
    13831387                                                <div class="column-dropdown-items">
     
    13891393                                                <div class="column-heading-area">
    13901394                                                    <span class="sub-heading"><?php _e('Social Icon Bg Color', 'team-ultimate');?></span>
    1391                                                     <span class="sub-description"><?php _e('Choose team social icons Background color. default: #333333', 'team-ultimate');?> </span>
     1395                                                    <span class="sub-description"><?php _e('Choose team social icons Background color.', 'team-ultimate');?> </span>
    13921396                                                </div>
    13931397                                                <div class="column-dropdown-items">
     
    13991403                                                <div class="column-heading-area">
    14001404                                                    <span class="sub-heading"><?php _e('Social Icon Size', 'team-ultimate');?></span>
    1401                                                     <span class="sub-description"><?php _e('Choose Team member social icon font size. default size: 15px', 'team-ultimate');?> </span>
     1405                                                    <span class="sub-description"><?php _e('Choose Team member social icon font size.', 'team-ultimate');?> </span>
    14021406                                                </div>
    14031407                                                <div class="column-dropdown-items">
     
    14231427                                                <div class="column-heading-area">
    14241428                                                    <span class="sub-heading"><?php _e('Show/Hide Team Skills', 'team-ultimate');?></span>
    1425                                                     <span class="sub-description"><?php _e('show/hide team member skills. default: hide', 'team-ultimate');?> </span>
     1429                                                    <span class="sub-description"><?php _e('show/hide team member skills.', 'team-ultimate');?> </span>
    14261430                                                </div>
    14271431                                                <div class="column-dropdown-items">
     
    14361440                                                <div class="column-heading-area">
    14371441                                                    <span class="sub-heading"><?php _e('Skills Text Color', 'team-ultimate');?></span>
    1438                                                     <span class="sub-description"><?php _e('Choose team social icons Background color. default: #000000', 'team-ultimate');?> </span>
     1442                                                    <span class="sub-description"><?php _e('Choose team social icons Background color.', 'team-ultimate');?> </span>
    14391443                                                </div>
    14401444                                                <div class="column-dropdown-items">
     
    14461450                                                <div class="column-heading-area">
    14471451                                                    <span class="sub-heading"><?php _e('Skills line Bg Color', 'team-ultimate');?></span>
    1448                                                     <span class="sub-description"><?php _e('Choose team member skills line Background color. default: #959595', 'team-ultimate');?> </span>
     1452                                                    <span class="sub-description"><?php _e('Choose team member skills line Background color.', 'team-ultimate');?> </span>
    14491453                                                </div>
    14501454                                                <div class="column-dropdown-items">
     
    14561460                                                <div class="column-heading-area">
    14571461                                                    <span class="sub-heading"><?php _e('Skills Animate Color', 'team-ultimate');?></span>
    1458                                                     <span class="sub-description"><?php _e('Choose team member skills line animation Background color. default: #f4392f', 'team-ultimate');?> </span>
     1462                                                    <span class="sub-description"><?php _e('Choose team member skills line animation Background color.', 'team-ultimate');?> </span>
    14591463                                                </div>
    14601464                                                <div class="column-dropdown-items">
     
    15081512                                    <div class="column-heading-area">
    15091513                                        <span class="sub-heading"><?php _e('Grid Type', 'team-ultimate');?></span>
    1510                                         <span class="sub-description"><?php _e('Select team grid type default or filterable. default: Default Grid', 'team-ultimate');?> </span>
     1514                                        <span class="sub-description"><?php _e('Select team grid type default or filterable.', 'team-ultimate');?> </span>
    15111515                                    </div>
    15121516                                    <div class="column-dropdown-items">
     
    15201524                                <div class="column-customize-inner">
    15211525                                    <div class="column-heading-area">
    1522                                         <span class="sub-heading"><?php _e('Select Grid Column', 'team-ultimate');?></span>
    1523                                         <span class="sub-description"><?php _e('Select Team Showcase grid columns. default column: 3', 'team-ultimate');?> </span>
     1526                                        <span class="sub-heading"><?php _e('Grid Column', 'team-ultimate');?></span>
     1527                                        <span class="sub-description"><?php _e('Select Team Showcase grid columns.', 'team-ultimate');?> </span>
    15241528                                    </div>
    15251529                                    <div class="column-dropdown-items">
     
    15591563                                    <div class="column-heading-area">
    15601564                                        <span class="sub-heading"><?php _e('Filter Menu Position', 'team-ultimate');?></span>
    1561                                         <span class="sub-description"><?php _e('Select Team Filter Menu Position. default Position: Center', 'team-ultimate');?> </span>
     1565                                        <span class="sub-description"><?php _e('Select Team Filter Menu Position.', 'team-ultimate');?> </span>
    15621566                                    </div>
    15631567                                    <div class="column-dropdown-items">
     
    15731577                                    <div class="column-heading-area">
    15741578                                        <span class="sub-heading"><?php _e('Filter Menu Style', 'testeam-ultimate');?></span>
    1575                                         <span class="sub-description"><?php _e('Select Team Filter Menu Style. default Style: Menu default', 'testeam-ultimate');?> </span>
     1579                                        <span class="sub-description"><?php _e('Select Team Filter Menu Style.', 'testeam-ultimate');?> </span>
    15761580                                    </div>
    15771581                                    <div class="column-dropdown-items">
     
    15871591                                    <div class="column-heading-area">
    15881592                                        <span class="sub-heading"><?php _e('Menu Text Color', 'team-ultimate');?></span>
    1589                                         <span class="sub-description"><?php _e('Choose Team Filter Menu Text Color. default Color: #000', 'team-ultimate');?> </span>
     1593                                        <span class="sub-description"><?php _e('Choose Team Filter Menu Text Color.', 'team-ultimate');?> </span>
    15901594                                    </div>
    15911595                                    <div class="column-dropdown-items">
     
    15971601                                    <div class="column-heading-area">
    15981602                                        <span class="sub-heading"><?php _e('Menu Background Color', 'team-ultimate');?></span>
    1599                                         <span class="sub-description"><?php _e('Choose Team Filter Menu Background Color. default Color: #f8f8f8', 'team-ultimate');?> </span>
     1603                                        <span class="sub-description"><?php _e('Choose Team Filter Menu Background Color.', 'team-ultimate');?> </span>
    16001604                                    </div>
    16011605                                    <div class="column-dropdown-items">
     
    16071611                                    <div class="column-heading-area">
    16081612                                        <span class="sub-heading"><?php _e('Menu Hover Color', 'team-ultimate');?></span>
    1609                                         <span class="sub-description"><?php _e('Choose Team Filter Menu Hover Color. default Color: #fff', 'team-ultimate');?> </span>
     1613                                        <span class="sub-description"><?php _e('Choose Team Filter Menu Hover Color.', 'team-ultimate');?> </span>
    16101614                                    </div>
    16111615                                    <div class="column-dropdown-items">
     
    16171621                                    <div class="column-heading-area">
    16181622                                        <span class="sub-heading"><?php _e('Menu Hover Bg Color', 'team-ultimate');?></span>
    1619                                         <span class="sub-description"><?php _e('Choose Team filter menu hover Background color. default Color: #11b8ea', 'team-ultimate');?> </span>
     1623                                        <span class="sub-description"><?php _e('Choose Team filter menu hover Background color.', 'team-ultimate');?> </span>
    16201624                                    </div>
    16211625                                    <div class="column-dropdown-items">
  • team-ultimate/trunk/libs/post-types/team-ultimate-post-type.php

    r3291243 r3318107  
    3939            'description'           => __( 'Team Ultimate Post Description.', 'team-ultimate' ),
    4040            'labels'                => $labels,
    41             'supports'              => array( 'title', 'editor', 'thumbnail' ),
     41            'supports'              => array( 'title', 'editor', 'thumbnail', 'page-attributes' ),
    4242            'hierarchical'          => false,
    4343            'public'                => true,
  • team-ultimate/trunk/libs/shortcode/team-ultimate-shortcode.php

    r3291243 r3318107  
    1212        $postid = $atts['id'];
    1313
    14         $pe_team_catslist                       = get_post_meta($postid, 'pe_team_catslist', true);
    15         $pe_team_styles                         = get_post_meta($postid, 'pe_team_styles', true);
    16         $pe_team_orderby                        = get_post_meta($postid, 'pe_team_orderby', true);
    17         $pe_team_order                          = get_post_meta($postid, 'pe_team_order', true);
    18         $pe_team_types                          = get_post_meta($postid, 'pe_team_types', true);
    19         $pe_team_totall_pages                   = get_post_meta($postid, 'pe_team_totall_pages', true);
    20         $pe_team_gridtypes                      = get_post_meta($postid, 'pe_team_gridtypes', true);
    21         $pe_teamtotal_column                    = get_post_meta($postid, 'pe_teamtotal_column', true);
    22         $pe_team_marginleftright_size           = get_post_meta($postid, 'pe_team_marginleftright_size', true);
    23         $pe_team_marginbottom_size              = get_post_meta($postid, 'pe_team_marginbottom_size', true);
    24         $pe_team_gridtypes                      = get_post_meta($postid, 'pe_team_gridtypes', true);
    25 
     14        $pe_team_catslist                 = get_post_meta($postid, 'pe_team_catslist', true);
     15        $pe_team_styles                   = get_post_meta($postid, 'pe_team_styles', true);
     16        $pe_team_orderby                  = get_post_meta($postid, 'pe_team_orderby', true);
     17        $pe_team_order                    = get_post_meta($postid, 'pe_team_order', true);
     18        $pe_team_types                    = get_post_meta($postid, 'pe_team_types', true);
     19        $pe_team_totall_pages             = get_post_meta($postid, 'pe_team_totall_pages', true);
     20        $pe_team_gridtypes                = get_post_meta($postid, 'pe_team_gridtypes', true);
     21        $pe_teamtotal_column              = get_post_meta($postid, 'pe_teamtotal_column', true);
     22        $pe_team_marginleftright_size     = get_post_meta($postid, 'pe_team_marginleftright_size', true);
     23        $pe_team_marginbottom_size        = get_post_meta($postid, 'pe_team_marginbottom_size', true);
     24        $pe_team_gridtypes                = get_post_meta($postid, 'pe_team_gridtypes', true);
     25       
    2626        // title options settings
    27         $pe_team_title_fontsize                 = get_post_meta($postid, 'pe_team_title_fontsize', true);
    28         $pe_team_title_color                    = get_post_meta($postid, 'pe_team_title_color', true);
    29         $pe_team_title_transform                = get_post_meta($postid, 'pe_team_title_transform', true);
    30         $pe_team_title_fontstyle                = get_post_meta($postid, 'pe_team_title_fontstyle', true);
    31         $pe_team_title_fontweight               = get_post_meta($postid, 'pe_team_title_fontweight', true);
    32 
     27        $pe_team_title_fontsize           = get_post_meta($postid, 'pe_team_title_fontsize', true);
     28        $pe_team_title_color              = get_post_meta($postid, 'pe_team_title_color', true);
     29        $pe_team_title_transform          = get_post_meta($postid, 'pe_team_title_transform', true);
     30        $pe_team_title_fontstyle          = get_post_meta($postid, 'pe_team_title_fontstyle', true);
     31        $pe_team_title_fontweight         = get_post_meta($postid, 'pe_team_title_fontweight', true);
     32       
    3333        // designation options settings
    34         $pe_team_designation_hides              = get_post_meta($postid, 'pe_team_designation_hides', true);
    35         $pe_team_designation_fontsize           = get_post_meta($postid, 'pe_team_designation_fontsize', true);
    36         $pe_team_designation_color              = get_post_meta($postid, 'pe_team_designation_color', true);
    37         $pe_team_designation_transform          = get_post_meta($postid, 'pe_team_designation_transform', true);
    38         $pe_team_designation_fontstyle          = get_post_meta($postid, 'pe_team_designation_fontstyle', true);
    39 
     34        $pe_team_designation_hides        = get_post_meta($postid, 'pe_team_designation_hides', true);
     35        $pe_team_designation_fontsize     = get_post_meta($postid, 'pe_team_designation_fontsize', true);
     36        $pe_team_designation_color        = get_post_meta($postid, 'pe_team_designation_color', true);
     37        $pe_team_designation_transform    = get_post_meta($postid, 'pe_team_designation_transform', true);
     38        $pe_team_designation_fontstyle    = get_post_meta($postid, 'pe_team_designation_fontstyle', true);
     39       
    4040        // Filter menu options
    41         $pe_team_filter_menu_position           = get_post_meta($postid, 'pe_team_filter_menu_position', true);
    42         $pe_team_filter_menu_style              = get_post_meta($postid, 'pe_team_filter_menu_style', true);
    43         $pe_team_filter_menutext_color          = get_post_meta($postid, 'pe_team_filter_menutext_color', true);
    44         $pe_team_filter_menubg_color            = get_post_meta($postid, 'pe_team_filter_menubg_color', true);
    45         $pe_team_filter_menuhover_color         = get_post_meta($postid, 'pe_team_filter_menuhover_color', true);
    46         $pe_team_filter_menubghover_color       = get_post_meta($postid, 'pe_team_filter_menubghover_color', true);
    47 
     41        $pe_team_filter_menu_position     = get_post_meta($postid, 'pe_team_filter_menu_position', true);
     42        $pe_team_filter_menu_style        = get_post_meta($postid, 'pe_team_filter_menu_style', true);
     43        $pe_team_filter_menutext_color    = get_post_meta($postid, 'pe_team_filter_menutext_color', true);
     44        $pe_team_filter_menubg_color      = get_post_meta($postid, 'pe_team_filter_menubg_color', true);
     45        $pe_team_filter_menuhover_color   = get_post_meta($postid, 'pe_team_filter_menuhover_color', true);
     46        $pe_team_filter_menubghover_color = get_post_meta($postid, 'pe_team_filter_menubghover_color', true);
     47       
    4848        // Social Icon options
    49         $pe_team_hide_social                    = get_post_meta($postid, 'pe_team_hide_social', true);
    50         $pe_team_social_style                   = get_post_meta($postid, 'pe_team_social_style', true);
    51         $pe_team_socialicon_color               = get_post_meta($postid, 'pe_team_socialicon_color', true);
    52         $pe_team_socialicon_colorbg             = get_post_meta($postid, 'pe_team_socialicon_colorbg', true);
    53         $pe_team_socialicon_size                = get_post_meta($postid, 'pe_team_socialicon_size', true);
    54 
     49        $pe_team_hide_social              = get_post_meta($postid, 'pe_team_hide_social', true);
     50        $pe_team_social_style             = get_post_meta($postid, 'pe_team_social_style', true);
     51        $pe_team_socialicon_color         = get_post_meta($postid, 'pe_team_socialicon_color', true);
     52        $pe_team_socialicon_colorbg       = get_post_meta($postid, 'pe_team_socialicon_colorbg', true);
     53        $pe_team_socialicon_size          = get_post_meta($postid, 'pe_team_socialicon_size', true);
     54       
    5555        // Team content options
    56         $pe_team_memberbg_color                 = get_post_meta($postid, 'pe_team_memberbg_color', true);
    57         $pe_team_overlaybg_color                = get_post_meta($postid, 'pe_team_overlaybg_color', true);
    58         $pe_team_details_color                  = get_post_meta($postid, 'pe_team_details_color', true);
    59         $pe_team_hide_content                   = get_post_meta($postid, 'pe_team_hide_content', true);
    60         $pe_team_details_size                   = get_post_meta($postid, 'pe_team_details_size', true);
    61 
     56        $pe_team_memberbg_color           = get_post_meta($postid, 'pe_team_memberbg_color', true);
     57        $pe_team_overlaybg_color          = get_post_meta($postid, 'pe_team_overlaybg_color', true);
     58        $pe_team_details_color            = get_post_meta($postid, 'pe_team_details_color', true);
     59        $pe_team_hide_content             = get_post_meta($postid, 'pe_team_hide_content', true);
     60        $pe_team_details_size             = get_post_meta($postid, 'pe_team_details_size', true);
     61       
    6262        // Team content options
    63         $pe_team_hide_skills                    = get_post_meta($postid, 'pe_team_hide_skills', true);
    64         $pe_team_skills_textcolors              = get_post_meta($postid, 'pe_team_skills_textcolors', true);
    65         $pe_team_skills_linecolors              = get_post_meta($postid, 'pe_team_skills_linecolors', true);
    66         $pe_team_skills_hvrcolors               = get_post_meta($postid, 'pe_team_skills_hvrcolors', true);
    67         $pe_team_contact_hides                  = get_post_meta($postid, 'pe_team_contact_hides', true);
    68         $pe_team_contact_fontsize               = get_post_meta($postid, 'pe_team_contact_fontsize', true);
    69         $pe_team_contact_color                  = get_post_meta($postid, 'pe_team_contact_color', true);
    70         $pe_team_locations_hides                = get_post_meta($postid, 'pe_team_locations_hides', true);
    71         $pe_team_location_fontsize              = get_post_meta($postid, 'pe_team_location_fontsize', true);
    72         $pe_team_location_color                 = get_post_meta($postid, 'pe_team_location_color', true);
    73         $pe_team_email_hides                    = get_post_meta($postid, 'pe_team_email_hides', true);
    74         $pe_team_emails_fontsize                = get_post_meta($postid, 'pe_team_emails_fontsize', true);
    75         $pe_team_email_color                    = get_post_meta($postid, 'pe_team_email_color', true);
    76         $pe_team_email_hover_color              = get_post_meta($postid, 'pe_team_email_hover_color', true);
    77         $pe_team_email_transform                = get_post_meta($postid, 'pe_team_email_transform', true);
    78         $pe_team_email_fontstyle                = get_post_meta($postid, 'pe_team_email_fontstyle', true);
    79 
    80          // slider options
    81         $pe_team_all_items                      = get_post_meta($postid, 'pe_team_all_items', true);
    82         $pe_team_item_autohide                  = get_post_meta($postid, 'pe_team_item_autohide', true);
    83         $pe_team_item_centermode                = get_post_meta($postid, 'pe_team_item_centermode', true);
    84         $pe_team_all_itemsdesktop               = get_post_meta($postid, 'pe_team_all_itemsdesktop', true);
    85         $pe_team_all_itemsdesktopsmall          = get_post_meta($postid, 'pe_team_all_itemsdesktopsmall', true);
    86         $pe_team_all_itemsmobile                = get_post_meta($postid, 'pe_team_all_itemsmobile', true);
    87         $pe_team_item_loop                      = get_post_meta($postid, 'pe_team_item_loop', true);
    88         $pe_team_item_margin                    = get_post_meta($postid, 'pe_team_item_margin', true);
    89         $pe_team_item_autoplay                  = get_post_meta($postid, 'pe_team_item_autoplay', true);
    90         $pe_team_item_autoplayspeed             = get_post_meta($postid, 'pe_team_item_autoplayspeed', true);
    91         $pe_team_item_autoplaytimeout           = get_post_meta($postid, 'pe_team_item_autoplaytimeout', true);
    92         $pe_team_item_navigation                = get_post_meta($postid, 'pe_team_item_navigation', true);
    93         $pe_team_item_navigation_position       = get_post_meta($postid, 'pe_team_item_navigation_position', true);
    94         $pe_team_item_pagination                = get_post_meta($postid, 'pe_team_item_pagination', true);
    95         $pe_team_item_paginationposition        = get_post_meta($postid, 'pe_team_item_paginationposition', true);
    96         $pe_team_item_stophover                 = get_post_meta($postid, 'pe_team_item_stophover', true);
    97         $pe_team_item_navtext_color             = get_post_meta($postid, 'pe_team_item_navtext_color', true);
    98         $pe_team_item_navtext_color_hover       = get_post_meta($postid, 'pe_team_item_navtext_color_hover', true);
    99         $pe_team_item_navbg_colors              = get_post_meta($postid, 'pe_team_item_navbg_colors', true);
    100         $pe_team_item_navbghovers_colors        = get_post_meta($postid, 'pe_team_item_navbghovers_colors', true);
    101         $pe_team_item_pagination_color          = get_post_meta($postid, 'pe_team_item_pagination_color', true);
    102         $pe_team_item_pagination_bgcolor        = get_post_meta($postid, 'pe_team_item_pagination_bgcolor', true);
    103         $pe_team_item_pagination_style          = get_post_meta($postid, 'pe_team_item_pagination_style', true);
    104         $sort_array                             = get_post_meta($postid, 'sort_array', true);
     63        $pe_team_hide_skills              = get_post_meta($postid, 'pe_team_hide_skills', true);
     64        $pe_team_skills_textcolors        = get_post_meta($postid, 'pe_team_skills_textcolors', true);
     65        $pe_team_skills_linecolors        = get_post_meta($postid, 'pe_team_skills_linecolors', true);
     66        $pe_team_skills_hvrcolors         = get_post_meta($postid, 'pe_team_skills_hvrcolors', true);
     67        $pe_team_contact_hides            = get_post_meta($postid, 'pe_team_contact_hides', true);
     68        $pe_team_contact_fontsize         = get_post_meta($postid, 'pe_team_contact_fontsize', true);
     69        $pe_team_contact_color            = get_post_meta($postid, 'pe_team_contact_color', true);
     70        $pe_team_locations_hides          = get_post_meta($postid, 'pe_team_locations_hides', true);
     71        $pe_team_location_fontsize        = get_post_meta($postid, 'pe_team_location_fontsize', true);
     72        $pe_team_location_color           = get_post_meta($postid, 'pe_team_location_color', true);
     73        $pe_team_email_hides              = get_post_meta($postid, 'pe_team_email_hides', true);
     74        $pe_team_emails_fontsize          = get_post_meta($postid, 'pe_team_emails_fontsize', true);
     75        $pe_team_email_color              = get_post_meta($postid, 'pe_team_email_color', true);
     76        $pe_team_email_hover_color        = get_post_meta($postid, 'pe_team_email_hover_color', true);
     77        $pe_team_email_transform          = get_post_meta($postid, 'pe_team_email_transform', true);
     78        $pe_team_email_fontstyle          = get_post_meta($postid, 'pe_team_email_fontstyle', true);
     79       
     80        // slider options
     81        $pe_team_all_items                = get_post_meta($postid, 'pe_team_all_items', true);
     82        $pe_team_item_autohide            = get_post_meta($postid, 'pe_team_item_autohide', true);
     83        $pe_team_item_centermode          = get_post_meta($postid, 'pe_team_item_centermode', true);
     84        $pe_team_all_itemsdesktop         = get_post_meta($postid, 'pe_team_all_itemsdesktop', true);
     85        $pe_team_all_itemsdesktopsmall    = get_post_meta($postid, 'pe_team_all_itemsdesktopsmall', true);
     86        $pe_team_all_itemsmobile          = get_post_meta($postid, 'pe_team_all_itemsmobile', true);
     87        $pe_team_item_loop                = get_post_meta($postid, 'pe_team_item_loop', true);
     88        $pe_team_item_margin              = get_post_meta($postid, 'pe_team_item_margin', true);
     89        $pe_team_item_autoplay            = get_post_meta($postid, 'pe_team_item_autoplay', true);
     90        $pe_team_item_autoplayspeed       = get_post_meta($postid, 'pe_team_item_autoplayspeed', true);
     91        $pe_team_item_autoplaytimeout     = get_post_meta($postid, 'pe_team_item_autoplaytimeout', true);
     92        $pe_team_item_navigation          = get_post_meta($postid, 'pe_team_item_navigation', true);
     93        $pe_team_item_navigation_position = get_post_meta($postid, 'pe_team_item_navigation_position', true);
     94        $pe_team_item_pagination          = get_post_meta($postid, 'pe_team_item_pagination', true);
     95        $pe_team_item_paginationposition  = get_post_meta($postid, 'pe_team_item_paginationposition', true);
     96        $pe_team_item_stophover           = get_post_meta($postid, 'pe_team_item_stophover', true);
     97        $pe_team_item_navtext_color       = get_post_meta($postid, 'pe_team_item_navtext_color', true);
     98        $pe_team_item_navtext_color_hover = get_post_meta($postid, 'pe_team_item_navtext_color_hover', true);
     99        $pe_team_item_navbg_colors        = get_post_meta($postid, 'pe_team_item_navbg_colors', true);
     100        $pe_team_item_navbghovers_colors  = get_post_meta($postid, 'pe_team_item_navbghovers_colors', true);
     101        $pe_team_item_pagination_color    = get_post_meta($postid, 'pe_team_item_pagination_color', true);
     102        $pe_team_item_pagination_bgcolor  = get_post_meta($postid, 'pe_team_item_pagination_bgcolor', true);
     103        $pe_team_item_pagination_style    = get_post_meta($postid, 'pe_team_item_pagination_style', true);
     104        $sort_array                       = get_post_meta($postid, 'sort_array', true);
    105105
    106106        if( is_array( $pe_team_catslist ) ){
  • team-ultimate/trunk/readme.txt

    r3291243 r3318107  
    55Requires at least: 4.0
    66Tested up to: 6.8.1
    7 Stable tag: 2.0.7
     7Stable tag: 2.0.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    135135== Changelog ==
    136136
     137= 2.0.8 =
     138* Latest Version Compatibility Issue.
     139* Update Filter Menu.
     140* Update Options Page.
     141* Update CSS File.
     142
    137143= 2.0.7 =
    138144* Latest Version Compatibility Issue.
  • team-ultimate/trunk/team-ultimate.php

    r3291243 r3318107  
    44    Plugin URI: https://pickelements.com/team-ultimate
    55    Description: Team Ultimate plugin allows you to create and manage nice team page easily. You can create unlimited teams, members and categories. It is a highly customizable plugin. You can change all colors, font sizes, spacings etc via options page.
    6     Version: 2.0.7
     6    Version: 2.0.8
    77    Author: Pickelements
    88    Author URI: https://pickelements.com
Note: See TracChangeset for help on using the changeset viewer.