Plugin Directory

Changeset 3341726


Ignore:
Timestamp:
08/08/2025 03:04:09 PM (8 months ago)
Author:
wpmart
Message:

modified

Location:
team-showcase-supreme/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • team-showcase-supreme/trunk/index.php

    r3325087 r3341726  
    99  Text Domain: team-showcase-supreme
    1010  Domain Path: /languages
    11   Version: 8.0
     11  Version: 8.1
    1212 */
    1313if (!defined('ABSPATH'))
     
    1616define('wpm_6310_plugin_url', plugin_dir_path(__FILE__));
    1717define('wpm_6310_plugin_dir_url', plugin_dir_url(__FILE__));
    18 define ('WPM_PLUGIN_CURRENT_VERSION', 8.0);
     18define ('WPM_PLUGIN_CURRENT_VERSION', 8.1);
    1919define( 'WPM_6310_PLUGIN_LANGUAGE_PATH', dirname( plugin_basename( __FILE__ ) ) . '/languages' );
    2020
  • team-showcase-supreme/trunk/readme.txt

    r3325087 r3341726  
    44Requires at least: 4.6.14
    55Tested up to: 6.8
    6 Stable tag: 8.0
     6Stable tag: 8.1
    77Requires PHP: 5.6
    88License: GPLv2 or later
     
    183183
    184184== Changelog ==
     185= 8.1 =
     186* FEATURE – Bug fixed
     187
    185188= 8.0 =
    186189* FEATURE – Bug fixed
  • team-showcase-supreme/trunk/settings/helper/common-helper.php

    r3325087 r3341726  
    2424   <div class="wpm_6310_add_media">
    2525      <h6>Customize Team Members</h6>
    26       <div class="wpm_6310_add_media_body wpm_6310_add_new_media">
     26      <div class="wpm_6310_add_media_body" id="wpm_6310_add_new_media">
    2727         <i class="fas fa-plus-circle wpm_6310_add_media_add_new_icon"></i>
    2828         Add/Edit Members
     
    3333      <h6>
    3434         Rearrange Team
     35         <span class="wpm-6310-pro">(Pro) <div class="wpm-6310-pro-text">This feature is available on the pro version only. You can view changes in the admin panel, not in the output.</div></span>
    3536      </h6>
    3637      <div class="wpm_6310_add_media_body" id="wpm_6310_rearrange_team">
     
    102103            <div class="wpm-6310-modal-header">
    103104               Rearrange Teams
     105               <span class="wpm-6310-pro">(Pro) <div class="wpm-6310-pro-text">This feature is available on the pro version only. You can view changes in the admin panel, not in the output.</div></span>
    104106               <span class="wpm-6310-icon-close">&times;</span>
    105107            </div>
     
    107109               <p>
    108110                  <b>Order Type: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</b>
    109                   <input type="radio" name="order_type" value="0" checked>Custom Order &nbsp;&nbsp;&nbsp;
     111                  <input type="radio" name="order_type" value="0" checked>Custom Order <span class="wpm-6310-pro">(Pro)</span>&nbsp;&nbsp;&nbsp;
    110112                  <input type="radio" name="order_type" value="1" <?php if(esc_attr($order_type) == 1) echo ' checked'; ?>>Random Order
    111113                  <span class="wpm-6310-pro">(Pro)</span>
     
    534536         });
    535537
    536          jQuery("body").on("click", ".wpm_6310_add_new_media", function() {
     538         jQuery("body").on("click", "#wpm_6310_add_new_media", function() {
    537539            jQuery("#wpm_6310_add_new_media_modal").fadeIn(500);
    538540            jQuery("body").css({
  • team-showcase-supreme/trunk/shortcode.php

    r3253671 r3341726  
    5050            return;
    5151         }
    52 
    53          $members = [];
    54          if($tempId){
    55             $tempId = explode(',', $tempId);
    56             if(count($tempId)){
    57                foreach($tempId as $value){
    58                   $members[] = $wpdb->get_row($wpdb->prepare("SELECT * FROM $member_table WHERE id = %d ", $value), ARRAY_A);
    59                }
    60             }
    61          }
     52         $members = $wpdb->get_results("SELECT * FROM $member_table WHERE id in ({$tempId}) ORDER BY name asc", ARRAY_A);
    6253      }
    6354      else{
Note: See TracChangeset for help on using the changeset viewer.