Changeset 3318107
- Timestamp:
- 06/26/2025 09:14:05 AM (9 months ago)
- Location:
- team-ultimate/trunk
- Files:
-
- 5 edited
-
libs/meta-boxes/team-ultimate-post-metaboxes.php (modified) (77 diffs)
-
libs/post-types/team-ultimate-post-type.php (modified) (1 diff)
-
libs/shortcode/team-ultimate-shortcode.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
team-ultimate.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
team-ultimate/trunk/libs/meta-boxes/team-ultimate-post-metaboxes.php
r3291243 r3318107 274 274 <div class="column-customize-inner"> 275 275 <div class="column-heading-area"> 276 <span class="sub-heading"><?php _e('Select TeamCategories', '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> 278 278 </div> 279 279 <div class="column-dropdown-items"> … … 294 294 $cat_id = $category->cat_ID; 295 295 $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>'; 297 297 endforeach; 298 298 ?> … … 303 303 <div class="column-customize-inner"> 304 304 <div class="column-heading-area"> 305 <span class="sub-heading"><?php _e(' ChooseTeam Style', 'team-ultimate');?></span>305 <span class="sub-heading"><?php _e('Team Style', 'team-ultimate');?></span> 306 306 <span class="sub-description"><?php _e('Select Team Showcase style.', 'team-ultimate');?> </span> 307 307 </div> … … 319 319 <div class="column-customize-inner"> 320 320 <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 showcasetype 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> 323 323 </div> 324 324 <div class="column-dropdown-items"> … … 332 332 <div class="column-customize-inner"> 333 333 <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> 336 336 </div> 337 337 <div class="column-dropdown-items"> … … 343 343 <div class="column-heading-area"> 344 344 <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> 346 346 </div> 347 347 <div class="column-dropdown-items"> 348 348 <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 /> 353 357 </div> 354 358 </div><!-- End --> … … 357 361 <div class="column-heading-area"> 358 362 <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> 360 364 </div> 361 365 <div class="column-dropdown-items"> … … 400 404 <div class="column-heading-area"> 401 405 <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> 403 407 </div> 404 408 <div class="column-dropdown-items"> … … 410 414 <div class="column-heading-area"> 411 415 <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> 413 417 </div> 414 418 <div class="column-dropdown-items"> … … 420 424 <div class="column-heading-area"> 421 425 <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> 423 427 </div> 424 428 <div class="column-dropdown-items"> … … 435 439 <div class="column-heading-area"> 436 440 <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> 438 442 </div> 439 443 <div class="column-dropdown-items"> … … 448 452 <div class="column-heading-area"> 449 453 <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> 451 455 </div> 452 456 <div class="column-dropdown-items"> … … 494 498 <div class="column-heading-area"> 495 499 <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> 497 501 </div> 498 502 <div class="column-dropdown-items"> … … 504 508 <div class="column-heading-area"> 505 509 <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> 507 511 </div> 508 512 <div class="column-dropdown-items"> … … 514 518 <div class="column-heading-area"> 515 519 <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> 517 521 </div> 518 522 <div class="column-dropdown-items"> … … 529 533 <div class="column-heading-area"> 530 534 <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> 532 536 </div> 533 537 <div class="column-dropdown-items"> … … 571 575 <div class="column-heading-area"> 572 576 <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> 574 578 </div> 575 579 <div class="column-dropdown-items"> … … 581 585 <div class="column-heading-area"> 582 586 <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> 584 588 </div> 585 589 <div class="column-dropdown-items"> … … 591 595 <div class="column-heading-area"> 592 596 <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> 594 598 </div> 595 599 <div class="column-dropdown-items"> … … 601 605 <div class="column-heading-area"> 602 606 <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> 604 608 </div> 605 609 <div class="column-dropdown-items"> … … 616 620 <div class="column-heading-area"> 617 621 <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> 619 623 </div> 620 624 <div class="column-dropdown-items"> … … 658 662 <div class="column-heading-area"> 659 663 <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> 661 665 </div> 662 666 … … 669 673 <div class="column-heading-area"> 670 674 <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> 672 676 </div> 673 677 <div class="column-dropdown-items"> … … 709 713 <div class="column-heading-area"> 710 714 <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> 712 716 </div> 713 717 <div class="column-dropdown-items"> … … 719 723 <div class="column-heading-area"> 720 724 <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> 722 726 </div> 723 727 <div class="column-dropdown-items"> … … 759 763 <div class="column-heading-area"> 760 764 <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> 762 766 </div> 763 767 <div class="column-dropdown-items"> … … 772 776 <div class="column-heading-area"> 773 777 <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> 775 779 </div> 776 780 <div class="column-dropdown-items"> … … 782 786 <div class="column-heading-area"> 783 787 <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> 785 789 </div> 786 790 <div class="column-dropdown-items"> … … 792 796 <div class="column-heading-area"> 793 797 <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> 795 799 </div> 796 800 <div class="column-dropdown-items"> … … 818 822 <div class="column-heading-area"> 819 823 <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> 821 825 </div> 822 826 … … 832 836 <div class="column-heading-area"> 833 837 <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> 835 839 </div> 836 840 <div class="column-dropdown-items"> … … 842 846 <div class="column-heading-area"> 843 847 <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> 845 849 </div> 846 850 <div class="column-dropdown-items"> … … 852 856 <div class="column-heading-area"> 853 857 <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> 855 859 </div> 856 860 <div class="column-dropdown-items"> … … 862 866 <div class="column-heading-area"> 863 867 <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> 865 869 </div> 866 870 <div class="column-dropdown-items"> … … 889 893 <div class="column-heading-area"> 890 894 <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> 892 896 </div> 893 897 <div class="column-dropdown-items"> … … 902 906 <div class="column-heading-area"> 903 907 <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> 905 909 </div> 906 910 <div class="column-dropdown-items"> … … 912 916 <div class="column-heading-area"> 913 917 <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> 915 919 </div> 916 920 <div class="column-dropdown-items"> … … 921 925 <div class="column-heading-area"> 922 926 <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> 924 928 </div> 925 929 <div class="column-dropdown-items"> … … 949 953 <div class="column-heading-area"> 950 954 <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> 952 956 </div> 953 957 … … 960 964 <div class="column-heading-area"> 961 965 <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> 963 967 </div> 964 968 <div class="column-dropdown-items"> … … 970 974 <div class="column-heading-area"> 971 975 <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> 973 977 </div> 974 978 <div class="column-dropdown-items"> … … 985 989 <div class="column-heading-area"> 986 990 <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> 988 992 </div> 989 993 <div class="column-dropdown-items"> … … 998 1002 <div class="column-heading-area"> 999 1003 <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> 1001 1005 </div> 1002 1006 <div class="column-dropdown-items"> … … 1043 1047 <div class="column-heading-area"> 1044 1048 <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> 1046 1050 </div> 1047 1051 <div class="column-dropdown-items"> … … 1053 1057 <div class="column-heading-area"> 1054 1058 <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> 1056 1060 </div> 1057 1061 <div class="column-dropdown-items"> … … 1063 1067 <div class="column-heading-area"> 1064 1068 <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> 1066 1070 </div> 1067 1071 <div class="column-dropdown-items"> … … 1078 1082 <div class="column-heading-area"> 1079 1083 <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> 1081 1085 </div> 1082 1086 <div class="column-dropdown-items"> … … 1118 1122 <div class="column-heading-area"> 1119 1123 <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> 1121 1125 </div> 1122 1126 <div class="column-dropdown-items"> … … 1128 1132 <div class="column-heading-area"> 1129 1133 <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> 1131 1135 </div> 1132 1136 <div class="column-dropdown-items"> … … 1138 1142 <div class="column-heading-area"> 1139 1143 <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> 1141 1145 </div> 1142 1146 <div class="column-dropdown-items"> … … 1148 1152 <div class="column-heading-area"> 1149 1153 <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> 1151 1155 </div> 1152 1156 <div class="column-dropdown-items"> … … 1163 1167 <div class="column-heading-area"> 1164 1168 <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> 1166 1170 </div> 1167 1171 <div class="column-dropdown-items"> … … 1203 1207 <div class="column-heading-area"> 1204 1208 <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> 1206 1210 </div> 1207 1211 <div class="column-dropdown-items"> … … 1213 1217 <div class="column-heading-area"> 1214 1218 <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> 1216 1220 </div> 1217 1221 <div class="column-dropdown-items"> … … 1251 1255 <div class="column-heading-area"> 1252 1256 <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> 1254 1258 </div> 1255 1259 <div class="column-dropdown-items"> … … 1261 1265 <div class="column-heading-area"> 1262 1266 <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> 1264 1268 </div> 1265 1269 <div class="column-dropdown-items"> … … 1286 1290 <div class="column-heading-area"> 1287 1291 <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> 1289 1293 </div> 1290 1294 <div class="column-dropdown-items"> … … 1299 1303 <div class="column-heading-area"> 1300 1304 <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> 1302 1306 </div> 1303 1307 <div class="column-dropdown-items"> … … 1309 1313 <div class="column-heading-area"> 1310 1314 <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> 1312 1316 </div> 1313 1317 <div class="column-dropdown-items"> … … 1319 1323 <div class="column-heading-area"> 1320 1324 <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> 1322 1326 </div> 1323 1327 <div class="column-dropdown-items"> … … 1329 1333 <div class="column-heading-area"> 1330 1334 <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> 1332 1336 </div> 1333 1337 <div class="column-dropdown-items"> … … 1366 1370 <div class="column-heading-area"> 1367 1371 <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> 1369 1373 </div> 1370 1374 <div class="column-dropdown-items"> … … 1379 1383 <div class="column-heading-area"> 1380 1384 <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> 1382 1386 </div> 1383 1387 <div class="column-dropdown-items"> … … 1389 1393 <div class="column-heading-area"> 1390 1394 <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> 1392 1396 </div> 1393 1397 <div class="column-dropdown-items"> … … 1399 1403 <div class="column-heading-area"> 1400 1404 <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> 1402 1406 </div> 1403 1407 <div class="column-dropdown-items"> … … 1423 1427 <div class="column-heading-area"> 1424 1428 <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> 1426 1430 </div> 1427 1431 <div class="column-dropdown-items"> … … 1436 1440 <div class="column-heading-area"> 1437 1441 <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> 1439 1443 </div> 1440 1444 <div class="column-dropdown-items"> … … 1446 1450 <div class="column-heading-area"> 1447 1451 <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> 1449 1453 </div> 1450 1454 <div class="column-dropdown-items"> … … 1456 1460 <div class="column-heading-area"> 1457 1461 <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> 1459 1463 </div> 1460 1464 <div class="column-dropdown-items"> … … 1508 1512 <div class="column-heading-area"> 1509 1513 <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> 1511 1515 </div> 1512 1516 <div class="column-dropdown-items"> … … 1520 1524 <div class="column-customize-inner"> 1521 1525 <div class="column-heading-area"> 1522 <span class="sub-heading"><?php _e(' SelectGrid 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> 1524 1528 </div> 1525 1529 <div class="column-dropdown-items"> … … 1559 1563 <div class="column-heading-area"> 1560 1564 <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> 1562 1566 </div> 1563 1567 <div class="column-dropdown-items"> … … 1573 1577 <div class="column-heading-area"> 1574 1578 <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> 1576 1580 </div> 1577 1581 <div class="column-dropdown-items"> … … 1587 1591 <div class="column-heading-area"> 1588 1592 <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> 1590 1594 </div> 1591 1595 <div class="column-dropdown-items"> … … 1597 1601 <div class="column-heading-area"> 1598 1602 <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> 1600 1604 </div> 1601 1605 <div class="column-dropdown-items"> … … 1607 1611 <div class="column-heading-area"> 1608 1612 <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> 1610 1614 </div> 1611 1615 <div class="column-dropdown-items"> … … 1617 1621 <div class="column-heading-area"> 1618 1622 <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> 1620 1624 </div> 1621 1625 <div class="column-dropdown-items"> -
team-ultimate/trunk/libs/post-types/team-ultimate-post-type.php
r3291243 r3318107 39 39 'description' => __( 'Team Ultimate Post Description.', 'team-ultimate' ), 40 40 'labels' => $labels, 41 'supports' => array( 'title', 'editor', 'thumbnail' ),41 'supports' => array( 'title', 'editor', 'thumbnail', 'page-attributes' ), 42 42 'hierarchical' => false, 43 43 'public' => true, -
team-ultimate/trunk/libs/shortcode/team-ultimate-shortcode.php
r3291243 r3318107 12 12 $postid = $atts['id']; 13 13 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 26 26 // 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 33 33 // 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 40 40 // 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 48 48 // 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 55 55 // 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 62 62 // 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 options81 $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); 105 105 106 106 if( is_array( $pe_team_catslist ) ){ -
team-ultimate/trunk/readme.txt
r3291243 r3318107 5 5 Requires at least: 4.0 6 6 Tested up to: 6.8.1 7 Stable tag: 2.0. 77 Stable tag: 2.0.8 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 135 135 == Changelog == 136 136 137 = 2.0.8 = 138 * Latest Version Compatibility Issue. 139 * Update Filter Menu. 140 * Update Options Page. 141 * Update CSS File. 142 137 143 = 2.0.7 = 138 144 * Latest Version Compatibility Issue. -
team-ultimate/trunk/team-ultimate.php
r3291243 r3318107 4 4 Plugin URI: https://pickelements.com/team-ultimate 5 5 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. 76 Version: 2.0.8 7 7 Author: Pickelements 8 8 Author URI: https://pickelements.com
Note: See TracChangeset
for help on using the changeset viewer.