Changeset 3083531
- Timestamp:
- 05/08/2024 07:16:54 PM (20 months ago)
- Location:
- merchant
- Files:
-
- 28 added
- 14 edited
-
tags/1.9.9/admin/classes/class-merchant-admin-modules.php (modified) (1 diff)
-
tags/1.9.9/inc/functions.php (modified) (1 diff)
-
tags/1.9.9/inc/modules/product-bundles/admin/options.php (modified) (6 diffs)
-
tags/1.9.9/inc/modules/product-bundles/class-product-bundles.php (modified) (3 diffs)
-
tags/1.9.9/languages/merchant.pot (modified) (7 diffs)
-
tags/1.9.9/merchant.php (modified) (3 diffs)
-
tags/1.9.9/package-lock.json (added)
-
tags/1.9.9/readme.txt (modified) (2 diffs)
-
tags/1.9.9/vendor (added)
-
tags/1.9.9/vendor/autoload.php (added)
-
tags/1.9.9/vendor/composer (added)
-
tags/1.9.9/vendor/composer/ClassLoader.php (added)
-
tags/1.9.9/vendor/composer/InstalledVersions.php (added)
-
tags/1.9.9/vendor/composer/LICENSE (added)
-
tags/1.9.9/vendor/composer/autoload_classmap.php (added)
-
tags/1.9.9/vendor/composer/autoload_namespaces.php (added)
-
tags/1.9.9/vendor/composer/autoload_psr4.php (added)
-
tags/1.9.9/vendor/composer/autoload_real.php (added)
-
tags/1.9.9/vendor/composer/autoload_static.php (added)
-
tags/1.9.9/vendor/composer/installed.json (added)
-
tags/1.9.9/vendor/composer/installed.php (added)
-
trunk/admin/classes/class-merchant-admin-modules.php (modified) (1 diff)
-
trunk/inc/functions.php (modified) (1 diff)
-
trunk/inc/modules/product-bundles/admin/options.php (modified) (6 diffs)
-
trunk/inc/modules/product-bundles/class-product-bundles.php (modified) (3 diffs)
-
trunk/languages/merchant.pot (modified) (7 diffs)
-
trunk/merchant.php (modified) (3 diffs)
-
trunk/package-lock.json (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor (added)
-
trunk/vendor/autoload.php (added)
-
trunk/vendor/composer (added)
-
trunk/vendor/composer/ClassLoader.php (added)
-
trunk/vendor/composer/InstalledVersions.php (added)
-
trunk/vendor/composer/LICENSE (added)
-
trunk/vendor/composer/autoload_classmap.php (added)
-
trunk/vendor/composer/autoload_namespaces.php (added)
-
trunk/vendor/composer/autoload_psr4.php (added)
-
trunk/vendor/composer/autoload_real.php (added)
-
trunk/vendor/composer/autoload_static.php (added)
-
trunk/vendor/composer/installed.json (added)
-
trunk/vendor/composer/installed.php (added)
Legend:
- Unmodified
- Added
- Removed
-
merchant/tags/1.9.9/admin/classes/class-merchant-admin-modules.php
r3083515 r3083531 53 53 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-product-bundles' ), 54 54 'title' => esc_html__( 'Product Bundles', 'merchant' ), 55 'desc' => esc_html__( 'C ombine 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' ), 56 56 'tutorial_url' => 'https://docs.athemes.com/article/merchant-product-bundles/', 57 57 ), -
merchant/tags/1.9.9/inc/functions.php
r3083515 r3083531 181 181 'merchant_module_trust_badges', 182 182 'merchant_module_advanced_reviews', 183 'merchant_module_frequen cy_bought_together',183 'merchant_module_frequently_bought_together', 184 184 'merchant_module_buy_x_get_y', 185 185 'merchant_module_product_bundles', -
merchant/tags/1.9.9/inc/modules/product-bundles/admin/options.php
r3083515 r3083531 11 11 } 12 12 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 */ 18 do_action( 'merchant_admin_before_include_modules_options', Merchant_Product_Bundles::MODULE_ID ); 70 19 71 20 Merchant_Admin_Options::create( array( 72 21 'module' => Merchant_Product_Bundles::MODULE_ID, 73 'title' => esc_html__( 'Product single page', 'merchant' ),22 'title' => esc_html__( 'Product page settings', 'merchant' ), 74 23 'fields' => array( 75 24 … … 77 26 'id' => 'bundled_thumb', 78 27 'type' => 'switcher', 79 'title' => __( 'Display bundled product sthumbnails', 'merchant' ),80 'default' => 0,28 'title' => __( 'Display bundled product thumbnails', 'merchant' ), 29 'default' => '1', 81 30 ), 82 31 … … 84 33 'id' => 'bundled_description', 85 34 'type' => 'switcher', 86 'title' => __( 'Display descriptions of bundled products', 'merchant' ),35 'title' => __( 'Display bundled product descriptions', 'merchant' ), 87 36 'default' => 0, 88 37 ), … … 91 40 'id' => 'bundled_qty', 92 41 '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', 95 51 ), 96 52 … … 131 87 ) ); 132 88 89 // Settings 90 Merchant_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 133 146 134 147 // Shortcode … … 146 159 'type' => 'info', 147 160 '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' ), 149 163 ), 150 164 array( -
merchant/tags/1.9.9/inc/modules/product-bundles/class-product-bundles.php
r3083515 r3083531 65 65 add_filter( 'merchant_module_preview', array( $this, 'render_admin_preview' ), 10, 2 ); 66 66 } 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 67 100 } 68 101 … … 116 149 public function admin_preview_content( $settings ) { 117 150 ?> 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"> 135 168 <div class="mrc-preview-bundle-product"> 136 169 <div class="mrc-preview-bundle-product-image"></div> … … 158 191 </div> 159 192 </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> 163 196 <?php 164 197 } -
merchant/tags/1.9.9/languages/merchant.pot
r3083515 r3083531 9 9 "Language-Team: aThemes <[email protected]>\n" 10 10 "Last-Translator: aThemes <[email protected]>\n" 11 "POT-Creation-Date: 2024-05-08 1 8:30+0000\n"11 "POT-Creation-Date: 2024-05-08 19:14+0000\n" 12 12 "Report-Msgid-Bugs-To: https://athemes.com/contact/\n" 13 13 "X-Poedit-Basepath: ..\n" … … 107 107 108 108 #: admin/classes/class-merchant-admin-modules.php:55 109 msgid "C ombine multiple products into bundles to sell at discounted or regular prices"109 msgid "Create bundles of products to be sold together" 110 110 msgstr "" 111 111 … … 1216 1216 msgstr "" 1217 1217 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: 881218 #: 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 1219 1219 msgid "Start typing an address..." 1220 1220 msgstr "" … … 1652 1652 msgstr "" 1653 1653 1654 #: inc/modules/product-bundles/class-product-bundles.php:85 1655 msgid "To create a new product bundle (simple or variable), go to Products > Add New menu in the left sidebar of your WordPress admin area." 1656 msgstr "" 1657 1658 #: inc/modules/product-bundles/class-product-bundles.php:92, inc/modules/frequently-bought-together/admin/options.php:20 1659 msgid "Add New Bundle" 1660 msgstr "" 1661 1654 1662 #: 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 1655 1663 msgid "Spring Special" … … 2801 2809 msgstr "" 2802 2810 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:1 37, 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:1392811 #: 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 2804 2812 msgid "Use shortcode" 2805 2813 msgstr "" 2806 2814 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:1 48, 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:1452815 #: 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 2808 2816 msgid "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." 2809 2817 msgstr "" 2810 2818 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:1 53, 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:1502819 #: 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 2812 2820 msgid "Shortcode text" 2813 2821 msgstr "" … … 3785 3793 msgstr "" 3786 3794 3787 #: inc/modules/frequently-bought-together/admin/options.php:203788 msgid "Add New Bundle"3789 msgstr ""3790 3791 3795 #: inc/modules/frequently-bought-together/admin/options.php:26, inc/modules/volume-discounts/admin/options.php:27 3792 3796 msgid "Create Discount Tiers" … … 4026 4030 msgstr "" 4027 4031 4028 #: inc/modules/product-bundles/admin/options.php:174029 msgid "General settings"4030 msgstr ""4031 4032 4032 #: inc/modules/product-bundles/admin/options.php:22 4033 msgid "Product page settings" 4034 msgstr "" 4035 4036 #: inc/modules/product-bundles/admin/options.php:28 4037 msgid "Display bundled product thumbnails" 4038 msgstr "" 4039 4040 #: inc/modules/product-bundles/admin/options.php:35 4041 msgid "Display bundled product descriptions" 4042 msgstr "" 4043 4044 #: inc/modules/product-bundles/admin/options.php:42 4045 msgid "Display bundled product quantities" 4046 msgstr "" 4047 4048 #: inc/modules/product-bundles/admin/options.php:49 4049 msgid "Make bundled product thumbnails and titles clickable" 4050 msgstr "" 4051 4052 #: inc/modules/product-bundles/admin/options.php:56 4053 msgid "Display the prices of bundled products" 4054 msgstr "" 4055 4056 #: inc/modules/product-bundles/admin/options.php:58 4057 msgid "Price per unit" 4058 msgstr "" 4059 4060 #: inc/modules/product-bundles/admin/options.php:59 4061 msgid "Subtotal" 4062 msgstr "" 4063 4064 #: inc/modules/product-bundles/admin/options.php:60 4065 msgid "Hide" 4066 msgstr "" 4067 4068 #: inc/modules/product-bundles/admin/options.php:68 4069 msgid "Calculate the prices of bundled products based on" 4070 msgstr "" 4071 4072 #: inc/modules/product-bundles/admin/options.php:70 4073 msgid "Regular price" 4074 msgstr "" 4075 4076 #: inc/modules/product-bundles/admin/options.php:71 4077 msgid "Sale Price" 4078 msgstr "" 4079 4080 #: inc/modules/product-bundles/admin/options.php:79 4081 msgid "Where to display the bundled products" 4082 msgstr "" 4083 4084 #: inc/modules/product-bundles/admin/options.php:81 4085 msgid "Before add to cart section" 4086 msgstr "" 4087 4088 #: inc/modules/product-bundles/admin/options.php:82 4089 msgid "After add to cart section" 4090 msgstr "" 4091 4092 #: inc/modules/product-bundles/admin/options.php:92 4093 msgid "Cart settings" 4094 msgstr "" 4095 4096 #: inc/modules/product-bundles/admin/options.php:97 4033 4097 msgid "Hide bundled products in cart" 4034 4098 msgstr "" 4035 4099 4036 #: inc/modules/product-bundles/admin/options.php: 294100 #: inc/modules/product-bundles/admin/options.php:104 4037 4101 msgid "Hide bundled products in mini cart" 4038 4102 msgstr "" 4039 4103 4040 #: inc/modules/product-bundles/admin/options.php: 434041 msgid " Display link for each bundled producton cart page"4042 msgstr "" 4043 4044 #: inc/modules/product-bundles/admin/options.php: 504104 #: inc/modules/product-bundles/admin/options.php:118 4105 msgid "Include links to bundled products on cart page" 4106 msgstr "" 4107 4108 #: inc/modules/product-bundles/admin/options.php:125 4045 4109 msgid "Cart contents count will include" 4046 4110 msgstr "" 4047 4111 4048 #: inc/modules/product-bundles/admin/options.php: 524112 #: inc/modules/product-bundles/admin/options.php:127 4049 4113 msgid "The bundle as one product" 4050 4114 msgstr "" 4051 4115 4052 #: inc/modules/product-bundles/admin/options.php: 534116 #: inc/modules/product-bundles/admin/options.php:128 4053 4117 msgid "Both bundle and bundled products" 4054 4118 msgstr "" 4055 4119 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 4121 msgid "Show bundled products" 4122 msgstr "" 4123 4124 #: inc/modules/product-bundles/admin/options.php:138 4125 msgid "List inline" 4126 msgstr "" 4127 4128 #: inc/modules/product-bundles/admin/options.php:139 4129 msgid "Bulleted list" 4122 4130 msgstr "" 4123 4131 -
merchant/tags/1.9.9/merchant.php
r3083515 r3083531 4 4 * Plugin URI: https://athemes.com 5 5 * 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. 86 * Version: 1.9.9 7 7 * Author: aThemes 8 8 * Author URI: https://athemes.com … … 13 13 * 14 14 * WC requires at least: 6.0 15 * WC tested up to: 8. 7.015 * WC tested up to: 8.8.3 16 16 * 17 17 * @package Merchant … … 25 25 26 26 // Merchant constants. 27 define( 'MERCHANT_VERSION', '1.9. 8' );27 define( 'MERCHANT_VERSION', '1.9.9' ); 28 28 define( 'MERCHANT_FILE', __FILE__ ); 29 29 define( 'MERCHANT_BASE', trailingslashit( plugin_basename( MERCHANT_FILE ) ) ); -
merchant/tags/1.9.9/readme.txt
r3083515 r3083531 4 4 Tested up to: 6.5 5 5 Requires PHP: 7.0 6 Stable tag: 1.9. 86 Stable tag: 1.9.9 7 7 Contributors: aThemes 8 8 License: GPLv3 or later … … 217 217 218 218 == Changelog == 219 = 1.9.9 = 220 * Changed - Conditional changes in some modules. 221 219 222 = 1.9.8 = 220 223 * 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 53 53 'icon' => Merchant_SVG_Icons::get_svg_icon( 'module-product-bundles' ), 54 54 'title' => esc_html__( 'Product Bundles', 'merchant' ), 55 'desc' => esc_html__( 'C ombine 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' ), 56 56 'tutorial_url' => 'https://docs.athemes.com/article/merchant-product-bundles/', 57 57 ), -
merchant/trunk/inc/functions.php
r3079548 r3083531 181 181 'merchant_module_trust_badges', 182 182 'merchant_module_advanced_reviews', 183 'merchant_module_frequen cy_bought_together',183 'merchant_module_frequently_bought_together', 184 184 'merchant_module_buy_x_get_y', 185 185 'merchant_module_product_bundles', -
merchant/trunk/inc/modules/product-bundles/admin/options.php
r3079548 r3083531 11 11 } 12 12 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 */ 18 do_action( 'merchant_admin_before_include_modules_options', Merchant_Product_Bundles::MODULE_ID ); 70 19 71 20 Merchant_Admin_Options::create( array( 72 21 'module' => Merchant_Product_Bundles::MODULE_ID, 73 'title' => esc_html__( 'Product single page', 'merchant' ),22 'title' => esc_html__( 'Product page settings', 'merchant' ), 74 23 'fields' => array( 75 24 … … 77 26 'id' => 'bundled_thumb', 78 27 'type' => 'switcher', 79 'title' => __( 'Display bundled product sthumbnails', 'merchant' ),80 'default' => 0,28 'title' => __( 'Display bundled product thumbnails', 'merchant' ), 29 'default' => '1', 81 30 ), 82 31 … … 84 33 'id' => 'bundled_description', 85 34 'type' => 'switcher', 86 'title' => __( 'Display descriptions of bundled products', 'merchant' ),35 'title' => __( 'Display bundled product descriptions', 'merchant' ), 87 36 'default' => 0, 88 37 ), … … 91 40 'id' => 'bundled_qty', 92 41 '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', 95 51 ), 96 52 … … 131 87 ) ); 132 88 89 // Settings 90 Merchant_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 133 146 134 147 // Shortcode … … 146 159 'type' => 'info', 147 160 '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' ), 149 163 ), 150 164 array( -
merchant/trunk/inc/modules/product-bundles/class-product-bundles.php
r3079548 r3083531 65 65 add_filter( 'merchant_module_preview', array( $this, 'render_admin_preview' ), 10, 2 ); 66 66 } 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 67 100 } 68 101 … … 116 149 public function admin_preview_content( $settings ) { 117 150 ?> 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"> 135 168 <div class="mrc-preview-bundle-product"> 136 169 <div class="mrc-preview-bundle-product-image"></div> … … 158 191 </div> 159 192 </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> 163 196 <?php 164 197 } -
merchant/trunk/languages/merchant.pot
r3083515 r3083531 9 9 "Language-Team: aThemes <[email protected]>\n" 10 10 "Last-Translator: aThemes <[email protected]>\n" 11 "POT-Creation-Date: 2024-05-08 1 8:30+0000\n"11 "POT-Creation-Date: 2024-05-08 19:14+0000\n" 12 12 "Report-Msgid-Bugs-To: https://athemes.com/contact/\n" 13 13 "X-Poedit-Basepath: ..\n" … … 107 107 108 108 #: admin/classes/class-merchant-admin-modules.php:55 109 msgid "C ombine multiple products into bundles to sell at discounted or regular prices"109 msgid "Create bundles of products to be sold together" 110 110 msgstr "" 111 111 … … 1216 1216 msgstr "" 1217 1217 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: 881218 #: 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 1219 1219 msgid "Start typing an address..." 1220 1220 msgstr "" … … 1652 1652 msgstr "" 1653 1653 1654 #: inc/modules/product-bundles/class-product-bundles.php:85 1655 msgid "To create a new product bundle (simple or variable), go to Products > Add New menu in the left sidebar of your WordPress admin area." 1656 msgstr "" 1657 1658 #: inc/modules/product-bundles/class-product-bundles.php:92, inc/modules/frequently-bought-together/admin/options.php:20 1659 msgid "Add New Bundle" 1660 msgstr "" 1661 1654 1662 #: 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 1655 1663 msgid "Spring Special" … … 2801 2809 msgstr "" 2802 2810 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:1 37, 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:1392811 #: 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 2804 2812 msgid "Use shortcode" 2805 2813 msgstr "" 2806 2814 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:1 48, 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:1452815 #: 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 2808 2816 msgid "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." 2809 2817 msgstr "" 2810 2818 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:1 53, 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:1502819 #: 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 2812 2820 msgid "Shortcode text" 2813 2821 msgstr "" … … 3785 3793 msgstr "" 3786 3794 3787 #: inc/modules/frequently-bought-together/admin/options.php:203788 msgid "Add New Bundle"3789 msgstr ""3790 3791 3795 #: inc/modules/frequently-bought-together/admin/options.php:26, inc/modules/volume-discounts/admin/options.php:27 3792 3796 msgid "Create Discount Tiers" … … 4026 4030 msgstr "" 4027 4031 4028 #: inc/modules/product-bundles/admin/options.php:174029 msgid "General settings"4030 msgstr ""4031 4032 4032 #: inc/modules/product-bundles/admin/options.php:22 4033 msgid "Product page settings" 4034 msgstr "" 4035 4036 #: inc/modules/product-bundles/admin/options.php:28 4037 msgid "Display bundled product thumbnails" 4038 msgstr "" 4039 4040 #: inc/modules/product-bundles/admin/options.php:35 4041 msgid "Display bundled product descriptions" 4042 msgstr "" 4043 4044 #: inc/modules/product-bundles/admin/options.php:42 4045 msgid "Display bundled product quantities" 4046 msgstr "" 4047 4048 #: inc/modules/product-bundles/admin/options.php:49 4049 msgid "Make bundled product thumbnails and titles clickable" 4050 msgstr "" 4051 4052 #: inc/modules/product-bundles/admin/options.php:56 4053 msgid "Display the prices of bundled products" 4054 msgstr "" 4055 4056 #: inc/modules/product-bundles/admin/options.php:58 4057 msgid "Price per unit" 4058 msgstr "" 4059 4060 #: inc/modules/product-bundles/admin/options.php:59 4061 msgid "Subtotal" 4062 msgstr "" 4063 4064 #: inc/modules/product-bundles/admin/options.php:60 4065 msgid "Hide" 4066 msgstr "" 4067 4068 #: inc/modules/product-bundles/admin/options.php:68 4069 msgid "Calculate the prices of bundled products based on" 4070 msgstr "" 4071 4072 #: inc/modules/product-bundles/admin/options.php:70 4073 msgid "Regular price" 4074 msgstr "" 4075 4076 #: inc/modules/product-bundles/admin/options.php:71 4077 msgid "Sale Price" 4078 msgstr "" 4079 4080 #: inc/modules/product-bundles/admin/options.php:79 4081 msgid "Where to display the bundled products" 4082 msgstr "" 4083 4084 #: inc/modules/product-bundles/admin/options.php:81 4085 msgid "Before add to cart section" 4086 msgstr "" 4087 4088 #: inc/modules/product-bundles/admin/options.php:82 4089 msgid "After add to cart section" 4090 msgstr "" 4091 4092 #: inc/modules/product-bundles/admin/options.php:92 4093 msgid "Cart settings" 4094 msgstr "" 4095 4096 #: inc/modules/product-bundles/admin/options.php:97 4033 4097 msgid "Hide bundled products in cart" 4034 4098 msgstr "" 4035 4099 4036 #: inc/modules/product-bundles/admin/options.php: 294100 #: inc/modules/product-bundles/admin/options.php:104 4037 4101 msgid "Hide bundled products in mini cart" 4038 4102 msgstr "" 4039 4103 4040 #: inc/modules/product-bundles/admin/options.php: 434041 msgid " Display link for each bundled producton cart page"4042 msgstr "" 4043 4044 #: inc/modules/product-bundles/admin/options.php: 504104 #: inc/modules/product-bundles/admin/options.php:118 4105 msgid "Include links to bundled products on cart page" 4106 msgstr "" 4107 4108 #: inc/modules/product-bundles/admin/options.php:125 4045 4109 msgid "Cart contents count will include" 4046 4110 msgstr "" 4047 4111 4048 #: inc/modules/product-bundles/admin/options.php: 524112 #: inc/modules/product-bundles/admin/options.php:127 4049 4113 msgid "The bundle as one product" 4050 4114 msgstr "" 4051 4115 4052 #: inc/modules/product-bundles/admin/options.php: 534116 #: inc/modules/product-bundles/admin/options.php:128 4053 4117 msgid "Both bundle and bundled products" 4054 4118 msgstr "" 4055 4119 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 4121 msgid "Show bundled products" 4122 msgstr "" 4123 4124 #: inc/modules/product-bundles/admin/options.php:138 4125 msgid "List inline" 4126 msgstr "" 4127 4128 #: inc/modules/product-bundles/admin/options.php:139 4129 msgid "Bulleted list" 4122 4130 msgstr "" 4123 4131 -
merchant/trunk/merchant.php
r3079548 r3083531 4 4 * Plugin URI: https://athemes.com 5 5 * 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. 86 * Version: 1.9.9 7 7 * Author: aThemes 8 8 * Author URI: https://athemes.com … … 13 13 * 14 14 * WC requires at least: 6.0 15 * WC tested up to: 8. 7.015 * WC tested up to: 8.8.3 16 16 * 17 17 * @package Merchant … … 25 25 26 26 // Merchant constants. 27 define( 'MERCHANT_VERSION', '1.9. 8' );27 define( 'MERCHANT_VERSION', '1.9.9' ); 28 28 define( 'MERCHANT_FILE', __FILE__ ); 29 29 define( 'MERCHANT_BASE', trailingslashit( plugin_basename( MERCHANT_FILE ) ) ); -
merchant/trunk/readme.txt
r3079548 r3083531 4 4 Tested up to: 6.5 5 5 Requires PHP: 7.0 6 Stable tag: 1.9. 86 Stable tag: 1.9.9 7 7 Contributors: aThemes 8 8 License: GPLv3 or later … … 217 217 218 218 == Changelog == 219 = 1.9.9 = 220 * Changed - Conditional changes in some modules. 221 219 222 = 1.9.8 = 220 223 * 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.