Changeset 3325229
- Timestamp:
- 07/09/2025 08:03:20 PM (9 months ago)
- Location:
- racar-clear-cart-for-woocommerce
- Files:
-
- 36 added
- 5 deleted
- 3 edited
-
tags/2.1.4 (added)
-
tags/2.1.4/css (added)
-
tags/2.1.4/css/rccwoo-stylesheet.css (added)
-
tags/2.1.4/includes (added)
-
tags/2.1.4/includes/admin (added)
-
tags/2.1.4/includes/admin/class-rccwoo_Action_List.php (added)
-
tags/2.1.4/includes/admin/class-rccwoo_Admin_Options.php (added)
-
tags/2.1.4/includes/admin/css (added)
-
tags/2.1.4/includes/admin/css/rccwoo-admin-style.css (added)
-
tags/2.1.4/includes/admin/js (added)
-
tags/2.1.4/includes/admin/js/rccwoo-admin-javascript.js (added)
-
tags/2.1.4/includes/admin/views (added)
-
tags/2.1.4/includes/admin/views/html-notice-missing-woocommerce.php (added)
-
tags/2.1.4/includes/class-rccwoo-plugin.php (added)
-
tags/2.1.4/includes/rccwoo-functions.php (added)
-
tags/2.1.4/includes/views (added)
-
tags/2.1.4/includes/views/class-racar-clear-cart-button.php (added)
-
tags/2.1.4/js (added)
-
tags/2.1.4/js/rccwoo-javascript.js (added)
-
tags/2.1.4/languages (added)
-
tags/2.1.4/languages/rccwoo-textdomain-es_ES.mo (added)
-
tags/2.1.4/languages/rccwoo-textdomain-es_ES.po (added)
-
tags/2.1.4/languages/rccwoo-textdomain-pt_BR.mo (added)
-
tags/2.1.4/languages/rccwoo-textdomain-pt_BR.po (added)
-
tags/2.1.4/languages/rccwoo-textdomain.pot (added)
-
tags/2.1.4/license.txt (added)
-
tags/2.1.4/racar-clear-cart-for-woocommerce.php (added)
-
tags/2.1.4/readme.txt (added)
-
tags/2.1.4/uninstall.php (added)
-
trunk/includes/admin/class-rccwoo_Admin_Options.php (modified) (5 diffs)
-
trunk/languages/racar-clear-cart-for-woocommerce-es_ES.l10n.php (added)
-
trunk/languages/racar-clear-cart-for-woocommerce-es_ES.mo (added)
-
trunk/languages/racar-clear-cart-for-woocommerce-es_ES.po (added)
-
trunk/languages/racar-clear-cart-for-woocommerce-pt_BR.l10n.php (added)
-
trunk/languages/racar-clear-cart-for-woocommerce-pt_BR.mo (added)
-
trunk/languages/racar-clear-cart-for-woocommerce-pt_BR.po (added)
-
trunk/languages/racar-clear-cart-for-woocommerce.pot (added)
-
trunk/languages/rccwoo-textdomain-es_ES.mo (deleted)
-
trunk/languages/rccwoo-textdomain-es_ES.po (deleted)
-
trunk/languages/rccwoo-textdomain-pt_BR.mo (deleted)
-
trunk/languages/rccwoo-textdomain-pt_BR.po (deleted)
-
trunk/languages/rccwoo-textdomain.pot (deleted)
-
trunk/racar-clear-cart-for-woocommerce.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
racar-clear-cart-for-woocommerce/trunk/includes/admin/class-rccwoo_Admin_Options.php
r2891545 r3325229 165 165 add_settings_field( 166 166 'rccwoo_radiobox_1', 167 '<span class="option-name">' . __( 'Side (float)', 'racar-clear-cart-for-woocommerce' ) . '<span class="quick-exp">(' . __( 'Choose at what side from the update cart button<br>should the clear cart button be', 'racar-clear-cart-for-woocommerce' ) . ')</span></span>', 167 sprintf( 168 '<span class="option-name">%s<span class="quick-exp">(%s<br>%s)</span></span>', 169 __( 'Side (float)', 'racar-clear-cart-for-woocommerce' ), 170 __( 'Choose at what side from the update cart button', 'racar-clear-cart-for-woocommerce' ), 171 __( 'should the clear cart button be', 'racar-clear-cart-for-woocommerce' ) 172 ), 168 173 array( $this , 'rccwoo_radiobox_1_render' ), 169 174 'rccwoo-options-page', … … 294 299 // } 295 300 // } 296 if( isset( $input['rccwoo_background'] ) ) {301 if( isset( $input['rccwoo_background'] ) AND ! empty( $input['rccwoo_background'] ) ) { 297 302 $background = trim( $input['rccwoo_background'] ); 298 303 $background = strip_tags( stripslashes( $background ) ); … … 304 309 } 305 310 306 if( isset( $input['rccwoo_background_hover_color'] ) ) {311 if( isset( $input['rccwoo_background_hover_color'] ) AND ! empty( $input['rccwoo_background_hover_color'] ) ) { 307 312 $background = trim( $input['rccwoo_background_hover_color'] ); 308 313 $background = strip_tags( stripslashes( $background ) ); … … 314 319 } 315 320 316 if( isset( $input['rccwoo_text_color'] ) ) {321 if( isset( $input['rccwoo_text_color'] ) AND ! empty( $input['rccwoo_text_color'] ) ) { 317 322 $textcolor = trim( $input['rccwoo_text_color'] ); 318 323 $textcolor = strip_tags( stripslashes( $textcolor ) ); … … 324 329 } 325 330 326 if( isset( $input['rccwoo_hover_text_color'] ) ) {331 if( isset( $input['rccwoo_hover_text_color'] ) AND ! empty( $input['rccwoo_hover_text_color'] ) ) { 327 332 $textcolor = trim( $input['rccwoo_hover_text_color'] ); 328 333 $textcolor = strip_tags( stripslashes( $textcolor ) ); -
racar-clear-cart-for-woocommerce/trunk/racar-clear-cart-for-woocommerce.php
r3271929 r3325229 4 4 * Plugin URI: https://github.com/rafacarvalhido/racar-clear-cart-woo 5 5 * Description: This plugin adds a convenient button to empty the shopping cart. Clear the entire cart with one click. 6 * Version: 2.1. 46 * Version: 2.1.5 7 7 * Author: Rafa Carvalhido 8 * Author URI: https://pro gramawordpress.pro.br/blog/contato/rafa-carvalhido/8 * Author URI: https://profissionalwp.dev.br/blog/contato/rafa-carvalhido/ 9 9 * Text Domain: racar-clear-cart-for-woocommerce 10 10 * Domain Path: /languages 11 11 * Requires at least: 4.9.8 12 * Tested up to: 6. 7.212 * Tested up to: 6.8.1 13 13 * WC requires at least: 3.0.0 14 * WC tested up to: 9. 8.114 * WC tested up to: 9.9.5 15 15 * Requires Plugins: woocommerce 16 16 * Requires PHP: 7.4 -
racar-clear-cart-for-woocommerce/trunk/readme.txt
r3271929 r3325229 4 4 Tags: empty cart, clear cart, cart, woo commerce, woocommerce 5 5 Requires at least: 4.9.8 6 Tested up to: 6. 7.27 Stable tag: 2.1. 48 WC tested up to: 9. 8.16 Tested up to: 6.8.1 7 Stable tag: 2.1.5 8 WC tested up to: 9.9.5 9 9 Requires Plugins: woocommerce 10 10 Requires PHP: 7.4 … … 117 117 118 118 == Changelog == 119 = 2.1.5 - 2025-07-09 = 120 * Update - Tested on latest and greatest -> WP 6.8.1 and WC 9.9.5 121 * Update - Update of internationalization files 122 * Update - Update of translations (pt-BR and es-ES) 123 * Update - Update of author URL 124 * Fix - Fixed minor error when options have not been chosen yet 125 126 119 127 = 2.1.4 - 2025-04-13 = 120 128 * Update - Tested on latest and greatest -> WP 6.7.2 and WC 9.8.1
Note: See TracChangeset
for help on using the changeset viewer.