Changeset 3422760
- Timestamp:
- 12/18/2025 11:15:35 AM (4 weeks ago)
- Location:
- team/trunk
- Files:
-
- 4 edited
-
includes/functions-layout-element.php (modified) (9 diffs)
-
includes/functions-layout-hook.php (modified) (6 diffs)
-
readme.txt (modified) (2 diffs)
-
team.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
team/trunk/includes/functions-layout-element.php
r3422750 r3422760 393 393 ?> 394 394 <style type="text/css"> 395 .layout-<?php echo esc_attr($layout_id); ?>.element-<?php echo esc_attr($element_index); ?> {395 <?php echo esc_attr('.layout-' . $layout_id); ?><?php echo esc_attr(' .element-' . $element_index); ?> { 396 396 color: <?php echo esc_attr($color); ?>; 397 397 font-size: <?php echo esc_attr($font_size); ?>; … … 423 423 ?> 424 424 <style type="text/css"> 425 .layout-<?php echo esc_attr($layout_id); ?>.element-<?php echo esc_attr($element_index); ?> {425 <?php echo esc_attr('.layout-' . $layout_id); ?><?php echo esc_attr(' .element-' . $element_index); ?> { 426 426 color: <?php echo esc_attr($color); ?>; 427 427 font-size: <?php echo esc_attr($font_size); ?>; … … 452 452 ?> 453 453 <style type="text/css"> 454 .layout-<?php echo esc_attr($layout_id); ?>.element-<?php echo esc_attr($element_index); ?> {454 <?php echo esc_attr('.layout-' . $layout_id); ?><?php echo esc_attr(' .element-' . $element_index); ?> { 455 455 color: <?php echo esc_attr($color); ?>; 456 456 font-size: <?php echo esc_attr($font_size); ?>; … … 500 500 ?> 501 501 <style type="text/css"> 502 .layout-<?php echo esc_attr($layout_id); ?>.element-<?php echo esc_attr($element_index); ?> {502 <?php echo esc_attr('.layout-' . $layout_id); ?><?php echo esc_attr(' .element-' . $element_index); ?> { 503 503 color: <?php echo esc_attr($color); ?>; 504 504 font-size: <?php echo esc_attr($font_size); ?>; … … 508 508 } 509 509 510 .layout-<?php echo esc_attr($layout_id); ?>.element-<?php echo esc_attr($element_index); ?>a {510 <?php echo esc_attr('.layout-' . $layout_id); ?><?php echo esc_attr(' .element-' . $element_index); ?>a { 511 511 color: <?php echo esc_attr($read_more_color); ?>; 512 512 … … 537 537 ?> 538 538 <style type="text/css"> 539 .layout-<?php echo esc_attr($layout_id); ?>.element-<?php echo esc_attr($element_index); ?> {539 <?php echo esc_attr('.layout-' . $layout_id); ?><?php echo esc_attr(' .element-' . $element_index); ?> { 540 540 overflow: hidden; 541 541 margin: <?php echo esc_attr($margin); ?>; … … 543 543 544 544 @media only screen and (min-width: 1024px) { 545 .layout-<?php echo esc_attr($layout_id); ?>.element-<?php echo esc_attr($element_index); ?> {545 <?php echo esc_attr('.layout-' . $layout_id); ?><?php echo esc_attr(' .element-' . $element_index); ?> { 546 546 <?php if (!empty($thumb_height_large)): ?>max-height: <?php echo esc_attr($thumb_height_large); ?>; 547 547 <?php endif; ?> … … 550 550 551 551 @media only screen and (min-width: 768px) and (max-width: 1023px) { 552 .layout-<?php echo esc_attr($layout_id); ?>.element-<?php echo esc_attr($element_index); ?> {552 <?php echo esc_attr('.layout-' . $layout_id); ?><?php echo esc_attr(' .element-' . $element_index); ?> { 553 553 <?php if (!empty($thumb_height_medium)): ?>max-height: <?php echo esc_attr($thumb_height_medium); ?>; 554 554 <?php endif; ?> … … 557 557 558 558 @media only screen and (min-width: 0px) and (max-width: 767px) { 559 .layout-<?php echo esc_attr($layout_id); ?>.element-<?php echo esc_attr($element_index); ?> {559 <?php echo esc_attr('.layout-' . $layout_id); ?><?php echo esc_attr(' .element-' . $element_index); ?> { 560 560 <?php if (!empty($thumb_height_small)): ?>max-height: <?php echo esc_attr($thumb_height_small); ?>; 561 561 <?php endif; ?> -
team/trunk/includes/functions-layout-hook.php
r3422750 r3422760 118 118 ob_start(); 119 119 ?> 120 <textarea readonly type="text" onclick="this.select();"> .element-<?php echo esc_attr($element_index); ?>{}</textarea>120 <textarea readonly type="text" onclick="this.select();"><?php echo esc_attr(' .element-' . $element_index); ?>{}</textarea> 121 121 <?php 122 122 … … 298 298 ?> 299 299 <code onclick="this.select()"> 300 .element-<?php echo esc_attr($element_index); ?>{}300 <?php echo esc_attr(' .element-' . $element_index); ?>{} 301 301 302 302 </code> … … 520 520 ?> 521 521 <code onclick="this.select()"> 522 .element-<?php echo esc_attr($element_index); ?>{}522 <?php echo esc_attr(' .element-' . $element_index); ?>{} 523 523 524 524 </code> … … 826 826 ?> 827 827 <code onclick="this.select()"> 828 .element-<?php echo esc_attr($element_index); ?>{}828 <?php echo esc_attr(' .element-' . $element_index); ?>{} 829 829 830 830 </code> … … 949 949 ?> 950 950 <code onclick="this.select()"> 951 .element-<?php echo esc_attr($element_index); ?>{}951 <?php echo esc_attr(' .element-' . $element_index); ?>{} 952 952 953 953 </code> … … 1071 1071 ?> 1072 1072 <code onclick="this.select()"> 1073 .element-<?php echo esc_attr($element_index); ?>{}1073 <?php echo esc_attr(' .element-' . $element_index); ?>{} 1074 1074 1075 1075 </code> -
team/trunk/readme.txt
r3422750 r3422760 5 5 Requires at least: 3.8 6 6 Tested up to: 6.9 7 Stable tag: 1.22.2 77 Stable tag: 1.22.28 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 124 124 125 125 == Changelog == 126 127 = 1.22.28 = 128 * 2025-12-18 fix - Broken style issue fixed. 126 129 127 130 = 1.22.27 = -
team/trunk/team.php
r3422750 r3422760 4 4 Plugin URI: https://pickplugins.com/team/ 5 5 Description: Fully responsive and mobile ready meet the team showcase plugin for wordpress. 6 Version: 1.22.2 76 Version: 1.22.28 7 7 Author: PickPlugins 8 8 Author URI: http://pickplugins.com … … 26 26 define('team_plugin_dir', plugin_dir_path(__FILE__)); 27 27 define('team_plugin_name', 'Team'); 28 define('team_plugin_version', '1.22.2 7');28 define('team_plugin_version', '1.22.28'); 29 29 30 30
Note: See TracChangeset
for help on using the changeset viewer.