Changeset 3245832
- Timestamp:
- 02/24/2025 02:52:14 PM (13 months ago)
- Location:
- product-variant-table-for-woocommerce
- Files:
-
- 7 edited
-
assets/banner-1544x500.jpg (modified) (previous)
-
assets/banner-772x250.jpg (modified) (previous)
-
trunk/inc/class_pvtfw_common.php (modified) (1 diff)
-
trunk/languages/product-variant-table-for-woocommerce.pot (modified) (2 diffs)
-
trunk/product-variant-table-for-woocommerce.php (modified) (2 diffs)
-
trunk/public/css/pvtfw_frontend.css (modified) (5 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
product-variant-table-for-woocommerce/trunk/inc/class_pvtfw_common.php
r3098894 r3245832 228 228 'value' => array(), 229 229 ), 230 'td' => array() 230 'td' => array( 231 'class' => array(), 232 ), 233 'div' => array(), 231 234 ) ); 232 235 } -
product-variant-table-for-woocommerce/trunk/languages/product-variant-table-for-woocommerce.pot
r3245229 r3245832 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: PVT - Product Variation Table for WooCommerce 1.7. 0\n"5 "Project-Id-Version: PVT - Product Variation Table for WooCommerce 1.7.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/product-variant-table-for-woocommerce\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-02-2 3T08:26:03+00:00\n"12 "POT-Creation-Date: 2025-02-24T06:24:54+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" -
product-variant-table-for-woocommerce/trunk/product-variant-table-for-woocommerce.php
r3245229 r3245832 8 8 Text Domain: product-variant-table-for-woocommerce 9 9 Domain Path: /languages 10 Version: 1.7. 010 Version: 1.7.1 11 11 Requires at least: 4.7.0 12 12 Requires PHP: 5.6.20 … … 33 33 */ 34 34 35 define("PVTFW_VARIANT_TABLE_VERSION", '1.7. 0');35 define("PVTFW_VARIANT_TABLE_VERSION", '1.7.1'); 36 36 define("PVTFW_REQUIRED_PRO_VERSION", '1.7.0'); 37 37 define("PVTFW_DIR", plugin_dir_path(__FILE__) ); -
product-variant-table-for-woocommerce/trunk/public/css/pvtfw_frontend.css
r3245229 r3245832 2 2 .spinner-wrap { 3 3 display: none; 4 animation: rotate 1.5s linear infinite; 4 -webkit-animation: rotate 1.5s linear infinite; 5 animation: rotate 1.5s linear infinite; 5 6 } 6 7 … … 10 11 } 11 12 13 @-webkit-keyframes rotate { 14 0% { 15 -webkit-transform: rotate(0); 16 transform: rotate(0); 17 } 18 100% { 19 -webkit-transform: rotate(359deg); 20 transform: rotate(359deg); 21 } 22 } 23 12 24 @keyframes rotate { 13 25 0% { 14 transform: rotate(0); 26 -webkit-transform: rotate(0); 27 transform: rotate(0); 15 28 } 16 29 100% { 17 transform: rotate(359deg); 30 -webkit-transform: rotate(359deg); 31 transform: rotate(359deg); 18 32 } 19 33 } 20 34 21 35 .pvtfw_variant_table_block table.variant{ 22 table-layout: fixed;36 table-layout: auto; 23 37 } 24 38 … … 124 138 background-color: transparent !important; 125 139 color: var( --pvtfw-table-body-text-color, #6d6d6d ); 140 white-space: nowrap; 126 141 } 127 142 … … 190 205 color: #000; 191 206 background: #fff; 207 display: -webkit-box; 208 display: -ms-flexbox; 192 209 display: flex; 193 align-items: center; 210 -webkit-box-align: center; 211 -ms-flex-align: center; 212 align-items: center; 194 213 overflow: hidden; 195 214 max-width: 100px; … … 263 282 } 264 283 .pvt-qty-input .qty-count--add:after { 265 transform: rotate(90deg); 284 -webkit-transform: rotate(90deg); 285 -ms-transform: rotate(90deg); 286 transform: rotate(90deg); 266 287 } 267 288 .pvt-qty-input .qty-count:disabled { -
product-variant-table-for-woocommerce/trunk/readme.txt
r3245229 r3245832 5 5 Tested up to: 6.7 6 6 Requires PHP: 5.6.20 7 Stable tag: 1.7. 07 Stable tag: 1.7.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 179 179 == Changelog == 180 180 181 = 1.7.0 [22-02-2025] Sunday = 182 * Update: Settings framework. 183 * Update:`$options` array. 184 * Update: Availability text condition and optimize the code at compatiblilty.php. 185 * Update: Scripts and added necessary trigger. 186 * Check: WPCS. 181 = 1.7.1 [24-02-2025] Monday = 182 * Update: CSS and checked with autoprefixers. 187 183 188 184 [See changelog for all versions.](https://github.com/WPXtension/product-variation-table-for-woocommerce/blob/main/changelog-free.md) … … 191 187 == Upgrade Notice == 192 188 193 = 1.6.2 = 194 * Fix: Minor conditional fix. 195 * Enhancement: UI of Advanced tab. 196 * Update: Codebase based on Plugin Check Plugin(PCP). 197 189 = 1.7.0 [23-02-2025] Sunday = 190 * Update: Settings framework. 191 * Update:`$options` array. 192 * Update: Availability text condition and optimize the code at compatiblilty.php. 193 * Update: Scripts and added necessary trigger. 194 * Check: WPCS.
Note: See TracChangeset
for help on using the changeset viewer.