Plugin Directory

Changeset 3460992


Ignore:
Timestamp:
02/13/2026 06:50:54 PM (4 weeks ago)
Author:
triopsi
Message:

Update to version 1.8.2 from GitHub

Location:
extra-product-data-for-woocommerce
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • extra-product-data-for-woocommerce/tags/1.8.2/README.md

    r3460848 r3460992  
    44
    55# Woocommerce Extra Product Data
     6![WordPress Plugin Version](https://img.shields.io/wordpress/plugin/v/extra-product-data-for-woocommerce)
     7![WordPress Plugin Downloads](https://img.shields.io/wordpress/plugin/dt/extra-product-data-for-woocommerce)
     8![WordPress Tested](https://img.shields.io/wordpress/plugin/tested/extra-product-data-for-woocommerce)
     9![License](https://img.shields.io/github/license/triopsi/extra-product-data-for-woocommerce)
     10![Issues](https://img.shields.io/github/issues/triopsi/extra-product-data-for-woocommerce)
     11![GitHub Release](https://img.shields.io/github/v/release/triopsi/extra-product-data-for-woocommerce)
     12![GitHub Actions](https://img.shields.io/github/actions/workflow/status/triopsi/extra-product-data-for-woocommerce/release.yml)
    613
    714- [Woocommerce Extra Product Data](#woocommerce-extra-product-data)
     
    1017  - [Features](#features)
    1118  - [Installation](#installation)
     19  - [Support](#support)
    1220- [Frequently Asked Questions](#frequently-asked-questions)
    1321- [Can the fields be customized?](#can-the-fields-be-customized)
     
    2331| Tested up to |  6.x |
    2432| Requires PHP |  > 8.2 |
    25 | Stable tag | 1.8.1 |
     33| Stable tag | 1.8.2 |
    2634| License |  GPLv2 or later |
    2735| License URI |  https://www.gnu.org/licenses/gpl-2.0.html |
     
    55633. Go to any WooCommerce product page to see the additional input fields.
    5664
     65## Support
     66
     67This repository is used for development and issue tracking.
     68
     69If you need help using the plugin, please use the WordPress.org support forum:
     70
     71https://wordpress.org/support/plugin/extra-product-data-for-woocommerce/
     72
     73Bug reports and feature requests are welcome here on GitHub.
    5774# Frequently Asked Questions
    5875
  • extra-product-data-for-woocommerce/tags/1.8.2/extra-product-data-for-woocommerce.php

    r3460848 r3460992  
    33 * Plugin Name: Extra Product Data for WooCommerce
    44 * Description: Adds customizable input fields per product in WooCommerce, allowing users to enter extra details on the frontend .
    5  * Version: 1.8.1
     5 * Version: 1.8.2
    66 * Author: Triopsi
    77 * Author URI: https:// triopsi.dev
  • extra-product-data-for-woocommerce/tags/1.8.2/readme.txt

    r3460848 r3460992  
    55Tested up to: 6.7
    66Requires PHP: 8.2
    7 Stable tag: 1.8.1
     7Stable tag: 1.8.2
    88License: GPLv2 or later
    99License 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  
    283283
    284284                // 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'] ) ) ) );
    286286
    287287                // Get the field value from the $_POST array.
     
    409409
    410410                // 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'] ) ) ) );
    412412
    413413                // Get the field value from the $_POST array.
  • extra-product-data-for-woocommerce/trunk/README.md

    r3460848 r3460992  
    44
    55# Woocommerce Extra Product Data
     6![WordPress Plugin Version](https://img.shields.io/wordpress/plugin/v/extra-product-data-for-woocommerce)
     7![WordPress Plugin Downloads](https://img.shields.io/wordpress/plugin/dt/extra-product-data-for-woocommerce)
     8![WordPress Tested](https://img.shields.io/wordpress/plugin/tested/extra-product-data-for-woocommerce)
     9![License](https://img.shields.io/github/license/triopsi/extra-product-data-for-woocommerce)
     10![Issues](https://img.shields.io/github/issues/triopsi/extra-product-data-for-woocommerce)
     11![GitHub Release](https://img.shields.io/github/v/release/triopsi/extra-product-data-for-woocommerce)
     12![GitHub Actions](https://img.shields.io/github/actions/workflow/status/triopsi/extra-product-data-for-woocommerce/release.yml)
    613
    714- [Woocommerce Extra Product Data](#woocommerce-extra-product-data)
     
    1017  - [Features](#features)
    1118  - [Installation](#installation)
     19  - [Support](#support)
    1220- [Frequently Asked Questions](#frequently-asked-questions)
    1321- [Can the fields be customized?](#can-the-fields-be-customized)
     
    2331| Tested up to |  6.x |
    2432| Requires PHP |  > 8.2 |
    25 | Stable tag | 1.8.1 |
     33| Stable tag | 1.8.2 |
    2634| License |  GPLv2 or later |
    2735| License URI |  https://www.gnu.org/licenses/gpl-2.0.html |
     
    55633. Go to any WooCommerce product page to see the additional input fields.
    5664
     65## Support
     66
     67This repository is used for development and issue tracking.
     68
     69If you need help using the plugin, please use the WordPress.org support forum:
     70
     71https://wordpress.org/support/plugin/extra-product-data-for-woocommerce/
     72
     73Bug reports and feature requests are welcome here on GitHub.
    5774# Frequently Asked Questions
    5875
  • extra-product-data-for-woocommerce/trunk/extra-product-data-for-woocommerce.php

    r3460848 r3460992  
    33 * Plugin Name: Extra Product Data for WooCommerce
    44 * Description: Adds customizable input fields per product in WooCommerce, allowing users to enter extra details on the frontend .
    5  * Version: 1.8.1
     5 * Version: 1.8.2
    66 * Author: Triopsi
    77 * Author URI: https:// triopsi.dev
  • extra-product-data-for-woocommerce/trunk/readme.txt

    r3460848 r3460992  
    55Tested up to: 6.7
    66Requires PHP: 8.2
    7 Stable tag: 1.8.1
     7Stable tag: 1.8.2
    88License: GPLv2 or later
    99License 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  
    283283
    284284                // 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'] ) ) ) );
    286286
    287287                // Get the field value from the $_POST array.
     
    409409
    410410                // 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'] ) ) ) );
    412412
    413413                // Get the field value from the $_POST array.
Note: See TracChangeset for help on using the changeset viewer.