Plugin Directory

Changeset 3175954


Ignore:
Timestamp:
10/26/2024 06:37:08 AM (17 months ago)
Author:
tanvirul
Message:

Release 1.0.14

Location:
quick-buy-now-button-for-woocommerce
Files:
16 added
5 edited

Legend:

Unmodified
Added
Removed
  • quick-buy-now-button-for-woocommerce/trunk/includes/admin/class-woo_buy_now_button_settings.php

    r2970069 r3175954  
    9494            array(
    9595                'id'       => 'wbnb_redirect_location',
    96                 'type'     => 'select',
     96                'type'     => 'radio',
    9797                'title'    => esc_html__( 'Redirect Location', 'woo-buy-now-button' ),
    9898                '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',
    100100                'default'  => 'checkout',
    101101                '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' ),
    105107                ),
    106108            ),
     
    137139                'type'    => 'checkbox',
    138140                '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' ),
    140142                'default' => 'no'
    141143            ),
     
    213215            array(
    214216                'id'      => 'wbnb_button_style',
    215                 'type'    => 'select',
    216                 'class'   => 'wc-enhanced-select',
     217                'type'    => 'radio',
     218                //'class'   => 'wc-enhanced-select',
    217219                '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' ),
    219221                'default' => 'default',
    220222                'options'  => array(
  • quick-buy-now-button-for-woocommerce/trunk/includes/admin/js/scripts.js

    r2756741 r3175954  
    11(function ($) {
    22    $( 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' );
    311
    4         // Global custom redirect URL field Hide/Show
    5         $( '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();
    1018            }
    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        });
    1231
    1332        // Product level custom redirect URL field Hide/Show
  • quick-buy-now-button-for-woocommerce/trunk/languages/woo-buy-now-button.pot

    r3010746 r3175954  
    44"Project-Id-Version: Quick Buy Now Button for WooCommerce\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2023-01-27 08:26+0000\n"
     6"POT-Creation-Date: 2024-10-26 06:29+0000\n"
    77"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    88"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1717"X-Domain: woo-buy-now-button"
    1818
    19 #: quick-buy-now-button-for-woocommerce.php:50
     19#: quick-buy-now-button-for-woocommerce.php:54
    2020msgid "<strong>Quick Buy Now Button for WooCommerce</strong> is an add-on of "
     21msgstr ""
     22
     23#: includes/admin/class-woo_buy_now_button_settings.php:77
     24#: includes/admin/class-woo_buy_now_button_settings.php:90
     25msgid "After Add to Cart Button"
     26msgstr ""
     27
     28#: includes/admin/class-woo_buy_now_button_settings.php:140
     29msgid "Auto Reset Cart"
    2130msgstr ""
    2231
    2332#: includes/admin/class-woo_buy_now_button_settings.php:76
    2433#: 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:137
    29 msgid "Auto Reset Cart"
    30 msgstr ""
    31 
    32 #: includes/admin/class-woo_buy_now_button_settings.php:75
    33 #: includes/admin/class-woo_buy_now_button_settings.php:88
    3434msgid "Before Add to Cart Button"
    3535msgstr ""
    3636
    37 #: includes/admin/class-woo_buy_now_button_settings.php:242
     37#: includes/admin/class-woo_buy_now_button_settings.php:248
    3838msgid "Border Color"
    3939msgstr ""
    4040
    41 #: includes/admin/class-woo_buy_now_button_settings.php:262
     41#: includes/admin/class-woo_buy_now_button_settings.php:271
    4242msgid "Border Radius"
    4343msgstr ""
    4444
    45 #: includes/admin/class-woo_buy_now_button_settings.php:249
     45#: includes/admin/class-woo_buy_now_button_settings.php:257
    4646msgid "Border size"
    4747msgstr ""
    4848
    49 #: includes/admin/class-woo_buy_now_button_settings.php:81
     49#: includes/admin/class-woo_buy_now_button_settings.php:82
    5050msgid "Button Position on Shop"
    5151msgstr ""
    5252
    53 #: includes/admin/class-woo_buy_now_button_settings.php:71
     53#: includes/admin/class-woo_buy_now_button_settings.php:72
    5454msgid "Button Position on Single"
    5555msgstr ""
    5656
    5757#: includes/admin/class-woo_buy_now_button_settings.php:27
    58 #: includes/admin/class-woo_buy_now_button_settings.php:216
     58#: includes/admin/class-woo_buy_now_button_settings.php:219
    5959msgid "Button Styles"
    6060msgstr ""
    6161
    62 #: includes/class-woo_buy_now_button_backend.php:186
    63 #: includes/admin/class-woo_buy_now_button_settings.php:117
     62#: includes/class-woo_buy_now_button_backend.php:195
     63#: includes/admin/class-woo_buy_now_button_settings.php:120
    6464msgid "Button Text"
    6565msgstr ""
    6666
    67 #: includes/class-woo_buy_now_button_backend.php:103
    68 #: includes/class-woo_buy_now_button_backend.php:121
     67#: includes/class-woo_buy_now_button_backend.php:112
     68#: includes/class-woo_buy_now_button_backend.php:130
    6969#: includes/admin/class-woo_buy_now_button_settings.php:14
    7070msgid "Buy Now Button"
    7171msgstr ""
    7272
    73 #: includes/class-woo_buy_now_button_backend.php:102
     73#: includes/class-woo_buy_now_button_backend.php:111
    7474msgid "Buy Now Button Settings"
    7575msgstr ""
    7676
    77 #: includes/admin/class-woo_buy_now_button_settings.php:209
     77#: includes/admin/class-woo_buy_now_button_settings.php:212
    7878msgid "Buy Now Button Styles"
    7979msgstr ""
    8080
     81#: includes/admin/class-woo_buy_now_button_settings.php:103
     82msgid "Cart Page"
     83msgstr ""
     84
     85#: includes/class-woo_buy_now_button_backend.php:206
     86msgid "Cart page"
     87msgstr ""
     88
     89#: includes/class-woo_buy_now_button_backend.php:207
    8190#: 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:197
    86 msgid "Cart page"
    87 msgstr ""
    88 
    89 #: includes/class-woo_buy_now_button_backend.php:198
    90 #: includes/admin/class-woo_buy_now_button_settings.php:101
    9191msgid "Checkout Page"
    9292msgstr ""
    9393
    94 #: includes/admin/class-woo_buy_now_button_settings.php:217
     94#: includes/admin/class-woo_buy_now_button_settings.php:220
    9595msgid "Choose button style."
    9696msgstr ""
    9797
    98 #: includes/admin/class-woo_buy_now_button_settings.php:174
     98#: includes/admin/class-woo_buy_now_button_settings.php:177
    9999msgid "Choose specific category(s)."
    100100msgstr ""
    101101
    102 #: includes/admin/class-woo_buy_now_button_settings.php:160
     102#: includes/admin/class-woo_buy_now_button_settings.php:163
    103103msgid "Choose specific product type(s)."
    104104msgstr ""
    105105
    106 #: includes/admin/class-woo_buy_now_button_settings.php:188
     106#: includes/admin/class-woo_buy_now_button_settings.php:191
    107107msgid "Choose specific product(s)."
    108108msgstr ""
    109109
    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
     111msgid "Clear the cart when clicked Buy Now button."
     112msgstr ""
     113
     114#: includes/class-woo_buy_now_button_backend.php:208
     115#: includes/admin/class-woo_buy_now_button_settings.php:104
    112116msgid "Custom Page"
    113117msgstr ""
    114118
    115 #: includes/admin/class-woo_buy_now_button_settings.php:110
     119#: includes/admin/class-woo_buy_now_button_settings.php:113
    116120msgid "Custom Redirect URL"
    117121msgstr ""
    118122
    119 #: includes/admin/class-woo_buy_now_button_settings.php:221
     123#: includes/admin/class-woo_buy_now_button_settings.php:224
    120124msgid "Custom Style"
    121125msgstr ""
    122126
    123 #: includes/class-woo_buy_now_button_backend.php:174
    124 #: includes/admin/class-woo_buy_now_button_settings.php:124
     127#: includes/class-woo_buy_now_button_backend.php:183
     128#: includes/admin/class-woo_buy_now_button_settings.php:127
    125129msgid "Default Shop Quantity"
    126130msgstr ""
    127131
    128 #: includes/admin/class-woo_buy_now_button_settings.php:220
     132#: includes/admin/class-woo_buy_now_button_settings.php:223
    129133msgid "Default Style"
    130134msgstr ""
    131135
    132 #: includes/class-woo_buy_now_button_backend.php:152
     136#: includes/class-woo_buy_now_button_backend.php:161
    133137msgid "Disable Buy Now Button"
    134138msgstr ""
    135139
    136 #: includes/admin/class-woo_buy_now_button_settings.php:155
     140#: includes/admin/class-woo_buy_now_button_settings.php:158
    137141msgid "Disable Buy Now Button Based on Specific Product Types."
    138142msgstr ""
    139143
    140 #: includes/class-woo_buy_now_button_backend.php:153
     144#: includes/class-woo_buy_now_button_backend.php:162
    141145msgid "Disable Buy Now Button for this product."
    142146msgstr ""
    143147
    144 #: includes/admin/class-woo_buy_now_button_settings.php:168
     148#: includes/admin/class-woo_buy_now_button_settings.php:171
    145149msgid "Disable on Categories"
    146150msgstr ""
    147151
    148 #: includes/admin/class-woo_buy_now_button_settings.php:154
     152#: includes/admin/class-woo_buy_now_button_settings.php:157
    149153msgid "Disable on Product Types"
    150154msgstr ""
    151155
    152 #: includes/admin/class-woo_buy_now_button_settings.php:182
     156#: includes/admin/class-woo_buy_now_button_settings.php:185
    153157msgid "Disable on Products"
    154158msgstr ""
    155159
    156 #: includes/class-woo_buy_now_button_backend.php:83
    157 #: includes/admin/class-woo_buy_now_button_settings.php:46
     160#: includes/class-woo_buy_now_button_backend.php:92
     161#: includes/admin/class-woo_buy_now_button_settings.php:45
    158162msgid "Documentation"
    159163msgstr ""
    160164
    161 #: includes/admin/class-woo_buy_now_button_settings.php:60
    162 msgid "Enable Button on Shop"
    163 msgstr ""
    164 
    165165#: 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:209
     166msgid "Enable Button on"
     167msgstr ""
     168
     169#: includes/class-woo_buy_now_button_backend.php:218
    170170msgid "Enter custom link only for custom redirect like Amazon product link."
    171171msgstr ""
    172172
    173 #: includes/class-woo_buy_now_button_backend.php:187
     173#: includes/class-woo_buy_now_button_backend.php:196
    174174msgid "Enter Text to Show on Buy Now button for this product."
    175175msgstr ""
    176176
    177 #: includes/admin/class-woo_buy_now_button_settings.php:275
     177#: includes/admin/class-woo_buy_now_button_settings.php:285
    178178msgid "Font size"
    179179msgstr ""
     
    183183msgstr ""
    184184
    185 #: includes/class-woo_buy_now_button_backend.php:84
    186 #: includes/admin/class-woo_buy_now_button_settings.php:47
     185#: includes/class-woo_buy_now_button_backend.php:93
     186#: includes/admin/class-woo_buy_now_button_settings.php:46
    187187msgid "Get Help &amp; Support"
    188188msgstr ""
    189189
    190 #: includes/admin/class-woo_buy_now_button_settings.php:765
     190#: includes/admin/class-woo_buy_now_button_settings.php:778
    191191msgid "Get Pro Features"
    192192msgstr ""
    193193
    194 #: includes/class-woo_buy_now_button_backend.php:196
     194#: includes/class-woo_buy_now_button_backend.php:205
    195195msgid "Global"
    196196msgstr ""
    197197
    198 #: includes/class-woo_buy_now_button_backend.php:66
     198#: includes/class-woo_buy_now_button_backend.php:70
    199199msgid "Go Pro"
    200200msgstr ""
    201201
    202 #: includes/class-woo_buy_now_button_backend.php:159
    203 #: includes/admin/class-woo_buy_now_button_settings.php:145
     202#: includes/class-woo_buy_now_button_backend.php:168
     203#: includes/admin/class-woo_buy_now_button_settings.php:148
    204204msgid "Hide Add To Cart"
    205205msgstr ""
    206206
    207 #: includes/class-woo_buy_now_button_backend.php:160
     207#: includes/class-woo_buy_now_button_backend.php:169
    208208msgid "Hide Add To Cart Button for this product."
    209209msgstr ""
    210210
    211 #: includes/admin/class-woo_buy_now_button_settings.php:146
     211#: includes/admin/class-woo_buy_now_button_settings.php:149
    212212msgid "Hide Add To Cart Button from Single Product and Shop Page."
    213 msgstr ""
    214 
    215 #. Author URI of the plugin
    216 msgid "http://wpxpress.net"
    217213msgstr ""
    218214
    219215#. URI of the plugin
    220216msgid "https://wordpress.org/plugins/quick-buy-now-button-for-woocommerce/"
     217msgstr ""
     218
     219#. Author URI of the plugin
     220msgid "https://wpxpress.net"
    221221msgstr ""
    222222
     
    228228msgstr ""
    229229
    230 #: includes/admin/class-woo_buy_now_button_settings.php:287
     230#: includes/admin/class-woo_buy_now_button_settings.php:298
    231231msgid "Margin"
    232232msgstr ""
    233233
    234 #: includes/admin/class-woo_buy_now_button_settings.php:294
     234#: includes/admin/class-woo_buy_now_button_settings.php:306
    235235msgid "Padding"
    236236msgstr ""
     
    240240msgstr ""
    241241
    242 #: includes/class-woo_buy_now_button_backend.php:145
     242#: includes/class-woo_buy_now_button_backend.php:154
    243243#: includes/admin/class-woo_buy_now_button_settings.php:43
    244244msgid "Quick Buy Now Button Settings"
    245245msgstr ""
    246246
    247 #: includes/class-woo_buy_now_button_backend.php:208
     247#: includes/class-woo_buy_now_button_backend.php:217
    248248msgid "Redirect Custom Link"
    249249msgstr ""
    250250
    251 #: includes/class-woo_buy_now_button_backend.php:194
    252 #: includes/admin/class-woo_buy_now_button_settings.php:96
     251#: includes/class-woo_buy_now_button_backend.php:203
     252#: includes/admin/class-woo_buy_now_button_settings.php:97
    253253msgid "Redirect Location"
    254254msgstr ""
    255255
    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
    261257msgid "Select position where button will show on shop and archive page."
    262258msgstr ""
    263259
    264 #: includes/admin/class-woo_buy_now_button_settings.php:72
     260#: includes/admin/class-woo_buy_now_button_settings.php:73
    265261msgid "Select position where button will show on single product page."
    266262msgstr ""
    267263
    268 #: includes/admin/class-woo_buy_now_button_settings.php:97
     264#: includes/admin/class-woo_buy_now_button_settings.php:98
    269265msgid "Select redirect location to after click buy now button."
    270266msgstr ""
    271267
    272 #: includes/class-woo_buy_now_button_backend.php:201
     268#: includes/class-woo_buy_now_button_backend.php:210
    273269msgid "Select where to redirect for this product."
    274270msgstr ""
    275271
    276 #: includes/admin/class-woo_buy_now_button_settings.php:236
     272#: includes/admin/class-woo_buy_now_button_settings.php:240
    277273msgid "Set button background color."
    278274msgstr ""
    279275
    280 #: includes/admin/class-woo_buy_now_button_settings.php:243
     276#: includes/admin/class-woo_buy_now_button_settings.php:249
    281277msgid "Set button border color."
    282278msgstr ""
    283279
    284 #: includes/admin/class-woo_buy_now_button_settings.php:263
     280#: includes/admin/class-woo_buy_now_button_settings.php:272
    285281msgid "Set button border radius in px."
    286282msgstr ""
    287283
    288 #: includes/admin/class-woo_buy_now_button_settings.php:250
     284#: includes/admin/class-woo_buy_now_button_settings.php:258
    289285msgid "Set button border size in px."
    290286msgstr ""
    291287
    292 #: includes/admin/class-woo_buy_now_button_settings.php:229
     288#: includes/admin/class-woo_buy_now_button_settings.php:232
    293289msgid "Set button text color."
    294290msgstr ""
    295291
    296 #: includes/class-woo_buy_now_button_backend.php:175
     292#: includes/class-woo_buy_now_button_backend.php:184
    297293msgid "Set Default Quantity for this product on shop / archive page."
    298294msgstr ""
    299295
    300 #: includes/admin/class-woo_buy_now_button_settings.php:276
     296#: includes/admin/class-woo_buy_now_button_settings.php:286
    301297msgid "Set font size in px."
    302298msgstr ""
    303299
    304 #: includes/admin/class-woo_buy_now_button_settings.php:111
     300#: includes/admin/class-woo_buy_now_button_settings.php:114
    305301msgid "Set global custom URL to redirect."
    306302msgstr ""
    307303
    308 #: includes/admin/class-woo_buy_now_button_settings.php:288
     304#: includes/admin/class-woo_buy_now_button_settings.php:299
    309305msgid "Set margin value in px."
    310306msgstr ""
    311307
    312 #: includes/admin/class-woo_buy_now_button_settings.php:295
     308#: includes/admin/class-woo_buy_now_button_settings.php:307
    313309msgid "Set padding value in px."
    314310msgstr ""
    315311
    316 #: includes/admin/class-woo_buy_now_button_settings.php:125
     312#: includes/admin/class-woo_buy_now_button_settings.php:128
    317313msgid ""
    318314"Set quantity number to be added to the cart when clicked on the Buy Now "
     
    320316msgstr ""
    321317
    322 #: includes/class-woo_buy_now_button_backend.php:61
     318#: includes/class-woo_buy_now_button_backend.php:62
    323319msgid "Settings"
    324320msgstr ""
    325321
    326322#: includes/admin/class-woo_buy_now_button_settings.php:63
    327 msgid "Show Buy Now Button on Shop / Archive Page."
     323msgid "Shop / Archive Page."
    328324msgstr ""
    329325
    330326#: includes/admin/class-woo_buy_now_button_settings.php:55
    331 msgid "Show Buy Now Button on Single Product Page."
     327msgid "Single Product Page."
    332328msgstr ""
    333329
     
    336332msgstr ""
    337333
    338 #: includes/admin/class-woo_buy_now_button_settings.php:235
     334#: includes/admin/class-woo_buy_now_button_settings.php:239
    339335msgid "Text Background Color"
    340336msgstr ""
    341337
    342 #: includes/admin/class-woo_buy_now_button_settings.php:228
     338#: includes/admin/class-woo_buy_now_button_settings.php:231
    343339msgid "Text Color"
    344340msgstr ""
     
    350346msgstr ""
    351347
    352 #: includes/class-woo_buy_now_button_backend.php:147
     348#: includes/class-woo_buy_now_button_backend.php:156
    353349msgid "The following options control the Buy Now button for this product."
    354350msgstr ""
    355351
    356 #: quick-buy-now-button-for-woocommerce.php:38
     352#: quick-buy-now-button-for-woocommerce.php:42
    357353msgid "WooCommerce"
    358354msgstr ""
  • quick-buy-now-button-for-woocommerce/trunk/quick-buy-now-button-for-woocommerce.php

    r3144071 r3175954  
    55* 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.
    66* Author: Tanvirul Haque
    7 * Version: 1.0.13
     7* Version: 1.0.14
    88* Author URI: https://wpxpress.net
    99* Text Domain: woo-buy-now-button
     
    1313* Requires at least: 4.8
    1414* Tested up to: 6.6
    15 * WC tested up to: 9.2
     15* WC tested up to: 9.3
    1616* WC requires at least: 4.6
    1717* License: GPLv2+
     
    2121
    2222if ( ! defined( 'WOO_BUY_NOW_BUTTON_PLUGIN_VERSION' ) ) {
    23     define( 'WOO_BUY_NOW_BUTTON_PLUGIN_VERSION', '1.0.13' );
     23    define( 'WOO_BUY_NOW_BUTTON_PLUGIN_VERSION', '1.0.14' );
    2424}
    2525
  • quick-buy-now-button-for-woocommerce/trunk/readme.txt

    r3144071 r3175954  
    66Tested up to: 6.6
    77WC requires at least: 4.5
    8 WC tested up to: 9.2
    9 Stable tag: 1.0.13
     8WC tested up to: 9.3
     9Stable tag: 1.0.14
    1010License: GPLv2 or later
    1111License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    112112== Changelog ==
    113113
     114= 1.0.14 =
     115* Add - WooCommerce 9.3+ compatibility
     116* Update - Settings page
     117
    114118= 1.0.13 =
    115119* Add - WordPress 6.6+ compatibility
Note: See TracChangeset for help on using the changeset viewer.