Changeset 3341726
- Timestamp:
- 08/08/2025 03:04:09 PM (8 months ago)
- Location:
- team-showcase-supreme/trunk
- Files:
-
- 4 edited
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
-
settings/helper/common-helper.php (modified) (5 diffs)
-
shortcode.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
team-showcase-supreme/trunk/index.php
r3325087 r3341726 9 9 Text Domain: team-showcase-supreme 10 10 Domain Path: /languages 11 Version: 8. 011 Version: 8.1 12 12 */ 13 13 if (!defined('ABSPATH')) … … 16 16 define('wpm_6310_plugin_url', plugin_dir_path(__FILE__)); 17 17 define('wpm_6310_plugin_dir_url', plugin_dir_url(__FILE__)); 18 define ('WPM_PLUGIN_CURRENT_VERSION', 8. 0);18 define ('WPM_PLUGIN_CURRENT_VERSION', 8.1); 19 19 define( 'WPM_6310_PLUGIN_LANGUAGE_PATH', dirname( plugin_basename( __FILE__ ) ) . '/languages' ); 20 20 -
team-showcase-supreme/trunk/readme.txt
r3325087 r3341726 4 4 Requires at least: 4.6.14 5 5 Tested up to: 6.8 6 Stable tag: 8. 06 Stable tag: 8.1 7 7 Requires PHP: 5.6 8 8 License: GPLv2 or later … … 183 183 184 184 == Changelog == 185 = 8.1 = 186 * FEATURE – Bug fixed 187 185 188 = 8.0 = 186 189 * FEATURE – Bug fixed -
team-showcase-supreme/trunk/settings/helper/common-helper.php
r3325087 r3341726 24 24 <div class="wpm_6310_add_media"> 25 25 <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"> 27 27 <i class="fas fa-plus-circle wpm_6310_add_media_add_new_icon"></i> 28 28 Add/Edit Members … … 33 33 <h6> 34 34 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> 35 36 </h6> 36 37 <div class="wpm_6310_add_media_body" id="wpm_6310_rearrange_team"> … … 102 103 <div class="wpm-6310-modal-header"> 103 104 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> 104 106 <span class="wpm-6310-icon-close">×</span> 105 107 </div> … … 107 109 <p> 108 110 <b>Order Type: </b> 109 <input type="radio" name="order_type" value="0" checked>Custom Order 111 <input type="radio" name="order_type" value="0" checked>Custom Order <span class="wpm-6310-pro">(Pro)</span> 110 112 <input type="radio" name="order_type" value="1" <?php if(esc_attr($order_type) == 1) echo ' checked'; ?>>Random Order 111 113 <span class="wpm-6310-pro">(Pro)</span> … … 534 536 }); 535 537 536 jQuery("body").on("click", " .wpm_6310_add_new_media", function() {538 jQuery("body").on("click", "#wpm_6310_add_new_media", function() { 537 539 jQuery("#wpm_6310_add_new_media_modal").fadeIn(500); 538 540 jQuery("body").css({ -
team-showcase-supreme/trunk/shortcode.php
r3253671 r3341726 50 50 return; 51 51 } 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); 62 53 } 63 54 else{
Note: See TracChangeset
for help on using the changeset viewer.