Changeset 3175954
- Timestamp:
- 10/26/2024 06:37:08 AM (17 months ago)
- Location:
- quick-buy-now-button-for-woocommerce
- Files:
-
- 16 added
- 5 edited
-
tags/1.0.14 (added)
-
tags/1.0.14/includes (added)
-
tags/1.0.14/includes/admin (added)
-
tags/1.0.14/includes/admin/class-woo_buy_now_button_settings.php (added)
-
tags/1.0.14/includes/admin/js (added)
-
tags/1.0.14/includes/admin/js/scripts.js (added)
-
tags/1.0.14/includes/class-woo_buy_now_button.php (added)
-
tags/1.0.14/includes/class-woo_buy_now_button_backend.php (added)
-
tags/1.0.14/includes/class-woo_buy_now_button_frontend.php (added)
-
tags/1.0.14/includes/themes-support.php (added)
-
tags/1.0.14/index.php (added)
-
tags/1.0.14/languages (added)
-
tags/1.0.14/languages/woo-buy-now-button.pot (added)
-
tags/1.0.14/quick-buy-now-button-for-woocommerce.php (added)
-
tags/1.0.14/readme.txt (added)
-
tags/1.0.14/wpml-config.xml (added)
-
trunk/includes/admin/class-woo_buy_now_button_settings.php (modified) (3 diffs)
-
trunk/includes/admin/js/scripts.js (modified) (1 diff)
-
trunk/languages/woo-buy-now-button.pot (modified) (8 diffs)
-
trunk/quick-buy-now-button-for-woocommerce.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-buy-now-button-for-woocommerce/trunk/includes/admin/class-woo_buy_now_button_settings.php
r2970069 r3175954 94 94 array( 95 95 'id' => 'wbnb_redirect_location', 96 'type' => ' select',96 'type' => 'radio', 97 97 'title' => esc_html__( 'Redirect Location', 'woo-buy-now-button' ), 98 98 'desc_tip' => esc_html__( 'Select redirect location to after click buy now button.', 'woo-buy-now-button' ), 99 'class' => 'wc-enhanced-select',99 // 'class' => 'wc-enhanced-select', 100 100 'default' => 'checkout', 101 101 'options' => array( 102 'checkout' => esc_html__( 'Checkout Page', 'woo-buy-now-button' ), 103 'cart' => esc_html__( 'Cart Page', 'woo-buy-now-button' ), 104 'custom' => esc_html__( 'Custom Page', 'woo-buy-now-button' ), 102 'checkout' => esc_html__( 'Checkout Page', 'woo-buy-now-button' ), 103 'cart' => esc_html__( 'Cart Page', 'woo-buy-now-button' ), 104 'custom' => esc_html__( 'Custom Page', 'woo-buy-now-button' ), 105 // 'popup-cart' => esc_html__( 'Popup Cart', 'woo-buy-now-button' ), 106 // 'popup-checkout' => esc_html__( 'Popup Checkout', 'woo-buy-now-button' ), 105 107 ), 106 108 ), … … 137 139 'type' => 'checkbox', 138 140 'title' => esc_html__( 'Auto Reset Cart', 'woo-buy-now-button' ), 139 'desc' => esc_html__( ' Reset the Cart Before Doing Buy Now.', 'woo-buy-now-button' ),141 'desc' => esc_html__( 'Clear the cart when clicked Buy Now button.', 'woo-buy-now-button' ), 140 142 'default' => 'no' 141 143 ), … … 213 215 array( 214 216 'id' => 'wbnb_button_style', 215 'type' => ' select',216 'class' => 'wc-enhanced-select',217 'type' => 'radio', 218 //'class' => 'wc-enhanced-select', 217 219 'title' => esc_html__( 'Button Styles', 'woo-buy-now-button' ), 218 'desc ' => esc_html__( 'Choose button style.', 'woo-buy-now-button' ),220 'desc_tip' => esc_html__( 'Choose button style.', 'woo-buy-now-button' ), 219 221 'default' => 'default', 220 222 'options' => array( -
quick-buy-now-button-for-woocommerce/trunk/includes/admin/js/scripts.js
r2756741 r3175954 1 1 (function ($) { 2 2 $( function() { 3 // Global custom redirect URL field Hide/Show 4 // $( 'select#wbnb_redirect_location' ).on( 'change', function() { 5 // if ( 'custom' === $( this ).val() ) { 6 // $( this ).closest('tr').next( 'tr' ).show(); 7 // } else { 8 // $( this ).closest('tr').next( 'tr' ).hide(); 9 // } 10 // }).trigger( 'change' ); 3 11 4 // Global custom redirect URL field Hide/Show5 $( 'select#wbnb_redirect_location' ).on( 'change', function() {6 if ( 'custom' === $( this ).val() ) {7 $( this ).closest('tr').next( 'tr' ).show(); 8 } else{9 $( this ).closest('tr').next( 'tr').hide();12 13 $( window ).on( 'load', function() { 14 let redirectLocation = $('input[type=radio][name=wbnb_redirect_location]:checked').val(); 15 16 if ( 'custom' !== redirectLocation ) { 17 $( '#wbnb_custom_redirect_url' ).closest('tr').hide(); 10 18 } 11 }).trigger( 'change' ); 19 }); 20 21 $( 'input[type=radio][name=wbnb_redirect_location]' ).on( 'change', function() { 22 let val = $( this ).val(); 23 let customUrlField = $( '#wbnb_custom_redirect_url' ).closest('tr'); 24 25 customUrlField.hide(); 26 27 if ( 'custom' === val ) { 28 customUrlField.show(); 29 } 30 }); 12 31 13 32 // Product level custom redirect URL field Hide/Show -
quick-buy-now-button-for-woocommerce/trunk/languages/woo-buy-now-button.pot
r3010746 r3175954 4 4 "Project-Id-Version: Quick Buy Now Button for WooCommerce\n" 5 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 202 3-01-27 08:26+0000\n"6 "POT-Creation-Date: 2024-10-26 06:29+0000\n" 7 7 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 8 8 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 17 17 "X-Domain: woo-buy-now-button" 18 18 19 #: quick-buy-now-button-for-woocommerce.php:5 019 #: quick-buy-now-button-for-woocommerce.php:54 20 20 msgid "<strong>Quick Buy Now Button for WooCommerce</strong> is an add-on of " 21 msgstr "" 22 23 #: includes/admin/class-woo_buy_now_button_settings.php:77 24 #: includes/admin/class-woo_buy_now_button_settings.php:90 25 msgid "After Add to Cart Button" 26 msgstr "" 27 28 #: includes/admin/class-woo_buy_now_button_settings.php:140 29 msgid "Auto Reset Cart" 21 30 msgstr "" 22 31 23 32 #: includes/admin/class-woo_buy_now_button_settings.php:76 24 33 #: includes/admin/class-woo_buy_now_button_settings.php:89 25 msgid "After Add to Cart Button"26 msgstr ""27 28 #: includes/admin/class-woo_buy_now_button_settings.php:13729 msgid "Auto Reset Cart"30 msgstr ""31 32 #: includes/admin/class-woo_buy_now_button_settings.php:7533 #: includes/admin/class-woo_buy_now_button_settings.php:8834 34 msgid "Before Add to Cart Button" 35 35 msgstr "" 36 36 37 #: includes/admin/class-woo_buy_now_button_settings.php:24 237 #: includes/admin/class-woo_buy_now_button_settings.php:248 38 38 msgid "Border Color" 39 39 msgstr "" 40 40 41 #: includes/admin/class-woo_buy_now_button_settings.php:2 6241 #: includes/admin/class-woo_buy_now_button_settings.php:271 42 42 msgid "Border Radius" 43 43 msgstr "" 44 44 45 #: includes/admin/class-woo_buy_now_button_settings.php:2 4945 #: includes/admin/class-woo_buy_now_button_settings.php:257 46 46 msgid "Border size" 47 47 msgstr "" 48 48 49 #: includes/admin/class-woo_buy_now_button_settings.php:8 149 #: includes/admin/class-woo_buy_now_button_settings.php:82 50 50 msgid "Button Position on Shop" 51 51 msgstr "" 52 52 53 #: includes/admin/class-woo_buy_now_button_settings.php:7 153 #: includes/admin/class-woo_buy_now_button_settings.php:72 54 54 msgid "Button Position on Single" 55 55 msgstr "" 56 56 57 57 #: includes/admin/class-woo_buy_now_button_settings.php:27 58 #: includes/admin/class-woo_buy_now_button_settings.php:21 658 #: includes/admin/class-woo_buy_now_button_settings.php:219 59 59 msgid "Button Styles" 60 60 msgstr "" 61 61 62 #: includes/class-woo_buy_now_button_backend.php:1 8663 #: includes/admin/class-woo_buy_now_button_settings.php:1 1762 #: includes/class-woo_buy_now_button_backend.php:195 63 #: includes/admin/class-woo_buy_now_button_settings.php:120 64 64 msgid "Button Text" 65 65 msgstr "" 66 66 67 #: includes/class-woo_buy_now_button_backend.php:1 0368 #: includes/class-woo_buy_now_button_backend.php:1 2167 #: includes/class-woo_buy_now_button_backend.php:112 68 #: includes/class-woo_buy_now_button_backend.php:130 69 69 #: includes/admin/class-woo_buy_now_button_settings.php:14 70 70 msgid "Buy Now Button" 71 71 msgstr "" 72 72 73 #: includes/class-woo_buy_now_button_backend.php:1 0273 #: includes/class-woo_buy_now_button_backend.php:111 74 74 msgid "Buy Now Button Settings" 75 75 msgstr "" 76 76 77 #: includes/admin/class-woo_buy_now_button_settings.php:2 0977 #: includes/admin/class-woo_buy_now_button_settings.php:212 78 78 msgid "Buy Now Button Styles" 79 79 msgstr "" 80 80 81 #: includes/admin/class-woo_buy_now_button_settings.php:103 82 msgid "Cart Page" 83 msgstr "" 84 85 #: includes/class-woo_buy_now_button_backend.php:206 86 msgid "Cart page" 87 msgstr "" 88 89 #: includes/class-woo_buy_now_button_backend.php:207 81 90 #: includes/admin/class-woo_buy_now_button_settings.php:102 82 msgid "Cart Page"83 msgstr ""84 85 #: includes/class-woo_buy_now_button_backend.php:19786 msgid "Cart page"87 msgstr ""88 89 #: includes/class-woo_buy_now_button_backend.php:19890 #: includes/admin/class-woo_buy_now_button_settings.php:10191 91 msgid "Checkout Page" 92 92 msgstr "" 93 93 94 #: includes/admin/class-woo_buy_now_button_settings.php:2 1794 #: includes/admin/class-woo_buy_now_button_settings.php:220 95 95 msgid "Choose button style." 96 96 msgstr "" 97 97 98 #: includes/admin/class-woo_buy_now_button_settings.php:17 498 #: includes/admin/class-woo_buy_now_button_settings.php:177 99 99 msgid "Choose specific category(s)." 100 100 msgstr "" 101 101 102 #: includes/admin/class-woo_buy_now_button_settings.php:16 0102 #: includes/admin/class-woo_buy_now_button_settings.php:163 103 103 msgid "Choose specific product type(s)." 104 104 msgstr "" 105 105 106 #: includes/admin/class-woo_buy_now_button_settings.php:1 88106 #: includes/admin/class-woo_buy_now_button_settings.php:191 107 107 msgid "Choose specific product(s)." 108 108 msgstr "" 109 109 110 #: includes/class-woo_buy_now_button_backend.php:199 111 #: includes/admin/class-woo_buy_now_button_settings.php:103 110 #: includes/admin/class-woo_buy_now_button_settings.php:141 111 msgid "Clear the cart when clicked Buy Now button." 112 msgstr "" 113 114 #: includes/class-woo_buy_now_button_backend.php:208 115 #: includes/admin/class-woo_buy_now_button_settings.php:104 112 116 msgid "Custom Page" 113 117 msgstr "" 114 118 115 #: includes/admin/class-woo_buy_now_button_settings.php:11 0119 #: includes/admin/class-woo_buy_now_button_settings.php:113 116 120 msgid "Custom Redirect URL" 117 121 msgstr "" 118 122 119 #: includes/admin/class-woo_buy_now_button_settings.php:22 1123 #: includes/admin/class-woo_buy_now_button_settings.php:224 120 124 msgid "Custom Style" 121 125 msgstr "" 122 126 123 #: includes/class-woo_buy_now_button_backend.php:1 74124 #: includes/admin/class-woo_buy_now_button_settings.php:12 4127 #: includes/class-woo_buy_now_button_backend.php:183 128 #: includes/admin/class-woo_buy_now_button_settings.php:127 125 129 msgid "Default Shop Quantity" 126 130 msgstr "" 127 131 128 #: includes/admin/class-woo_buy_now_button_settings.php:22 0132 #: includes/admin/class-woo_buy_now_button_settings.php:223 129 133 msgid "Default Style" 130 134 msgstr "" 131 135 132 #: includes/class-woo_buy_now_button_backend.php:1 52136 #: includes/class-woo_buy_now_button_backend.php:161 133 137 msgid "Disable Buy Now Button" 134 138 msgstr "" 135 139 136 #: includes/admin/class-woo_buy_now_button_settings.php:15 5140 #: includes/admin/class-woo_buy_now_button_settings.php:158 137 141 msgid "Disable Buy Now Button Based on Specific Product Types." 138 142 msgstr "" 139 143 140 #: includes/class-woo_buy_now_button_backend.php:1 53144 #: includes/class-woo_buy_now_button_backend.php:162 141 145 msgid "Disable Buy Now Button for this product." 142 146 msgstr "" 143 147 144 #: includes/admin/class-woo_buy_now_button_settings.php:1 68148 #: includes/admin/class-woo_buy_now_button_settings.php:171 145 149 msgid "Disable on Categories" 146 150 msgstr "" 147 151 148 #: includes/admin/class-woo_buy_now_button_settings.php:15 4152 #: includes/admin/class-woo_buy_now_button_settings.php:157 149 153 msgid "Disable on Product Types" 150 154 msgstr "" 151 155 152 #: includes/admin/class-woo_buy_now_button_settings.php:18 2156 #: includes/admin/class-woo_buy_now_button_settings.php:185 153 157 msgid "Disable on Products" 154 158 msgstr "" 155 159 156 #: includes/class-woo_buy_now_button_backend.php: 83157 #: includes/admin/class-woo_buy_now_button_settings.php:4 6160 #: includes/class-woo_buy_now_button_backend.php:92 161 #: includes/admin/class-woo_buy_now_button_settings.php:45 158 162 msgid "Documentation" 159 163 msgstr "" 160 164 161 #: includes/admin/class-woo_buy_now_button_settings.php:60162 msgid "Enable Button on Shop"163 msgstr ""164 165 165 #: includes/admin/class-woo_buy_now_button_settings.php:54 166 msgid "Enable Button on Single"167 msgstr "" 168 169 #: includes/class-woo_buy_now_button_backend.php:2 09166 msgid "Enable Button on" 167 msgstr "" 168 169 #: includes/class-woo_buy_now_button_backend.php:218 170 170 msgid "Enter custom link only for custom redirect like Amazon product link." 171 171 msgstr "" 172 172 173 #: includes/class-woo_buy_now_button_backend.php:1 87173 #: includes/class-woo_buy_now_button_backend.php:196 174 174 msgid "Enter Text to Show on Buy Now button for this product." 175 175 msgstr "" 176 176 177 #: includes/admin/class-woo_buy_now_button_settings.php:2 75177 #: includes/admin/class-woo_buy_now_button_settings.php:285 178 178 msgid "Font size" 179 179 msgstr "" … … 183 183 msgstr "" 184 184 185 #: includes/class-woo_buy_now_button_backend.php: 84186 #: includes/admin/class-woo_buy_now_button_settings.php:4 7185 #: includes/class-woo_buy_now_button_backend.php:93 186 #: includes/admin/class-woo_buy_now_button_settings.php:46 187 187 msgid "Get Help & Support" 188 188 msgstr "" 189 189 190 #: includes/admin/class-woo_buy_now_button_settings.php:7 65190 #: includes/admin/class-woo_buy_now_button_settings.php:778 191 191 msgid "Get Pro Features" 192 192 msgstr "" 193 193 194 #: includes/class-woo_buy_now_button_backend.php: 196194 #: includes/class-woo_buy_now_button_backend.php:205 195 195 msgid "Global" 196 196 msgstr "" 197 197 198 #: includes/class-woo_buy_now_button_backend.php: 66198 #: includes/class-woo_buy_now_button_backend.php:70 199 199 msgid "Go Pro" 200 200 msgstr "" 201 201 202 #: includes/class-woo_buy_now_button_backend.php:1 59203 #: includes/admin/class-woo_buy_now_button_settings.php:14 5202 #: includes/class-woo_buy_now_button_backend.php:168 203 #: includes/admin/class-woo_buy_now_button_settings.php:148 204 204 msgid "Hide Add To Cart" 205 205 msgstr "" 206 206 207 #: includes/class-woo_buy_now_button_backend.php:16 0207 #: includes/class-woo_buy_now_button_backend.php:169 208 208 msgid "Hide Add To Cart Button for this product." 209 209 msgstr "" 210 210 211 #: includes/admin/class-woo_buy_now_button_settings.php:14 6211 #: includes/admin/class-woo_buy_now_button_settings.php:149 212 212 msgid "Hide Add To Cart Button from Single Product and Shop Page." 213 msgstr ""214 215 #. Author URI of the plugin216 msgid "http://wpxpress.net"217 213 msgstr "" 218 214 219 215 #. URI of the plugin 220 216 msgid "https://wordpress.org/plugins/quick-buy-now-button-for-woocommerce/" 217 msgstr "" 218 219 #. Author URI of the plugin 220 msgid "https://wpxpress.net" 221 221 msgstr "" 222 222 … … 228 228 msgstr "" 229 229 230 #: includes/admin/class-woo_buy_now_button_settings.php:2 87230 #: includes/admin/class-woo_buy_now_button_settings.php:298 231 231 msgid "Margin" 232 232 msgstr "" 233 233 234 #: includes/admin/class-woo_buy_now_button_settings.php: 294234 #: includes/admin/class-woo_buy_now_button_settings.php:306 235 235 msgid "Padding" 236 236 msgstr "" … … 240 240 msgstr "" 241 241 242 #: includes/class-woo_buy_now_button_backend.php:1 45242 #: includes/class-woo_buy_now_button_backend.php:154 243 243 #: includes/admin/class-woo_buy_now_button_settings.php:43 244 244 msgid "Quick Buy Now Button Settings" 245 245 msgstr "" 246 246 247 #: includes/class-woo_buy_now_button_backend.php:2 08247 #: includes/class-woo_buy_now_button_backend.php:217 248 248 msgid "Redirect Custom Link" 249 249 msgstr "" 250 250 251 #: includes/class-woo_buy_now_button_backend.php: 194252 #: includes/admin/class-woo_buy_now_button_settings.php:9 6251 #: includes/class-woo_buy_now_button_backend.php:203 252 #: includes/admin/class-woo_buy_now_button_settings.php:97 253 253 msgid "Redirect Location" 254 254 msgstr "" 255 255 256 #: includes/admin/class-woo_buy_now_button_settings.php:138 257 msgid "Reset the Cart Before Doing Buy Now." 258 msgstr "" 259 260 #: includes/admin/class-woo_buy_now_button_settings.php:86 256 #: includes/admin/class-woo_buy_now_button_settings.php:87 261 257 msgid "Select position where button will show on shop and archive page." 262 258 msgstr "" 263 259 264 #: includes/admin/class-woo_buy_now_button_settings.php:7 2260 #: includes/admin/class-woo_buy_now_button_settings.php:73 265 261 msgid "Select position where button will show on single product page." 266 262 msgstr "" 267 263 268 #: includes/admin/class-woo_buy_now_button_settings.php:9 7264 #: includes/admin/class-woo_buy_now_button_settings.php:98 269 265 msgid "Select redirect location to after click buy now button." 270 266 msgstr "" 271 267 272 #: includes/class-woo_buy_now_button_backend.php:2 01268 #: includes/class-woo_buy_now_button_backend.php:210 273 269 msgid "Select where to redirect for this product." 274 270 msgstr "" 275 271 276 #: includes/admin/class-woo_buy_now_button_settings.php:2 36272 #: includes/admin/class-woo_buy_now_button_settings.php:240 277 273 msgid "Set button background color." 278 274 msgstr "" 279 275 280 #: includes/admin/class-woo_buy_now_button_settings.php:24 3276 #: includes/admin/class-woo_buy_now_button_settings.php:249 281 277 msgid "Set button border color." 282 278 msgstr "" 283 279 284 #: includes/admin/class-woo_buy_now_button_settings.php:2 63280 #: includes/admin/class-woo_buy_now_button_settings.php:272 285 281 msgid "Set button border radius in px." 286 282 msgstr "" 287 283 288 #: includes/admin/class-woo_buy_now_button_settings.php:25 0284 #: includes/admin/class-woo_buy_now_button_settings.php:258 289 285 msgid "Set button border size in px." 290 286 msgstr "" 291 287 292 #: includes/admin/class-woo_buy_now_button_settings.php:2 29288 #: includes/admin/class-woo_buy_now_button_settings.php:232 293 289 msgid "Set button text color." 294 290 msgstr "" 295 291 296 #: includes/class-woo_buy_now_button_backend.php:1 75292 #: includes/class-woo_buy_now_button_backend.php:184 297 293 msgid "Set Default Quantity for this product on shop / archive page." 298 294 msgstr "" 299 295 300 #: includes/admin/class-woo_buy_now_button_settings.php:2 76296 #: includes/admin/class-woo_buy_now_button_settings.php:286 301 297 msgid "Set font size in px." 302 298 msgstr "" 303 299 304 #: includes/admin/class-woo_buy_now_button_settings.php:11 1300 #: includes/admin/class-woo_buy_now_button_settings.php:114 305 301 msgid "Set global custom URL to redirect." 306 302 msgstr "" 307 303 308 #: includes/admin/class-woo_buy_now_button_settings.php:2 88304 #: includes/admin/class-woo_buy_now_button_settings.php:299 309 305 msgid "Set margin value in px." 310 306 msgstr "" 311 307 312 #: includes/admin/class-woo_buy_now_button_settings.php: 295308 #: includes/admin/class-woo_buy_now_button_settings.php:307 313 309 msgid "Set padding value in px." 314 310 msgstr "" 315 311 316 #: includes/admin/class-woo_buy_now_button_settings.php:12 5312 #: includes/admin/class-woo_buy_now_button_settings.php:128 317 313 msgid "" 318 314 "Set quantity number to be added to the cart when clicked on the Buy Now " … … 320 316 msgstr "" 321 317 322 #: includes/class-woo_buy_now_button_backend.php:6 1318 #: includes/class-woo_buy_now_button_backend.php:62 323 319 msgid "Settings" 324 320 msgstr "" 325 321 326 322 #: includes/admin/class-woo_buy_now_button_settings.php:63 327 msgid "Sho w Buy Now Button on Shop / Archive Page."323 msgid "Shop / Archive Page." 328 324 msgstr "" 329 325 330 326 #: includes/admin/class-woo_buy_now_button_settings.php:55 331 msgid "S how Buy Now Button on Single Product Page."327 msgid "Single Product Page." 332 328 msgstr "" 333 329 … … 336 332 msgstr "" 337 333 338 #: includes/admin/class-woo_buy_now_button_settings.php:23 5334 #: includes/admin/class-woo_buy_now_button_settings.php:239 339 335 msgid "Text Background Color" 340 336 msgstr "" 341 337 342 #: includes/admin/class-woo_buy_now_button_settings.php:2 28338 #: includes/admin/class-woo_buy_now_button_settings.php:231 343 339 msgid "Text Color" 344 340 msgstr "" … … 350 346 msgstr "" 351 347 352 #: includes/class-woo_buy_now_button_backend.php:1 47348 #: includes/class-woo_buy_now_button_backend.php:156 353 349 msgid "The following options control the Buy Now button for this product." 354 350 msgstr "" 355 351 356 #: quick-buy-now-button-for-woocommerce.php: 38352 #: quick-buy-now-button-for-woocommerce.php:42 357 353 msgid "WooCommerce" 358 354 msgstr "" -
quick-buy-now-button-for-woocommerce/trunk/quick-buy-now-button-for-woocommerce.php
r3144071 r3175954 5 5 * Description: Makes your customers' checkout process easier and faster and allows you to redirect customers directly to the checkout, cart or any external link for quick purchase. 6 6 * Author: Tanvirul Haque 7 * Version: 1.0.1 37 * Version: 1.0.14 8 8 * Author URI: https://wpxpress.net 9 9 * Text Domain: woo-buy-now-button … … 13 13 * Requires at least: 4.8 14 14 * Tested up to: 6.6 15 * WC tested up to: 9. 215 * WC tested up to: 9.3 16 16 * WC requires at least: 4.6 17 17 * License: GPLv2+ … … 21 21 22 22 if ( ! defined( 'WOO_BUY_NOW_BUTTON_PLUGIN_VERSION' ) ) { 23 define( 'WOO_BUY_NOW_BUTTON_PLUGIN_VERSION', '1.0.1 3' );23 define( 'WOO_BUY_NOW_BUTTON_PLUGIN_VERSION', '1.0.14' ); 24 24 } 25 25 -
quick-buy-now-button-for-woocommerce/trunk/readme.txt
r3144071 r3175954 6 6 Tested up to: 6.6 7 7 WC requires at least: 4.5 8 WC tested up to: 9. 29 Stable tag: 1.0.1 38 WC tested up to: 9.3 9 Stable tag: 1.0.14 10 10 License: GPLv2 or later 11 11 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 112 112 == Changelog == 113 113 114 = 1.0.14 = 115 * Add - WooCommerce 9.3+ compatibility 116 * Update - Settings page 117 114 118 = 1.0.13 = 115 119 * Add - WordPress 6.6+ compatibility
Note: See TracChangeset
for help on using the changeset viewer.