Changeset 3460992
- Timestamp:
- 02/13/2026 06:50:54 PM (4 weeks ago)
- Location:
- extra-product-data-for-woocommerce
- Files:
-
- 8 edited
- 1 copied
-
tags/1.8.2 (copied) (copied from extra-product-data-for-woocommerce/trunk)
-
tags/1.8.2/README.md (modified) (4 diffs)
-
tags/1.8.2/extra-product-data-for-woocommerce.php (modified) (1 diff)
-
tags/1.8.2/readme.txt (modified) (1 diff)
-
tags/1.8.2/src/classes/class-exprdawc-product-page-fronted.php (modified) (2 diffs)
-
trunk/README.md (modified) (4 diffs)
-
trunk/extra-product-data-for-woocommerce.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/classes/class-exprdawc-product-page-fronted.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
extra-product-data-for-woocommerce/tags/1.8.2/README.md
r3460848 r3460992 4 4 5 5 # Woocommerce Extra Product Data 6  7  8  9  10  11  12  6 13 7 14 - [Woocommerce Extra Product Data](#woocommerce-extra-product-data) … … 10 17 - [Features](#features) 11 18 - [Installation](#installation) 19 - [Support](#support) 12 20 - [Frequently Asked Questions](#frequently-asked-questions) 13 21 - [Can the fields be customized?](#can-the-fields-be-customized) … … 23 31 | Tested up to | 6.x | 24 32 | Requires PHP | > 8.2 | 25 | Stable tag | 1.8. 1|33 | Stable tag | 1.8.2 | 26 34 | License | GPLv2 or later | 27 35 | License URI | https://www.gnu.org/licenses/gpl-2.0.html | … … 55 63 3. Go to any WooCommerce product page to see the additional input fields. 56 64 65 ## Support 66 67 This repository is used for development and issue tracking. 68 69 If you need help using the plugin, please use the WordPress.org support forum: 70 71 https://wordpress.org/support/plugin/extra-product-data-for-woocommerce/ 72 73 Bug reports and feature requests are welcome here on GitHub. 57 74 # Frequently Asked Questions 58 75 -
extra-product-data-for-woocommerce/tags/1.8.2/extra-product-data-for-woocommerce.php
r3460848 r3460992 3 3 * Plugin Name: Extra Product Data for WooCommerce 4 4 * Description: Adds customizable input fields per product in WooCommerce, allowing users to enter extra details on the frontend . 5 * Version: 1.8. 15 * Version: 1.8.2 6 6 * Author: Triopsi 7 7 * Author URI: https:// triopsi.dev -
extra-product-data-for-woocommerce/tags/1.8.2/readme.txt
r3460848 r3460992 5 5 Tested up to: 6.7 6 6 Requires PHP: 8.2 7 Stable tag: 1.8. 17 Stable tag: 1.8.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
extra-product-data-for-woocommerce/tags/1.8.2/src/classes/class-exprdawc-product-page-fronted.php
r3460848 r3460992 283 283 284 284 // Actual label lowercase and without spaces and _ are -. 285 $index = strtolower( str_replace( array( ' ', '-' ), '_', $input_field_array['label']) );285 $index = esc_attr( strtolower( str_replace( array( ' ', '-' ), '_', sanitize_title( $input_field_array['label'] ) ) ) ); 286 286 287 287 // Get the field value from the $_POST array. … … 409 409 410 410 // Actual label lowercase and without spaces and _ are -. 411 $index = strtolower( str_replace( array( ' ', '-' ), '_', $input_field_array['label']) );411 $index = esc_attr( strtolower( str_replace( array( ' ', '-' ), '_', sanitize_title( $input_field_array['label'] ) ) ) ); 412 412 413 413 // Get the field value from the $_POST array. -
extra-product-data-for-woocommerce/trunk/README.md
r3460848 r3460992 4 4 5 5 # Woocommerce Extra Product Data 6  7  8  9  10  11  12  6 13 7 14 - [Woocommerce Extra Product Data](#woocommerce-extra-product-data) … … 10 17 - [Features](#features) 11 18 - [Installation](#installation) 19 - [Support](#support) 12 20 - [Frequently Asked Questions](#frequently-asked-questions) 13 21 - [Can the fields be customized?](#can-the-fields-be-customized) … … 23 31 | Tested up to | 6.x | 24 32 | Requires PHP | > 8.2 | 25 | Stable tag | 1.8. 1|33 | Stable tag | 1.8.2 | 26 34 | License | GPLv2 or later | 27 35 | License URI | https://www.gnu.org/licenses/gpl-2.0.html | … … 55 63 3. Go to any WooCommerce product page to see the additional input fields. 56 64 65 ## Support 66 67 This repository is used for development and issue tracking. 68 69 If you need help using the plugin, please use the WordPress.org support forum: 70 71 https://wordpress.org/support/plugin/extra-product-data-for-woocommerce/ 72 73 Bug reports and feature requests are welcome here on GitHub. 57 74 # Frequently Asked Questions 58 75 -
extra-product-data-for-woocommerce/trunk/extra-product-data-for-woocommerce.php
r3460848 r3460992 3 3 * Plugin Name: Extra Product Data for WooCommerce 4 4 * Description: Adds customizable input fields per product in WooCommerce, allowing users to enter extra details on the frontend . 5 * Version: 1.8. 15 * Version: 1.8.2 6 6 * Author: Triopsi 7 7 * Author URI: https:// triopsi.dev -
extra-product-data-for-woocommerce/trunk/readme.txt
r3460848 r3460992 5 5 Tested up to: 6.7 6 6 Requires PHP: 8.2 7 Stable tag: 1.8. 17 Stable tag: 1.8.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html -
extra-product-data-for-woocommerce/trunk/src/classes/class-exprdawc-product-page-fronted.php
r3460848 r3460992 283 283 284 284 // Actual label lowercase and without spaces and _ are -. 285 $index = strtolower( str_replace( array( ' ', '-' ), '_', $input_field_array['label']) );285 $index = esc_attr( strtolower( str_replace( array( ' ', '-' ), '_', sanitize_title( $input_field_array['label'] ) ) ) ); 286 286 287 287 // Get the field value from the $_POST array. … … 409 409 410 410 // Actual label lowercase and without spaces and _ are -. 411 $index = strtolower( str_replace( array( ' ', '-' ), '_', $input_field_array['label']) );411 $index = esc_attr( strtolower( str_replace( array( ' ', '-' ), '_', sanitize_title( $input_field_array['label'] ) ) ) ); 412 412 413 413 // Get the field value from the $_POST array.
Note: See TracChangeset
for help on using the changeset viewer.