Plugin Directory

Changeset 3083531


Ignore:
Timestamp:
05/08/2024 07:16:54 PM (20 months ago)
Author:
bbioon
Message:

Version 1.9.9

Location:
merchant
Files:
28 added
14 edited

Legend:

Unmodified
Added
Removed
  • merchant/tags/1.9.9/admin/classes/class-merchant-admin-modules.php

    r3083515 r3083531  
    5353                    'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-product-bundles' ),
    5454                    'title' => esc_html__( 'Product Bundles', 'merchant' ),
    55                     'desc' => esc_html__( 'Combine multiple products into bundles to sell at discounted or regular prices', 'merchant' ),
     55                    'desc' => esc_html__( 'Create bundles of products to be sold together', 'merchant' ),
    5656                    'tutorial_url' => 'https://docs.athemes.com/article/merchant-product-bundles/',
    5757                ),
  • merchant/tags/1.9.9/inc/functions.php

    r3083515 r3083531  
    181181                'merchant_module_trust_badges',
    182182                'merchant_module_advanced_reviews',
    183                 'merchant_module_frequency_bought_together',
     183                'merchant_module_frequently_bought_together',
    184184                'merchant_module_buy_x_get_y',
    185185                'merchant_module_product_bundles',
  • merchant/tags/1.9.9/inc/modules/product-bundles/admin/options.php

    r3083515 r3083531  
    1111}
    1212
    13 
    14 // Settings
    15 Merchant_Admin_Options::create( array(
    16     'module' => Merchant_Product_Bundles::MODULE_ID,
    17     'title'  => esc_html__( 'General settings', 'merchant' ),
    18     'fields' => array(
    19         array(
    20             'id'      => 'hide_bundled_cart',
    21             'type'    => 'switcher',
    22             'title'   => __( 'Hide bundled products in cart', 'merchant' ),
    23             'default' => 0,
    24         ),
    25 
    26         array(
    27             'id'      => 'hide_bundled_mini_cart',
    28             'type'    => 'switcher',
    29             'title'   => __( 'Hide bundled products in mini cart', 'merchant' ),
    30             'default' => 0,
    31         ),
    32 
    33 //      array(
    34 //          'id'      => '_woopq_decimal',
    35 //          'type'    => 'switcher',
    36 //          'title'   => __( 'Allow decimal product quantity', 'merchant' ),
    37 //          'default' => 0,
    38 //      ),
    39 
    40         array(
    41             'id'      => 'bundled_link',
    42             'type'    => 'switcher',
    43             'title'   => __( 'Display link for each bundled product on cart page', 'merchant' ),
    44             'default' => 0,
    45         ),
    46 
    47         array(
    48             'id'      => 'cart_contents_count',
    49             'type'    => 'select',
    50             'title'   => __( 'Cart contents count will include', 'merchant' ),
    51             'options' => array(
    52                 'bundle' => __( 'The bundle as one product', 'merchant' ),
    53                 'both'   => __( 'Both bundle and bundled products', 'merchant' ),
    54             ),
    55             'default' => 'bundle',
    56         ),
    57 
    58         array(
    59             'id'      => 'hide_bundled',
    60             'type'    => 'select',
    61             'title'   => __( 'Bundled products text style in cart', 'merchant' ),
    62             'options' => array(
    63                 'text' => __( 'Show bundled products list inline', 'merchant' ),
    64                 'list' => __( 'Show bundled products in a bulleted list', 'merchant' ),
    65             ),
    66             'default' => 'text',
    67         ),
    68     ),
    69 ) );
     13/**
     14 * Hook functionality before including modules options.
     15 *
     16 * @since 1.9.8
     17 */
     18do_action( 'merchant_admin_before_include_modules_options', Merchant_Product_Bundles::MODULE_ID );
    7019
    7120Merchant_Admin_Options::create( array(
    7221    'module' => Merchant_Product_Bundles::MODULE_ID,
    73     'title'  => esc_html__( 'Product single page', 'merchant' ),
     22    'title'  => esc_html__( 'Product page settings', 'merchant' ),
    7423    'fields' => array(
    7524
     
    7726            'id'      => 'bundled_thumb',
    7827            'type'    => 'switcher',
    79             'title'   => __( 'Display bundled products thumbnails', 'merchant' ),
    80             'default' => 0,
     28            'title'   => __( 'Display bundled product thumbnails', 'merchant' ),
     29            'default' => '1',
    8130        ),
    8231
     
    8433            'id'      => 'bundled_description',
    8534            'type'    => 'switcher',
    86             'title'   => __( 'Display descriptions of bundled products', 'merchant' ),
     35            'title'   => __( 'Display bundled product descriptions', 'merchant' ),
    8736            'default' => 0,
    8837        ),
     
    9140            'id'      => 'bundled_qty',
    9241            'type'    => 'switcher',
    93             'title'   => __( 'Display the quantity of bundled products', 'merchant' ),
    94             'default' => 0,
     42            'title'   => __( 'Display bundled product quantities', 'merchant' ),
     43            'default' => '1',
     44        ),
     45
     46        array(
     47            'id'      => 'bundled_link_single',
     48            'type'    => 'switcher',
     49            'title'   => __( 'Make bundled product thumbnails and titles clickable', 'merchant' ),
     50            'default' => '1',
    9551        ),
    9652
     
    13187) );
    13288
     89// Settings
     90Merchant_Admin_Options::create( array(
     91    'module' => Merchant_Product_Bundles::MODULE_ID,
     92    'title'  => esc_html__( 'Cart settings', 'merchant' ),
     93    'fields' => array(
     94        array(
     95            'id'      => 'hide_bundled_cart',
     96            'type'    => 'switcher',
     97            'title'   => __( 'Hide bundled products in cart', 'merchant' ),
     98            'default' => 0,
     99        ),
     100
     101        array(
     102            'id'      => 'hide_bundled_mini_cart',
     103            'type'    => 'switcher',
     104            'title'   => __( 'Hide bundled products in mini cart', 'merchant' ),
     105            'default' => 0,
     106        ),
     107
     108//      array(
     109//          'id'      => '_woopq_decimal',
     110//          'type'    => 'switcher',
     111//          'title'   => __( 'Allow decimal product quantity', 'merchant' ),
     112//          'default' => 0,
     113//      ),
     114
     115        array(
     116            'id'      => 'bundled_link',
     117            'type'    => 'switcher',
     118            'title'   => __( 'Include links to bundled products on cart page', 'merchant' ),
     119            'default' => '1',
     120        ),
     121
     122        array(
     123            'id'      => 'cart_contents_count',
     124            'type'    => 'select',
     125            'title'   => __( 'Cart contents count will include', 'merchant' ),
     126            'options' => array(
     127                'bundle' => __( 'The bundle as one product', 'merchant' ),
     128                'both'   => __( 'Both bundle and bundled products', 'merchant' ),
     129            ),
     130            'default' => 'bundle',
     131        ),
     132
     133        array(
     134            'id'      => 'hide_bundled',
     135            'type'    => 'radio',
     136            'title'   => __( 'Show bundled products', 'merchant' ),
     137            'options' => array(
     138                'text' => __( 'List inline', 'merchant' ),
     139                'list' => __( 'Bulleted list', 'merchant' ),
     140            ),
     141            'default' => 'text',
     142        ),
     143    ),
     144) );
     145
    133146
    134147// Shortcode
     
    146159            'type'    => 'info',
    147160            'id'      => 'shortcode_info',
    148             'content' => esc_html__( 'If you are using a page builder or a theme that supports shortcodes, then you can output the module using the shortcode above. This might be useful if, for example, you find that you want to control the position of the module output more precisely than with the module settings. Note that the shortcodes can only be used on single product pages.', 'merchant' ),
     161            'content' => esc_html__( 'If you are using a page builder or a theme that supports shortcodes, then you can output the module using the shortcode above. This might be useful if, for example, you find that you want to control the position of the module output more precisely than with the module settings. Note that the shortcodes can only be used on single product pages.',
     162                'merchant' ),
    149163        ),
    150164        array(
  • merchant/tags/1.9.9/inc/modules/product-bundles/class-product-bundles.php

    r3083515 r3083531  
    6565            add_filter( 'merchant_module_preview', array( $this, 'render_admin_preview' ), 10, 2 );
    6666        }
     67
     68        add_action( 'merchant_admin_before_include_modules_options', array( $this, 'help_banner' ) );
     69    }
     70
     71    /**
     72     * Help banner.
     73     *
     74     * @return void
     75     */
     76    public function help_banner() {
     77        ?>
     78        <div class="merchant-module-page-setting-fields">
     79            <div class="merchant-module-page-setting-field merchant-module-page-setting-field-content">
     80                <div class="merchant-module-page-setting-field-inner">
     81                    <div class="merchant-tag-pre-orders">
     82                        <i class="dashicons dashicons-info"></i>
     83                        <p>
     84                        <?php
     85                        echo esc_html__(
     86                            'To create a new product bundle (simple or variable), go to Products > Add New menu in the left sidebar of your WordPress admin area.',
     87                            'merchant'
     88                        );
     89                        printf(
     90                            '<a href="%1s" target="_blank">%2s</a>',
     91                            esc_url( admin_url( 'post-new.php?post_type=product' ) ),
     92                            esc_html__( 'Add New Bundle', 'merchant' )
     93                        );
     94                        ?></p>
     95                    </div>
     96                </div>
     97            </div>
     98        </div>
     99        <?php
    67100    }
    68101
     
    116149    public function admin_preview_content( $settings ) {
    117150        ?>
    118         <div class="mrc-preview-single-product-elements">
    119             <div class="mrc-preview-left-column">
    120                 <div class="mrc-preview-product-image-wrapper">
    121                     <div class="mrc-preview-product-image"></div>
    122                     <div class="mrc-preview-product-image-thumbs">
    123                         <div class="mrc-preview-product-image-thumb"></div>
    124                         <div class="mrc-preview-product-image-thumb"></div>
    125                         <div class="mrc-preview-product-image-thumb"></div>
    126                     </div>
    127                 </div>
    128             </div>
    129             <div class="mrc-preview-right-column">
    130                 <div class="mrc-preview-text-placeholder"></div>
    131                 <div class="mrc-preview-text-placeholder mrc-mw-70"></div>
    132                 <div class="mrc-preview-text-placeholder mrc-mw-30"></div>
    133                 <div class="mrc-preview-text-placeholder mrc-mw-40"></div>
    134                 <div class="mrc-preview-bundle-wrapper mrc-mw-60">
     151        <div class="mrc-preview-single-product-elements">
     152            <div class="mrc-preview-left-column">
     153                <div class="mrc-preview-product-image-wrapper">
     154                    <div class="mrc-preview-product-image"></div>
     155                    <div class="mrc-preview-product-image-thumbs">
     156                        <div class="mrc-preview-product-image-thumb"></div>
     157                        <div class="mrc-preview-product-image-thumb"></div>
     158                        <div class="mrc-preview-product-image-thumb"></div>
     159                    </div>
     160                </div>
     161            </div>
     162            <div class="mrc-preview-right-column">
     163                <div class="mrc-preview-text-placeholder"></div>
     164                <div class="mrc-preview-text-placeholder mrc-mw-70"></div>
     165                <div class="mrc-preview-text-placeholder mrc-mw-30"></div>
     166                <div class="mrc-preview-text-placeholder mrc-mw-40"></div>
     167                <div class="mrc-preview-bundle-wrapper mrc-mw-60">
    135168                    <div class="mrc-preview-bundle-product">
    136169                        <div class="mrc-preview-bundle-product-image"></div>
     
    158191                    </div>
    159192                </div>
    160                 <div class="mrc-preview-addtocart-placeholder"></div>
    161             </div>
    162         </div>
     193                <div class="mrc-preview-addtocart-placeholder"></div>
     194            </div>
     195        </div>
    163196        <?php
    164197    }
  • merchant/tags/1.9.9/languages/merchant.pot

    r3083515 r3083531  
    99"Language-Team: aThemes <[email protected]>\n"
    1010"Last-Translator: aThemes <[email protected]>\n"
    11 "POT-Creation-Date: 2024-05-08 18:30+0000\n"
     11"POT-Creation-Date: 2024-05-08 19:14+0000\n"
    1212"Report-Msgid-Bugs-To: https://athemes.com/contact/\n"
    1313"X-Poedit-Basepath: ..\n"
     
    107107
    108108#: admin/classes/class-merchant-admin-modules.php:55
    109 msgid "Combine multiple products into bundles to sell at discounted or regular prices"
     109msgid "Create bundles of products to be sold together"
    110110msgstr ""
    111111
     
    12161216msgstr ""
    12171217
    1218 #: inc/modules/address-autocomplete/class-address-autocomplete.php:88, inc/modules/address-autocomplete/class-address-autocomplete.php:121, inc/modules/product-bundles/class-product-bundles.php:88
     1218#: inc/modules/address-autocomplete/class-address-autocomplete.php:88, inc/modules/address-autocomplete/class-address-autocomplete.php:121, inc/modules/product-bundles/class-product-bundles.php:121
    12191219msgid "Start typing an address..."
    12201220msgstr ""
     
    16521652msgstr ""
    16531653
     1654#: inc/modules/product-bundles/class-product-bundles.php:85
     1655msgid "To create a new product bundle (simple or variable), go to Products > Add New menu in the left sidebar of your WordPress admin area."
     1656msgstr ""
     1657
     1658#: inc/modules/product-bundles/class-product-bundles.php:92, inc/modules/frequently-bought-together/admin/options.php:20
     1659msgid "Add New Bundle"
     1660msgstr ""
     1661
    16541662#: inc/modules/product-labels/class-product-labels.php:50, inc/modules/product-labels/admin/options.php:31, inc/modules/product-labels/admin/options.php:109
    16551663msgid "Spring Special"
     
    28012809msgstr ""
    28022810
    2803 #: inc/modules/advanced-reviews/admin/options.php:363, inc/modules/advanced-reviews/admin/options.php:368, inc/modules/buy-x-get-y/admin/options.php:250, inc/modules/buy-x-get-y/admin/options.php:255, inc/modules/cart-reserved-timer/admin/options.php:103, inc/modules/cart-reserved-timer/admin/options.php:108, inc/modules/frequently-bought-together/admin/options.php:217, inc/modules/frequently-bought-together/admin/options.php:222, inc/modules/payment-logos/admin/options.php:125, inc/modules/payment-logos/admin/options.php:130, inc/modules/product-brand-image/admin/options.php:82, inc/modules/product-brand-image/admin/options.php:87, inc/modules/product-bundles/admin/options.php:137, inc/modules/product-bundles/admin/options.php:142, inc/modules/reasons-to-buy/admin/options.php:134, inc/modules/reasons-to-buy/admin/options.php:139, inc/modules/recently-viewed-products/admin/options.php:204, inc/modules/recently-viewed-products/admin/options.php:209, inc/modules/size-chart/admin/options.php:215, inc/modules/size-chart/admin/options.php:220, inc/modules/stock-scarcity/admin/options.php:188, inc/modules/stock-scarcity/admin/options.php:193, inc/modules/trust-badges/admin/options.php:132, inc/modules/trust-badges/admin/options.php:137, inc/modules/volume-discounts/admin/options.php:322, inc/modules/volume-discounts/admin/options.php:327, inc/modules/wait-list/admin/options.php:134, inc/modules/wait-list/admin/options.php:139
     2811#: inc/modules/advanced-reviews/admin/options.php:363, inc/modules/advanced-reviews/admin/options.php:368, inc/modules/buy-x-get-y/admin/options.php:250, inc/modules/buy-x-get-y/admin/options.php:255, inc/modules/cart-reserved-timer/admin/options.php:103, inc/modules/cart-reserved-timer/admin/options.php:108, inc/modules/frequently-bought-together/admin/options.php:217, inc/modules/frequently-bought-together/admin/options.php:222, inc/modules/payment-logos/admin/options.php:125, inc/modules/payment-logos/admin/options.php:130, inc/modules/product-brand-image/admin/options.php:82, inc/modules/product-brand-image/admin/options.php:87, inc/modules/product-bundles/admin/options.php:150, inc/modules/product-bundles/admin/options.php:155, inc/modules/reasons-to-buy/admin/options.php:134, inc/modules/reasons-to-buy/admin/options.php:139, inc/modules/recently-viewed-products/admin/options.php:204, inc/modules/recently-viewed-products/admin/options.php:209, inc/modules/size-chart/admin/options.php:215, inc/modules/size-chart/admin/options.php:220, inc/modules/stock-scarcity/admin/options.php:188, inc/modules/stock-scarcity/admin/options.php:193, inc/modules/trust-badges/admin/options.php:132, inc/modules/trust-badges/admin/options.php:137, inc/modules/volume-discounts/admin/options.php:322, inc/modules/volume-discounts/admin/options.php:327, inc/modules/wait-list/admin/options.php:134, inc/modules/wait-list/admin/options.php:139
    28042812msgid "Use shortcode"
    28052813msgstr ""
    28062814
    2807 #: inc/modules/advanced-reviews/admin/options.php:374, inc/modules/buy-x-get-y/admin/options.php:261, inc/modules/cart-reserved-timer/admin/options.php:114, inc/modules/frequently-bought-together/admin/options.php:228, inc/modules/payment-logos/admin/options.php:136, inc/modules/product-brand-image/admin/options.php:93, inc/modules/product-bundles/admin/options.php:148, inc/modules/reasons-to-buy/admin/options.php:145, inc/modules/recently-viewed-products/admin/options.php:215, inc/modules/size-chart/admin/options.php:226, inc/modules/stock-scarcity/admin/options.php:199, inc/modules/trust-badges/admin/options.php:143, inc/modules/volume-discounts/admin/options.php:333, inc/modules/wait-list/admin/options.php:145
     2815#: inc/modules/advanced-reviews/admin/options.php:374, inc/modules/buy-x-get-y/admin/options.php:261, inc/modules/cart-reserved-timer/admin/options.php:114, inc/modules/frequently-bought-together/admin/options.php:228, inc/modules/payment-logos/admin/options.php:136, inc/modules/product-brand-image/admin/options.php:93, inc/modules/product-bundles/admin/options.php:161, inc/modules/reasons-to-buy/admin/options.php:145, inc/modules/recently-viewed-products/admin/options.php:215, inc/modules/size-chart/admin/options.php:226, inc/modules/stock-scarcity/admin/options.php:199, inc/modules/trust-badges/admin/options.php:143, inc/modules/volume-discounts/admin/options.php:333, inc/modules/wait-list/admin/options.php:145
    28082816msgid "If you are using a page builder or a theme that supports shortcodes, then you can output the module using the shortcode above. This might be useful if, for example, you find that you want to control the position of the module output more precisely than with the module settings. Note that the shortcodes can only be used on single product pages."
    28092817msgstr ""
    28102818
    2811 #: inc/modules/advanced-reviews/admin/options.php:379, inc/modules/buy-x-get-y/admin/options.php:266, inc/modules/cart-reserved-timer/admin/options.php:119, inc/modules/frequently-bought-together/admin/options.php:233, inc/modules/payment-logos/admin/options.php:141, inc/modules/product-brand-image/admin/options.php:98, inc/modules/product-bundles/admin/options.php:153, inc/modules/reasons-to-buy/admin/options.php:150, inc/modules/recently-viewed-products/admin/options.php:220, inc/modules/size-chart/admin/options.php:231, inc/modules/stock-scarcity/admin/options.php:207, inc/modules/trust-badges/admin/options.php:148, inc/modules/volume-discounts/admin/options.php:338, inc/modules/wait-list/admin/options.php:150
     2819#: inc/modules/advanced-reviews/admin/options.php:379, inc/modules/buy-x-get-y/admin/options.php:266, inc/modules/cart-reserved-timer/admin/options.php:119, inc/modules/frequently-bought-together/admin/options.php:233, inc/modules/payment-logos/admin/options.php:141, inc/modules/product-brand-image/admin/options.php:98, inc/modules/product-bundles/admin/options.php:167, inc/modules/reasons-to-buy/admin/options.php:150, inc/modules/recently-viewed-products/admin/options.php:220, inc/modules/size-chart/admin/options.php:231, inc/modules/stock-scarcity/admin/options.php:207, inc/modules/trust-badges/admin/options.php:148, inc/modules/volume-discounts/admin/options.php:338, inc/modules/wait-list/admin/options.php:150
    28122820msgid "Shortcode text"
    28132821msgstr ""
     
    37853793msgstr ""
    37863794
    3787 #: inc/modules/frequently-bought-together/admin/options.php:20
    3788 msgid "Add New Bundle"
    3789 msgstr ""
    3790 
    37913795#: inc/modules/frequently-bought-together/admin/options.php:26, inc/modules/volume-discounts/admin/options.php:27
    37923796msgid "Create Discount Tiers"
     
    40264030msgstr ""
    40274031
    4028 #: inc/modules/product-bundles/admin/options.php:17
    4029 msgid "General settings"
    4030 msgstr ""
    4031 
    40324032#: inc/modules/product-bundles/admin/options.php:22
     4033msgid "Product page settings"
     4034msgstr ""
     4035
     4036#: inc/modules/product-bundles/admin/options.php:28
     4037msgid "Display bundled product thumbnails"
     4038msgstr ""
     4039
     4040#: inc/modules/product-bundles/admin/options.php:35
     4041msgid "Display bundled product descriptions"
     4042msgstr ""
     4043
     4044#: inc/modules/product-bundles/admin/options.php:42
     4045msgid "Display bundled product quantities"
     4046msgstr ""
     4047
     4048#: inc/modules/product-bundles/admin/options.php:49
     4049msgid "Make bundled product thumbnails and titles clickable"
     4050msgstr ""
     4051
     4052#: inc/modules/product-bundles/admin/options.php:56
     4053msgid "Display the prices of bundled products"
     4054msgstr ""
     4055
     4056#: inc/modules/product-bundles/admin/options.php:58
     4057msgid "Price per unit"
     4058msgstr ""
     4059
     4060#: inc/modules/product-bundles/admin/options.php:59
     4061msgid "Subtotal"
     4062msgstr ""
     4063
     4064#: inc/modules/product-bundles/admin/options.php:60
     4065msgid "Hide"
     4066msgstr ""
     4067
     4068#: inc/modules/product-bundles/admin/options.php:68
     4069msgid "Calculate the prices of bundled products based on"
     4070msgstr ""
     4071
     4072#: inc/modules/product-bundles/admin/options.php:70
     4073msgid "Regular price"
     4074msgstr ""
     4075
     4076#: inc/modules/product-bundles/admin/options.php:71
     4077msgid "Sale Price"
     4078msgstr ""
     4079
     4080#: inc/modules/product-bundles/admin/options.php:79
     4081msgid "Where to display the bundled products"
     4082msgstr ""
     4083
     4084#: inc/modules/product-bundles/admin/options.php:81
     4085msgid "Before add to cart section"
     4086msgstr ""
     4087
     4088#: inc/modules/product-bundles/admin/options.php:82
     4089msgid "After add to cart section"
     4090msgstr ""
     4091
     4092#: inc/modules/product-bundles/admin/options.php:92
     4093msgid "Cart settings"
     4094msgstr ""
     4095
     4096#: inc/modules/product-bundles/admin/options.php:97
    40334097msgid "Hide bundled products in cart"
    40344098msgstr ""
    40354099
    4036 #: inc/modules/product-bundles/admin/options.php:29
     4100#: inc/modules/product-bundles/admin/options.php:104
    40374101msgid "Hide bundled products in mini cart"
    40384102msgstr ""
    40394103
    4040 #: inc/modules/product-bundles/admin/options.php:43
    4041 msgid "Display link for each bundled product on cart page"
    4042 msgstr ""
    4043 
    4044 #: inc/modules/product-bundles/admin/options.php:50
     4104#: inc/modules/product-bundles/admin/options.php:118
     4105msgid "Include links to bundled products on cart page"
     4106msgstr ""
     4107
     4108#: inc/modules/product-bundles/admin/options.php:125
    40454109msgid "Cart contents count will include"
    40464110msgstr ""
    40474111
    4048 #: inc/modules/product-bundles/admin/options.php:52
     4112#: inc/modules/product-bundles/admin/options.php:127
    40494113msgid "The bundle as one product"
    40504114msgstr ""
    40514115
    4052 #: inc/modules/product-bundles/admin/options.php:53
     4116#: inc/modules/product-bundles/admin/options.php:128
    40534117msgid "Both bundle and bundled products"
    40544118msgstr ""
    40554119
    4056 #: inc/modules/product-bundles/admin/options.php:61
    4057 msgid "Bundled products text style in cart"
    4058 msgstr ""
    4059 
    4060 #: inc/modules/product-bundles/admin/options.php:63
    4061 msgid "Show bundled products list inline"
    4062 msgstr ""
    4063 
    4064 #: inc/modules/product-bundles/admin/options.php:64
    4065 msgid "Show bundled products in a bulleted list"
    4066 msgstr ""
    4067 
    4068 #: inc/modules/product-bundles/admin/options.php:73
    4069 msgid "Product single page"
    4070 msgstr ""
    4071 
    4072 #: inc/modules/product-bundles/admin/options.php:79
    4073 msgid "Display bundled products thumbnails"
    4074 msgstr ""
    4075 
    4076 #: inc/modules/product-bundles/admin/options.php:86
    4077 msgid "Display descriptions of bundled products"
    4078 msgstr ""
    4079 
    4080 #: inc/modules/product-bundles/admin/options.php:93
    4081 msgid "Display the quantity of bundled products"
    4082 msgstr ""
    4083 
    4084 #: inc/modules/product-bundles/admin/options.php:100
    4085 msgid "Display the prices of bundled products"
    4086 msgstr ""
    4087 
    4088 #: inc/modules/product-bundles/admin/options.php:102
    4089 msgid "Price per unit"
    4090 msgstr ""
    4091 
    4092 #: inc/modules/product-bundles/admin/options.php:103
    4093 msgid "Subtotal"
    4094 msgstr ""
    4095 
    4096 #: inc/modules/product-bundles/admin/options.php:104
    4097 msgid "Hide"
    4098 msgstr ""
    4099 
    4100 #: inc/modules/product-bundles/admin/options.php:112
    4101 msgid "Calculate the prices of bundled products based on"
    4102 msgstr ""
    4103 
    4104 #: inc/modules/product-bundles/admin/options.php:114
    4105 msgid "Regular price"
    4106 msgstr ""
    4107 
    4108 #: inc/modules/product-bundles/admin/options.php:115
    4109 msgid "Sale Price"
    4110 msgstr ""
    4111 
    4112 #: inc/modules/product-bundles/admin/options.php:123
    4113 msgid "Where to display the bundled products"
    4114 msgstr ""
    4115 
    4116 #: inc/modules/product-bundles/admin/options.php:125
    4117 msgid "Before add to cart section"
    4118 msgstr ""
    4119 
    4120 #: inc/modules/product-bundles/admin/options.php:126
    4121 msgid "After add to cart section"
     4120#: inc/modules/product-bundles/admin/options.php:136
     4121msgid "Show bundled products"
     4122msgstr ""
     4123
     4124#: inc/modules/product-bundles/admin/options.php:138
     4125msgid "List inline"
     4126msgstr ""
     4127
     4128#: inc/modules/product-bundles/admin/options.php:139
     4129msgid "Bulleted list"
    41224130msgstr ""
    41234131
  • merchant/tags/1.9.9/merchant.php

    r3083515 r3083531  
    44 * Plugin URI:  https://athemes.com
    55 * Description: All-in-one plugin designed to help you grow your WooCommerce store. Pre-orders, Buy Now buttons, product labels, trust badges, payment logos, and more.
    6  * Version:     1.9.8
     6 * Version:     1.9.9
    77 * Author:      aThemes
    88 * Author URI:  https://athemes.com
     
    1313 *
    1414 * WC requires at least: 6.0
    15  * WC tested up to: 8.7.0
     15 * WC tested up to: 8.8.3
    1616 *
    1717 * @package Merchant
     
    2525
    2626// Merchant constants.
    27 define( 'MERCHANT_VERSION', '1.9.8' );
     27define( 'MERCHANT_VERSION', '1.9.9' );
    2828define( 'MERCHANT_FILE', __FILE__ );
    2929define( 'MERCHANT_BASE', trailingslashit( plugin_basename( MERCHANT_FILE ) ) );
  • merchant/tags/1.9.9/readme.txt

    r3083515 r3083531  
    44Tested up to: 6.5
    55Requires PHP: 7.0
    6 Stable tag: 1.9.8
     6Stable tag: 1.9.9
    77Contributors: aThemes
    88License: GPLv3 or later
     
    217217
    218218== Changelog ==
     219= 1.9.9 =
     220* Changed - Conditional changes in some modules.
     221
    219222= 1.9.8 =
    220223* Fixed - Product Label: Resolved an issue where storewide sales and product labels displayed incorrect discount percentages.
  • merchant/trunk/admin/classes/class-merchant-admin-modules.php

    r3079548 r3083531  
    5353                    'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-product-bundles' ),
    5454                    'title' => esc_html__( 'Product Bundles', 'merchant' ),
    55                     'desc' => esc_html__( 'Combine multiple products into bundles to sell at discounted or regular prices', 'merchant' ),
     55                    'desc' => esc_html__( 'Create bundles of products to be sold together', 'merchant' ),
    5656                    'tutorial_url' => 'https://docs.athemes.com/article/merchant-product-bundles/',
    5757                ),
  • merchant/trunk/inc/functions.php

    r3079548 r3083531  
    181181                'merchant_module_trust_badges',
    182182                'merchant_module_advanced_reviews',
    183                 'merchant_module_frequency_bought_together',
     183                'merchant_module_frequently_bought_together',
    184184                'merchant_module_buy_x_get_y',
    185185                'merchant_module_product_bundles',
  • merchant/trunk/inc/modules/product-bundles/admin/options.php

    r3079548 r3083531  
    1111}
    1212
    13 
    14 // Settings
    15 Merchant_Admin_Options::create( array(
    16     'module' => Merchant_Product_Bundles::MODULE_ID,
    17     'title'  => esc_html__( 'General settings', 'merchant' ),
    18     'fields' => array(
    19         array(
    20             'id'      => 'hide_bundled_cart',
    21             'type'    => 'switcher',
    22             'title'   => __( 'Hide bundled products in cart', 'merchant' ),
    23             'default' => 0,
    24         ),
    25 
    26         array(
    27             'id'      => 'hide_bundled_mini_cart',
    28             'type'    => 'switcher',
    29             'title'   => __( 'Hide bundled products in mini cart', 'merchant' ),
    30             'default' => 0,
    31         ),
    32 
    33 //      array(
    34 //          'id'      => '_woopq_decimal',
    35 //          'type'    => 'switcher',
    36 //          'title'   => __( 'Allow decimal product quantity', 'merchant' ),
    37 //          'default' => 0,
    38 //      ),
    39 
    40         array(
    41             'id'      => 'bundled_link',
    42             'type'    => 'switcher',
    43             'title'   => __( 'Display link for each bundled product on cart page', 'merchant' ),
    44             'default' => 0,
    45         ),
    46 
    47         array(
    48             'id'      => 'cart_contents_count',
    49             'type'    => 'select',
    50             'title'   => __( 'Cart contents count will include', 'merchant' ),
    51             'options' => array(
    52                 'bundle' => __( 'The bundle as one product', 'merchant' ),
    53                 'both'   => __( 'Both bundle and bundled products', 'merchant' ),
    54             ),
    55             'default' => 'bundle',
    56         ),
    57 
    58         array(
    59             'id'      => 'hide_bundled',
    60             'type'    => 'select',
    61             'title'   => __( 'Bundled products text style in cart', 'merchant' ),
    62             'options' => array(
    63                 'text' => __( 'Show bundled products list inline', 'merchant' ),
    64                 'list' => __( 'Show bundled products in a bulleted list', 'merchant' ),
    65             ),
    66             'default' => 'text',
    67         ),
    68     ),
    69 ) );
     13/**
     14 * Hook functionality before including modules options.
     15 *
     16 * @since 1.9.8
     17 */
     18do_action( 'merchant_admin_before_include_modules_options', Merchant_Product_Bundles::MODULE_ID );
    7019
    7120Merchant_Admin_Options::create( array(
    7221    'module' => Merchant_Product_Bundles::MODULE_ID,
    73     'title'  => esc_html__( 'Product single page', 'merchant' ),
     22    'title'  => esc_html__( 'Product page settings', 'merchant' ),
    7423    'fields' => array(
    7524
     
    7726            'id'      => 'bundled_thumb',
    7827            'type'    => 'switcher',
    79             'title'   => __( 'Display bundled products thumbnails', 'merchant' ),
    80             'default' => 0,
     28            'title'   => __( 'Display bundled product thumbnails', 'merchant' ),
     29            'default' => '1',
    8130        ),
    8231
     
    8433            'id'      => 'bundled_description',
    8534            'type'    => 'switcher',
    86             'title'   => __( 'Display descriptions of bundled products', 'merchant' ),
     35            'title'   => __( 'Display bundled product descriptions', 'merchant' ),
    8736            'default' => 0,
    8837        ),
     
    9140            'id'      => 'bundled_qty',
    9241            'type'    => 'switcher',
    93             'title'   => __( 'Display the quantity of bundled products', 'merchant' ),
    94             'default' => 0,
     42            'title'   => __( 'Display bundled product quantities', 'merchant' ),
     43            'default' => '1',
     44        ),
     45
     46        array(
     47            'id'      => 'bundled_link_single',
     48            'type'    => 'switcher',
     49            'title'   => __( 'Make bundled product thumbnails and titles clickable', 'merchant' ),
     50            'default' => '1',
    9551        ),
    9652
     
    13187) );
    13288
     89// Settings
     90Merchant_Admin_Options::create( array(
     91    'module' => Merchant_Product_Bundles::MODULE_ID,
     92    'title'  => esc_html__( 'Cart settings', 'merchant' ),
     93    'fields' => array(
     94        array(
     95            'id'      => 'hide_bundled_cart',
     96            'type'    => 'switcher',
     97            'title'   => __( 'Hide bundled products in cart', 'merchant' ),
     98            'default' => 0,
     99        ),
     100
     101        array(
     102            'id'      => 'hide_bundled_mini_cart',
     103            'type'    => 'switcher',
     104            'title'   => __( 'Hide bundled products in mini cart', 'merchant' ),
     105            'default' => 0,
     106        ),
     107
     108//      array(
     109//          'id'      => '_woopq_decimal',
     110//          'type'    => 'switcher',
     111//          'title'   => __( 'Allow decimal product quantity', 'merchant' ),
     112//          'default' => 0,
     113//      ),
     114
     115        array(
     116            'id'      => 'bundled_link',
     117            'type'    => 'switcher',
     118            'title'   => __( 'Include links to bundled products on cart page', 'merchant' ),
     119            'default' => '1',
     120        ),
     121
     122        array(
     123            'id'      => 'cart_contents_count',
     124            'type'    => 'select',
     125            'title'   => __( 'Cart contents count will include', 'merchant' ),
     126            'options' => array(
     127                'bundle' => __( 'The bundle as one product', 'merchant' ),
     128                'both'   => __( 'Both bundle and bundled products', 'merchant' ),
     129            ),
     130            'default' => 'bundle',
     131        ),
     132
     133        array(
     134            'id'      => 'hide_bundled',
     135            'type'    => 'radio',
     136            'title'   => __( 'Show bundled products', 'merchant' ),
     137            'options' => array(
     138                'text' => __( 'List inline', 'merchant' ),
     139                'list' => __( 'Bulleted list', 'merchant' ),
     140            ),
     141            'default' => 'text',
     142        ),
     143    ),
     144) );
     145
    133146
    134147// Shortcode
     
    146159            'type'    => 'info',
    147160            'id'      => 'shortcode_info',
    148             'content' => esc_html__( 'If you are using a page builder or a theme that supports shortcodes, then you can output the module using the shortcode above. This might be useful if, for example, you find that you want to control the position of the module output more precisely than with the module settings. Note that the shortcodes can only be used on single product pages.', 'merchant' ),
     161            'content' => esc_html__( 'If you are using a page builder or a theme that supports shortcodes, then you can output the module using the shortcode above. This might be useful if, for example, you find that you want to control the position of the module output more precisely than with the module settings. Note that the shortcodes can only be used on single product pages.',
     162                'merchant' ),
    149163        ),
    150164        array(
  • merchant/trunk/inc/modules/product-bundles/class-product-bundles.php

    r3079548 r3083531  
    6565            add_filter( 'merchant_module_preview', array( $this, 'render_admin_preview' ), 10, 2 );
    6666        }
     67
     68        add_action( 'merchant_admin_before_include_modules_options', array( $this, 'help_banner' ) );
     69    }
     70
     71    /**
     72     * Help banner.
     73     *
     74     * @return void
     75     */
     76    public function help_banner() {
     77        ?>
     78        <div class="merchant-module-page-setting-fields">
     79            <div class="merchant-module-page-setting-field merchant-module-page-setting-field-content">
     80                <div class="merchant-module-page-setting-field-inner">
     81                    <div class="merchant-tag-pre-orders">
     82                        <i class="dashicons dashicons-info"></i>
     83                        <p>
     84                        <?php
     85                        echo esc_html__(
     86                            'To create a new product bundle (simple or variable), go to Products > Add New menu in the left sidebar of your WordPress admin area.',
     87                            'merchant'
     88                        );
     89                        printf(
     90                            '<a href="%1s" target="_blank">%2s</a>',
     91                            esc_url( admin_url( 'post-new.php?post_type=product' ) ),
     92                            esc_html__( 'Add New Bundle', 'merchant' )
     93                        );
     94                        ?></p>
     95                    </div>
     96                </div>
     97            </div>
     98        </div>
     99        <?php
    67100    }
    68101
     
    116149    public function admin_preview_content( $settings ) {
    117150        ?>
    118         <div class="mrc-preview-single-product-elements">
    119             <div class="mrc-preview-left-column">
    120                 <div class="mrc-preview-product-image-wrapper">
    121                     <div class="mrc-preview-product-image"></div>
    122                     <div class="mrc-preview-product-image-thumbs">
    123                         <div class="mrc-preview-product-image-thumb"></div>
    124                         <div class="mrc-preview-product-image-thumb"></div>
    125                         <div class="mrc-preview-product-image-thumb"></div>
    126                     </div>
    127                 </div>
    128             </div>
    129             <div class="mrc-preview-right-column">
    130                 <div class="mrc-preview-text-placeholder"></div>
    131                 <div class="mrc-preview-text-placeholder mrc-mw-70"></div>
    132                 <div class="mrc-preview-text-placeholder mrc-mw-30"></div>
    133                 <div class="mrc-preview-text-placeholder mrc-mw-40"></div>
    134                 <div class="mrc-preview-bundle-wrapper mrc-mw-60">
     151        <div class="mrc-preview-single-product-elements">
     152            <div class="mrc-preview-left-column">
     153                <div class="mrc-preview-product-image-wrapper">
     154                    <div class="mrc-preview-product-image"></div>
     155                    <div class="mrc-preview-product-image-thumbs">
     156                        <div class="mrc-preview-product-image-thumb"></div>
     157                        <div class="mrc-preview-product-image-thumb"></div>
     158                        <div class="mrc-preview-product-image-thumb"></div>
     159                    </div>
     160                </div>
     161            </div>
     162            <div class="mrc-preview-right-column">
     163                <div class="mrc-preview-text-placeholder"></div>
     164                <div class="mrc-preview-text-placeholder mrc-mw-70"></div>
     165                <div class="mrc-preview-text-placeholder mrc-mw-30"></div>
     166                <div class="mrc-preview-text-placeholder mrc-mw-40"></div>
     167                <div class="mrc-preview-bundle-wrapper mrc-mw-60">
    135168                    <div class="mrc-preview-bundle-product">
    136169                        <div class="mrc-preview-bundle-product-image"></div>
     
    158191                    </div>
    159192                </div>
    160                 <div class="mrc-preview-addtocart-placeholder"></div>
    161             </div>
    162         </div>
     193                <div class="mrc-preview-addtocart-placeholder"></div>
     194            </div>
     195        </div>
    163196        <?php
    164197    }
  • merchant/trunk/languages/merchant.pot

    r3083515 r3083531  
    99"Language-Team: aThemes <[email protected]>\n"
    1010"Last-Translator: aThemes <[email protected]>\n"
    11 "POT-Creation-Date: 2024-05-08 18:30+0000\n"
     11"POT-Creation-Date: 2024-05-08 19:14+0000\n"
    1212"Report-Msgid-Bugs-To: https://athemes.com/contact/\n"
    1313"X-Poedit-Basepath: ..\n"
     
    107107
    108108#: admin/classes/class-merchant-admin-modules.php:55
    109 msgid "Combine multiple products into bundles to sell at discounted or regular prices"
     109msgid "Create bundles of products to be sold together"
    110110msgstr ""
    111111
     
    12161216msgstr ""
    12171217
    1218 #: inc/modules/address-autocomplete/class-address-autocomplete.php:88, inc/modules/address-autocomplete/class-address-autocomplete.php:121, inc/modules/product-bundles/class-product-bundles.php:88
     1218#: inc/modules/address-autocomplete/class-address-autocomplete.php:88, inc/modules/address-autocomplete/class-address-autocomplete.php:121, inc/modules/product-bundles/class-product-bundles.php:121
    12191219msgid "Start typing an address..."
    12201220msgstr ""
     
    16521652msgstr ""
    16531653
     1654#: inc/modules/product-bundles/class-product-bundles.php:85
     1655msgid "To create a new product bundle (simple or variable), go to Products > Add New menu in the left sidebar of your WordPress admin area."
     1656msgstr ""
     1657
     1658#: inc/modules/product-bundles/class-product-bundles.php:92, inc/modules/frequently-bought-together/admin/options.php:20
     1659msgid "Add New Bundle"
     1660msgstr ""
     1661
    16541662#: inc/modules/product-labels/class-product-labels.php:50, inc/modules/product-labels/admin/options.php:31, inc/modules/product-labels/admin/options.php:109
    16551663msgid "Spring Special"
     
    28012809msgstr ""
    28022810
    2803 #: inc/modules/advanced-reviews/admin/options.php:363, inc/modules/advanced-reviews/admin/options.php:368, inc/modules/buy-x-get-y/admin/options.php:250, inc/modules/buy-x-get-y/admin/options.php:255, inc/modules/cart-reserved-timer/admin/options.php:103, inc/modules/cart-reserved-timer/admin/options.php:108, inc/modules/frequently-bought-together/admin/options.php:217, inc/modules/frequently-bought-together/admin/options.php:222, inc/modules/payment-logos/admin/options.php:125, inc/modules/payment-logos/admin/options.php:130, inc/modules/product-brand-image/admin/options.php:82, inc/modules/product-brand-image/admin/options.php:87, inc/modules/product-bundles/admin/options.php:137, inc/modules/product-bundles/admin/options.php:142, inc/modules/reasons-to-buy/admin/options.php:134, inc/modules/reasons-to-buy/admin/options.php:139, inc/modules/recently-viewed-products/admin/options.php:204, inc/modules/recently-viewed-products/admin/options.php:209, inc/modules/size-chart/admin/options.php:215, inc/modules/size-chart/admin/options.php:220, inc/modules/stock-scarcity/admin/options.php:188, inc/modules/stock-scarcity/admin/options.php:193, inc/modules/trust-badges/admin/options.php:132, inc/modules/trust-badges/admin/options.php:137, inc/modules/volume-discounts/admin/options.php:322, inc/modules/volume-discounts/admin/options.php:327, inc/modules/wait-list/admin/options.php:134, inc/modules/wait-list/admin/options.php:139
     2811#: inc/modules/advanced-reviews/admin/options.php:363, inc/modules/advanced-reviews/admin/options.php:368, inc/modules/buy-x-get-y/admin/options.php:250, inc/modules/buy-x-get-y/admin/options.php:255, inc/modules/cart-reserved-timer/admin/options.php:103, inc/modules/cart-reserved-timer/admin/options.php:108, inc/modules/frequently-bought-together/admin/options.php:217, inc/modules/frequently-bought-together/admin/options.php:222, inc/modules/payment-logos/admin/options.php:125, inc/modules/payment-logos/admin/options.php:130, inc/modules/product-brand-image/admin/options.php:82, inc/modules/product-brand-image/admin/options.php:87, inc/modules/product-bundles/admin/options.php:150, inc/modules/product-bundles/admin/options.php:155, inc/modules/reasons-to-buy/admin/options.php:134, inc/modules/reasons-to-buy/admin/options.php:139, inc/modules/recently-viewed-products/admin/options.php:204, inc/modules/recently-viewed-products/admin/options.php:209, inc/modules/size-chart/admin/options.php:215, inc/modules/size-chart/admin/options.php:220, inc/modules/stock-scarcity/admin/options.php:188, inc/modules/stock-scarcity/admin/options.php:193, inc/modules/trust-badges/admin/options.php:132, inc/modules/trust-badges/admin/options.php:137, inc/modules/volume-discounts/admin/options.php:322, inc/modules/volume-discounts/admin/options.php:327, inc/modules/wait-list/admin/options.php:134, inc/modules/wait-list/admin/options.php:139
    28042812msgid "Use shortcode"
    28052813msgstr ""
    28062814
    2807 #: inc/modules/advanced-reviews/admin/options.php:374, inc/modules/buy-x-get-y/admin/options.php:261, inc/modules/cart-reserved-timer/admin/options.php:114, inc/modules/frequently-bought-together/admin/options.php:228, inc/modules/payment-logos/admin/options.php:136, inc/modules/product-brand-image/admin/options.php:93, inc/modules/product-bundles/admin/options.php:148, inc/modules/reasons-to-buy/admin/options.php:145, inc/modules/recently-viewed-products/admin/options.php:215, inc/modules/size-chart/admin/options.php:226, inc/modules/stock-scarcity/admin/options.php:199, inc/modules/trust-badges/admin/options.php:143, inc/modules/volume-discounts/admin/options.php:333, inc/modules/wait-list/admin/options.php:145
     2815#: inc/modules/advanced-reviews/admin/options.php:374, inc/modules/buy-x-get-y/admin/options.php:261, inc/modules/cart-reserved-timer/admin/options.php:114, inc/modules/frequently-bought-together/admin/options.php:228, inc/modules/payment-logos/admin/options.php:136, inc/modules/product-brand-image/admin/options.php:93, inc/modules/product-bundles/admin/options.php:161, inc/modules/reasons-to-buy/admin/options.php:145, inc/modules/recently-viewed-products/admin/options.php:215, inc/modules/size-chart/admin/options.php:226, inc/modules/stock-scarcity/admin/options.php:199, inc/modules/trust-badges/admin/options.php:143, inc/modules/volume-discounts/admin/options.php:333, inc/modules/wait-list/admin/options.php:145
    28082816msgid "If you are using a page builder or a theme that supports shortcodes, then you can output the module using the shortcode above. This might be useful if, for example, you find that you want to control the position of the module output more precisely than with the module settings. Note that the shortcodes can only be used on single product pages."
    28092817msgstr ""
    28102818
    2811 #: inc/modules/advanced-reviews/admin/options.php:379, inc/modules/buy-x-get-y/admin/options.php:266, inc/modules/cart-reserved-timer/admin/options.php:119, inc/modules/frequently-bought-together/admin/options.php:233, inc/modules/payment-logos/admin/options.php:141, inc/modules/product-brand-image/admin/options.php:98, inc/modules/product-bundles/admin/options.php:153, inc/modules/reasons-to-buy/admin/options.php:150, inc/modules/recently-viewed-products/admin/options.php:220, inc/modules/size-chart/admin/options.php:231, inc/modules/stock-scarcity/admin/options.php:207, inc/modules/trust-badges/admin/options.php:148, inc/modules/volume-discounts/admin/options.php:338, inc/modules/wait-list/admin/options.php:150
     2819#: inc/modules/advanced-reviews/admin/options.php:379, inc/modules/buy-x-get-y/admin/options.php:266, inc/modules/cart-reserved-timer/admin/options.php:119, inc/modules/frequently-bought-together/admin/options.php:233, inc/modules/payment-logos/admin/options.php:141, inc/modules/product-brand-image/admin/options.php:98, inc/modules/product-bundles/admin/options.php:167, inc/modules/reasons-to-buy/admin/options.php:150, inc/modules/recently-viewed-products/admin/options.php:220, inc/modules/size-chart/admin/options.php:231, inc/modules/stock-scarcity/admin/options.php:207, inc/modules/trust-badges/admin/options.php:148, inc/modules/volume-discounts/admin/options.php:338, inc/modules/wait-list/admin/options.php:150
    28122820msgid "Shortcode text"
    28132821msgstr ""
     
    37853793msgstr ""
    37863794
    3787 #: inc/modules/frequently-bought-together/admin/options.php:20
    3788 msgid "Add New Bundle"
    3789 msgstr ""
    3790 
    37913795#: inc/modules/frequently-bought-together/admin/options.php:26, inc/modules/volume-discounts/admin/options.php:27
    37923796msgid "Create Discount Tiers"
     
    40264030msgstr ""
    40274031
    4028 #: inc/modules/product-bundles/admin/options.php:17
    4029 msgid "General settings"
    4030 msgstr ""
    4031 
    40324032#: inc/modules/product-bundles/admin/options.php:22
     4033msgid "Product page settings"
     4034msgstr ""
     4035
     4036#: inc/modules/product-bundles/admin/options.php:28
     4037msgid "Display bundled product thumbnails"
     4038msgstr ""
     4039
     4040#: inc/modules/product-bundles/admin/options.php:35
     4041msgid "Display bundled product descriptions"
     4042msgstr ""
     4043
     4044#: inc/modules/product-bundles/admin/options.php:42
     4045msgid "Display bundled product quantities"
     4046msgstr ""
     4047
     4048#: inc/modules/product-bundles/admin/options.php:49
     4049msgid "Make bundled product thumbnails and titles clickable"
     4050msgstr ""
     4051
     4052#: inc/modules/product-bundles/admin/options.php:56
     4053msgid "Display the prices of bundled products"
     4054msgstr ""
     4055
     4056#: inc/modules/product-bundles/admin/options.php:58
     4057msgid "Price per unit"
     4058msgstr ""
     4059
     4060#: inc/modules/product-bundles/admin/options.php:59
     4061msgid "Subtotal"
     4062msgstr ""
     4063
     4064#: inc/modules/product-bundles/admin/options.php:60
     4065msgid "Hide"
     4066msgstr ""
     4067
     4068#: inc/modules/product-bundles/admin/options.php:68
     4069msgid "Calculate the prices of bundled products based on"
     4070msgstr ""
     4071
     4072#: inc/modules/product-bundles/admin/options.php:70
     4073msgid "Regular price"
     4074msgstr ""
     4075
     4076#: inc/modules/product-bundles/admin/options.php:71
     4077msgid "Sale Price"
     4078msgstr ""
     4079
     4080#: inc/modules/product-bundles/admin/options.php:79
     4081msgid "Where to display the bundled products"
     4082msgstr ""
     4083
     4084#: inc/modules/product-bundles/admin/options.php:81
     4085msgid "Before add to cart section"
     4086msgstr ""
     4087
     4088#: inc/modules/product-bundles/admin/options.php:82
     4089msgid "After add to cart section"
     4090msgstr ""
     4091
     4092#: inc/modules/product-bundles/admin/options.php:92
     4093msgid "Cart settings"
     4094msgstr ""
     4095
     4096#: inc/modules/product-bundles/admin/options.php:97
    40334097msgid "Hide bundled products in cart"
    40344098msgstr ""
    40354099
    4036 #: inc/modules/product-bundles/admin/options.php:29
     4100#: inc/modules/product-bundles/admin/options.php:104
    40374101msgid "Hide bundled products in mini cart"
    40384102msgstr ""
    40394103
    4040 #: inc/modules/product-bundles/admin/options.php:43
    4041 msgid "Display link for each bundled product on cart page"
    4042 msgstr ""
    4043 
    4044 #: inc/modules/product-bundles/admin/options.php:50
     4104#: inc/modules/product-bundles/admin/options.php:118
     4105msgid "Include links to bundled products on cart page"
     4106msgstr ""
     4107
     4108#: inc/modules/product-bundles/admin/options.php:125
    40454109msgid "Cart contents count will include"
    40464110msgstr ""
    40474111
    4048 #: inc/modules/product-bundles/admin/options.php:52
     4112#: inc/modules/product-bundles/admin/options.php:127
    40494113msgid "The bundle as one product"
    40504114msgstr ""
    40514115
    4052 #: inc/modules/product-bundles/admin/options.php:53
     4116#: inc/modules/product-bundles/admin/options.php:128
    40534117msgid "Both bundle and bundled products"
    40544118msgstr ""
    40554119
    4056 #: inc/modules/product-bundles/admin/options.php:61
    4057 msgid "Bundled products text style in cart"
    4058 msgstr ""
    4059 
    4060 #: inc/modules/product-bundles/admin/options.php:63
    4061 msgid "Show bundled products list inline"
    4062 msgstr ""
    4063 
    4064 #: inc/modules/product-bundles/admin/options.php:64
    4065 msgid "Show bundled products in a bulleted list"
    4066 msgstr ""
    4067 
    4068 #: inc/modules/product-bundles/admin/options.php:73
    4069 msgid "Product single page"
    4070 msgstr ""
    4071 
    4072 #: inc/modules/product-bundles/admin/options.php:79
    4073 msgid "Display bundled products thumbnails"
    4074 msgstr ""
    4075 
    4076 #: inc/modules/product-bundles/admin/options.php:86
    4077 msgid "Display descriptions of bundled products"
    4078 msgstr ""
    4079 
    4080 #: inc/modules/product-bundles/admin/options.php:93
    4081 msgid "Display the quantity of bundled products"
    4082 msgstr ""
    4083 
    4084 #: inc/modules/product-bundles/admin/options.php:100
    4085 msgid "Display the prices of bundled products"
    4086 msgstr ""
    4087 
    4088 #: inc/modules/product-bundles/admin/options.php:102
    4089 msgid "Price per unit"
    4090 msgstr ""
    4091 
    4092 #: inc/modules/product-bundles/admin/options.php:103
    4093 msgid "Subtotal"
    4094 msgstr ""
    4095 
    4096 #: inc/modules/product-bundles/admin/options.php:104
    4097 msgid "Hide"
    4098 msgstr ""
    4099 
    4100 #: inc/modules/product-bundles/admin/options.php:112
    4101 msgid "Calculate the prices of bundled products based on"
    4102 msgstr ""
    4103 
    4104 #: inc/modules/product-bundles/admin/options.php:114
    4105 msgid "Regular price"
    4106 msgstr ""
    4107 
    4108 #: inc/modules/product-bundles/admin/options.php:115
    4109 msgid "Sale Price"
    4110 msgstr ""
    4111 
    4112 #: inc/modules/product-bundles/admin/options.php:123
    4113 msgid "Where to display the bundled products"
    4114 msgstr ""
    4115 
    4116 #: inc/modules/product-bundles/admin/options.php:125
    4117 msgid "Before add to cart section"
    4118 msgstr ""
    4119 
    4120 #: inc/modules/product-bundles/admin/options.php:126
    4121 msgid "After add to cart section"
     4120#: inc/modules/product-bundles/admin/options.php:136
     4121msgid "Show bundled products"
     4122msgstr ""
     4123
     4124#: inc/modules/product-bundles/admin/options.php:138
     4125msgid "List inline"
     4126msgstr ""
     4127
     4128#: inc/modules/product-bundles/admin/options.php:139
     4129msgid "Bulleted list"
    41224130msgstr ""
    41234131
  • merchant/trunk/merchant.php

    r3079548 r3083531  
    44 * Plugin URI:  https://athemes.com
    55 * Description: All-in-one plugin designed to help you grow your WooCommerce store. Pre-orders, Buy Now buttons, product labels, trust badges, payment logos, and more.
    6  * Version:     1.9.8
     6 * Version:     1.9.9
    77 * Author:      aThemes
    88 * Author URI:  https://athemes.com
     
    1313 *
    1414 * WC requires at least: 6.0
    15  * WC tested up to: 8.7.0
     15 * WC tested up to: 8.8.3
    1616 *
    1717 * @package Merchant
     
    2525
    2626// Merchant constants.
    27 define( 'MERCHANT_VERSION', '1.9.8' );
     27define( 'MERCHANT_VERSION', '1.9.9' );
    2828define( 'MERCHANT_FILE', __FILE__ );
    2929define( 'MERCHANT_BASE', trailingslashit( plugin_basename( MERCHANT_FILE ) ) );
  • merchant/trunk/readme.txt

    r3079548 r3083531  
    44Tested up to: 6.5
    55Requires PHP: 7.0
    6 Stable tag: 1.9.8
     6Stable tag: 1.9.9
    77Contributors: aThemes
    88License: GPLv3 or later
     
    217217
    218218== Changelog ==
     219= 1.9.9 =
     220* Changed - Conditional changes in some modules.
     221
    219222= 1.9.8 =
    220223* Fixed - Product Label: Resolved an issue where storewide sales and product labels displayed incorrect discount percentages.
Note: See TracChangeset for help on using the changeset viewer.