Changeset 3235681
- Timestamp:
- 02/05/2025 09:01:10 PM (14 months ago)
- Location:
- art-woocommerce-order-one-click
- Files:
-
- 10 edited
- 1 copied
-
tags/3.1.4 (copied) (copied from art-woocommerce-order-one-click/trunk)
-
tags/3.1.4/art-woo-order-one-click.php (modified) (1 diff)
-
tags/3.1.4/classes/Prepare/Popup.php (modified) (1 diff)
-
tags/3.1.4/includes/create-cf7-field.php (modified) (5 diffs)
-
tags/3.1.4/readme.txt (modified) (1 diff)
-
tags/3.1.4/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/art-woo-order-one-click.php (modified) (1 diff)
-
trunk/classes/Prepare/Popup.php (modified) (1 diff)
-
trunk/includes/create-cf7-field.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
art-woocommerce-order-one-click/tags/3.1.4/art-woo-order-one-click.php
r3235619 r3235681 6 6 * Domain Path: /languages 7 7 * Description: Plugin for WooCommerce. It includes the catalog mode in the store (there are no prices and the Buy button) and can turn on the Buy/Order button in one click. WooCommerce and Contact Form 7 are required for proper operation. 8 * Version: 3.1. 38 * Version: 3.1.4 9 9 * Author: Artem Abramovich 10 10 * Author URI: https://wpruse.ru/ -
art-woocommerce-order-one-click/tags/3.1.4/classes/Prepare/Popup.php
r3235619 r3235681 191 191 $negative = $price < 0; 192 192 $formatted_price = ( $negative ? '-' : '' ) . sprintf( 193 $args['price_format'],194 '<span class="woocommerce-Price-currencySymbol">' . get_woocommerce_currency_symbol( $args['currency'] ) . '</span>',195 '<span class="woocommerce-Price-currencyValue">' . $price . '</span>'196 );193 $args['price_format'], 194 '<span class="woocommerce-Price-currencySymbol">' . get_woocommerce_currency_symbol( $args['currency'] ) . '</span>', 195 '<span class="woocommerce-Price-currencyValue">' . $price . '</span>' 196 ); 197 197 198 198 return '<span class="woocommerce-Price-amount amount"><bdi>' . $formatted_price . '</bdi></span>'; -
art-woocommerce-order-one-click/tags/3.1.4/includes/create-cf7-field.php
r3232179 r3235681 52 52 $atts['name'] = $tag->name; 53 53 $atts = wpcf7_format_atts( $atts ); 54 $html = sprintf( '<span class="wpcf7-form-control-wrap %1$s"><textarea %2$s></textarea></span>', sanitize_html_class( $tag->name ), $atts );55 54 56 $html .= sprintf( '<input type="hidden" name="%1$s" value="" class="awooc-hidden-product-id">', 'awooc_product_id' ); 57 $html .= sprintf( '<input type="hidden" name="%1$s" value="" class="awooc-hidden-product-qty">', 'awooc_product_qty' ); 58 59 return $html; 55 return sprintf( '<span class="wpcf7-form-control-wrap %1$s"><textarea %2$s></textarea></span>', sanitize_html_class( $tag->name ), $atts ); 60 56 } 61 57 … … 130 126 name="name" 131 127 class="tg-name oneline" 132 id="tag-generator-panel-awooc_hidden-name"/></td> 128 id="tag-generator-panel-awooc_hidden-name" 129 /></td> 133 130 </tr> 134 131 </tbody> … … 145 142 class="tag code" 146 143 readonly="readonly" 147 onfocus="this.select()"/> 144 onfocus="this.select()" 145 /> 148 146 </label> 149 147 … … 152 150 type="button" 153 151 class="button button-primary insert-tag" 154 value="<?php echo esc_attr( __( 'Insert Tag', 'contact-form-7' ) ); ?>"/> 152 value="<?php echo esc_attr( __( 'Insert Tag', 'contact-form-7' ) ); ?>" 153 /> 155 154 </div> 156 155 157 <br class="clear" />156 <br class="clear" /> 158 157 159 158 <p class="description mail-tag"><label 160 for="tag-generator-panel-mailtag"> 159 for="tag-generator-panel-mailtag" 160 > 161 161 <?php 162 162 … … 174 174 class="mail-tag code hidden" 175 175 readonly="readonly" 176 id="tag-generator-panel-mailtag"/></label></p> 176 id="tag-generator-panel-mailtag" 177 /></label></p> 177 178 </div> 178 179 <?php -
art-woocommerce-order-one-click/tags/3.1.4/readme.txt
r3235619 r3235681 5 5 Requires at least: 5.5 6 6 Tested up to: 6.7 7 Stable tag: 3.1. 37 Stable tag: 3.1.4 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later -
art-woocommerce-order-one-click/tags/3.1.4/vendor/composer/installed.php
r3235619 r3235681 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 4b1a0af0f10598a34657d75459fb512dfb2107ae',6 'reference' => 'ba82ddb0c6f1beaf13079b8eeb37cc31aefdf55b', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-master', 15 15 'version' => 'dev-master', 16 'reference' => ' 4b1a0af0f10598a34657d75459fb512dfb2107ae',16 'reference' => 'ba82ddb0c6f1beaf13079b8eeb37cc31aefdf55b', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
art-woocommerce-order-one-click/trunk/art-woo-order-one-click.php
r3235619 r3235681 6 6 * Domain Path: /languages 7 7 * Description: Plugin for WooCommerce. It includes the catalog mode in the store (there are no prices and the Buy button) and can turn on the Buy/Order button in one click. WooCommerce and Contact Form 7 are required for proper operation. 8 * Version: 3.1. 38 * Version: 3.1.4 9 9 * Author: Artem Abramovich 10 10 * Author URI: https://wpruse.ru/ -
art-woocommerce-order-one-click/trunk/classes/Prepare/Popup.php
r3235619 r3235681 191 191 $negative = $price < 0; 192 192 $formatted_price = ( $negative ? '-' : '' ) . sprintf( 193 $args['price_format'],194 '<span class="woocommerce-Price-currencySymbol">' . get_woocommerce_currency_symbol( $args['currency'] ) . '</span>',195 '<span class="woocommerce-Price-currencyValue">' . $price . '</span>'196 );193 $args['price_format'], 194 '<span class="woocommerce-Price-currencySymbol">' . get_woocommerce_currency_symbol( $args['currency'] ) . '</span>', 195 '<span class="woocommerce-Price-currencyValue">' . $price . '</span>' 196 ); 197 197 198 198 return '<span class="woocommerce-Price-amount amount"><bdi>' . $formatted_price . '</bdi></span>'; -
art-woocommerce-order-one-click/trunk/includes/create-cf7-field.php
r3232179 r3235681 52 52 $atts['name'] = $tag->name; 53 53 $atts = wpcf7_format_atts( $atts ); 54 $html = sprintf( '<span class="wpcf7-form-control-wrap %1$s"><textarea %2$s></textarea></span>', sanitize_html_class( $tag->name ), $atts );55 54 56 $html .= sprintf( '<input type="hidden" name="%1$s" value="" class="awooc-hidden-product-id">', 'awooc_product_id' ); 57 $html .= sprintf( '<input type="hidden" name="%1$s" value="" class="awooc-hidden-product-qty">', 'awooc_product_qty' ); 58 59 return $html; 55 return sprintf( '<span class="wpcf7-form-control-wrap %1$s"><textarea %2$s></textarea></span>', sanitize_html_class( $tag->name ), $atts ); 60 56 } 61 57 … … 130 126 name="name" 131 127 class="tg-name oneline" 132 id="tag-generator-panel-awooc_hidden-name"/></td> 128 id="tag-generator-panel-awooc_hidden-name" 129 /></td> 133 130 </tr> 134 131 </tbody> … … 145 142 class="tag code" 146 143 readonly="readonly" 147 onfocus="this.select()"/> 144 onfocus="this.select()" 145 /> 148 146 </label> 149 147 … … 152 150 type="button" 153 151 class="button button-primary insert-tag" 154 value="<?php echo esc_attr( __( 'Insert Tag', 'contact-form-7' ) ); ?>"/> 152 value="<?php echo esc_attr( __( 'Insert Tag', 'contact-form-7' ) ); ?>" 153 /> 155 154 </div> 156 155 157 <br class="clear" />156 <br class="clear" /> 158 157 159 158 <p class="description mail-tag"><label 160 for="tag-generator-panel-mailtag"> 159 for="tag-generator-panel-mailtag" 160 > 161 161 <?php 162 162 … … 174 174 class="mail-tag code hidden" 175 175 readonly="readonly" 176 id="tag-generator-panel-mailtag"/></label></p> 176 id="tag-generator-panel-mailtag" 177 /></label></p> 177 178 </div> 178 179 <?php -
art-woocommerce-order-one-click/trunk/readme.txt
r3235619 r3235681 5 5 Requires at least: 5.5 6 6 Tested up to: 6.7 7 Stable tag: 3.1. 37 Stable tag: 3.1.4 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later -
art-woocommerce-order-one-click/trunk/vendor/composer/installed.php
r3235619 r3235681 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 4b1a0af0f10598a34657d75459fb512dfb2107ae',6 'reference' => 'ba82ddb0c6f1beaf13079b8eeb37cc31aefdf55b', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-master', 15 15 'version' => 'dev-master', 16 'reference' => ' 4b1a0af0f10598a34657d75459fb512dfb2107ae',16 'reference' => 'ba82ddb0c6f1beaf13079b8eeb37cc31aefdf55b', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.