Changeset 3325231
- Timestamp:
- 07/09/2025 08:10:56 PM (9 months ago)
- Location:
- find-your-fit
- Files:
-
- 34 added
- 4 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/admin (added)
-
tags/1.0.2/admin/admin-page.php (added)
-
tags/1.0.2/assets (added)
-
tags/1.0.2/assets/css (added)
-
tags/1.0.2/assets/css/fyffw-button-style-1.css (added)
-
tags/1.0.2/assets/css/fyffw-button-style-2.css (added)
-
tags/1.0.2/assets/css/fyffw-button-style-3.css (added)
-
tags/1.0.2/assets/css/fyffw-button-style-4.css (added)
-
tags/1.0.2/assets/css/fyffw-button-style-5.css (added)
-
tags/1.0.2/assets/css/fyffw-button-style-6.css (added)
-
tags/1.0.2/assets/css/fyffw-button-style-7.css (added)
-
tags/1.0.2/assets/css/fyffw-button-style-8.css (added)
-
tags/1.0.2/assets/images (added)
-
tags/1.0.2/assets/images/button-image-2.png (added)
-
tags/1.0.2/assets/images/button-image-3.png (added)
-
tags/1.0.2/assets/images/button-image-4.png (added)
-
tags/1.0.2/assets/images/button-image-5.png (added)
-
tags/1.0.2/assets/images/button-image-6.png (added)
-
tags/1.0.2/assets/images/button-image-7.png (added)
-
tags/1.0.2/assets/images/button-image-8.png (added)
-
tags/1.0.2/assets/images/button-image.png (added)
-
tags/1.0.2/assets/js (added)
-
tags/1.0.2/assets/js/fyffw-button-increase-size.js (added)
-
tags/1.0.2/assets/js/fyffw-button-reduce-size.js (added)
-
tags/1.0.2/assets/js/fyffw-button.js (added)
-
tags/1.0.2/assets/js/fyffw-category-search.js (added)
-
tags/1.0.2/find-your-fit.php (added)
-
tags/1.0.2/includes (added)
-
tags/1.0.2/includes/product-metabox.php (added)
-
tags/1.0.2/includes/single-product-button.php (added)
-
tags/1.0.2/languages (added)
-
tags/1.0.2/languages/find-your-fit.pot (added)
-
tags/1.0.2/readme.txt (added)
-
trunk/admin/admin-page.php (modified) (1 diff)
-
trunk/find-your-fit.php (modified) (2 diffs)
-
trunk/includes/single-product-button.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
find-your-fit/trunk/admin/admin-page.php
r3165938 r3325231 145 145 146 146 function fyffw_register_settings() { 147 register_setting( 'fyffw_settings_group', 'fyffwSelectVariation' ); 148 register_setting( 'fyffw_settings_group', 'fyffwSelectCategory' ); 149 register_setting( 'fyffw_settings_group', 'fyffwSelectStyle' ); 150 register_setting( 'fyffw_settings_group', 'fyffwSelectLocation' ); 151 register_setting( 'fyffw_settings_group', 'fyffwSizeLocation' ); 152 } 153 add_action( 'admin_init', 'fyffw_register_settings'); 147 register_setting( 148 'fyffw_settings_group', 149 'fyffwSelectVariation', 150 array( 151 'type' => 'string', 152 'sanitize_callback' => 'sanitize_text_field', 153 ) 154 ); 155 register_setting( 156 'fyffw_settings_group', 157 'fyffwSelectCategory', 158 array( 159 'type' => 'string', 160 'sanitize_callback' => 'sanitize_text_field', 161 ) 162 ); 163 register_setting( 164 'fyffw_settings_group', 165 'fyffwSelectStyle', 166 array( 167 'type' => 'string', 168 'sanitize_callback' => 'sanitize_text_field', 169 ) 170 ); 171 register_setting( 172 'fyffw_settings_group', 173 'fyffwSelectLocation', 174 array( 175 'type' => 'string', 176 'sanitize_callback' => 'sanitize_text_field', 177 ) 178 ); 179 register_setting( 180 'fyffw_settings_group', 181 'fyffwSizeLocation', 182 array( 183 'type' => 'string', 184 'sanitize_callback' => 'sanitize_text_field', 185 ) 186 ); 187 } 188 add_action( 'admin_init', 'fyffw_register_settings' ); 154 189 155 190 // Variations hide function -
find-your-fit/trunk/find-your-fit.php
r3324163 r3325231 3 3 * Plugin Name: Size Recommendation, Size Calculator, Find Size - Find Your Fit 4 4 * Description: Size Recommendation Calculator. 5 * Version: 1.0. 15 * Version: 1.0.2 6 6 * Author: Brksoft 7 7 * Author URI: https://brksoft.com 8 8 * Text Domain: find-your-fit 9 9 * Domain Path: /languages 10 * Requires at least: 6.0 11 * Requires PHP: 7.4 10 12 * License: GPL-2.0+ 11 13 * License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 32 34 wp_enqueue_style( 'woocommerce_admin_styles' ); 33 35 34 wp_enqueue_script( 'find-your-fit-script', plugin_dir_url( __FILE__ ) . 'assets/js/fyffw-category-search.js', array( 'jquery', 'wc-enhanced-select' ), '1.0. 1', true );36 wp_enqueue_script( 'find-your-fit-script', plugin_dir_url( __FILE__ ) . 'assets/js/fyffw-category-search.js', array( 'jquery', 'wc-enhanced-select' ), '1.0.2', true ); 35 37 } 36 38 add_action( 'admin_enqueue_scripts', 'fyffw_admin_enqueue_scripts' ); -
find-your-fit/trunk/includes/single-product-button.php
r3165938 r3325231 58 58 <button id="closeButton">' . esc_html__('Close', 'find-your-fit') . '</button> 59 59 </div>'; 60 ?> -
find-your-fit/trunk/readme.txt
r3324163 r3325231 1 === Size Guide, Fit Finder, Size Recommendation, Product Size Chart & Measurement Plugin – Find Your Fit ===1 === BRK Size Guide, Fit Finder, Size Recommendation, Product Size Chart === 2 2 Contributors: brksoft 3 3 Donate link: https://brksoft.com/ 4 4 Tags: product size, size recommendation, find size, size chart, size calculator 5 5 Requires at least: 5.0 6 Tested up to: 6. 66 Tested up to: 6.8 7 7 Requires PHP: 7.2 8 Stable tag: 1.0. 18 Stable tag: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 69 69 == Changelog == 70 70 71 = 1.0.2 = 72 * Fix plugin all problems. 73 71 74 = 1.0.1 = 72 75 * Fix plugin name problem. … … 80 83 == Upgrade Notice == 81 84 82 = 1.0. 1=85 = 1.0.2 = 83 86 Fix plugin name problem. 84 87
Note: See TracChangeset
for help on using the changeset viewer.