PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 2.1.13
ShopBuilder – WooCommerce Builder For Elementor v2.1.13
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
← All changes | app/Elementor/Helper/ControlHelper.php +37 -2 2.1.02.1.13 View file →
@@ -129,8 +129,13 @@
129 129 'title' => esc_html__( 'Grid Layout 7', 'shopbuilder' ),
130 130 'url' => esc_url( rtsb()->get_assets_uri( 'images/layout/grid-style-7.png' ) ),
131 131 'is_pro' => $status,
132 132 ],
133 + 'grid-layout8' => [
134 + 'title' => esc_html__( 'Grid Layout 8', 'shopbuilder' ),
135 + 'url' => esc_url( rtsb()->get_assets_uri( 'images/layout/grid-style-8.png' ) ),
136 + 'is_pro' => $status,
137 + ],
133 138
134 139 ]
135 140 );
136 141 }
@@ -164,14 +169,34 @@
164 169 );
165 170 }
166 171
167 172 /**
173 + * Multi Step Checkout Layouts
174 + *
175 + * @return array
176 + */
177 + public static function multi_step_checkout_layouts() {
178 + $status = ! rtsb()->has_pro();
179 +
180 + return apply_filters(
181 + 'rtsb/elements/elementor/single_product_tab_layouts',
182 + [
183 + 'layout1' => [
184 + 'title' => esc_html__( 'Layout 1', 'shopbuilder' ),
185 + 'url' => esc_url( rtsb()->get_assets_uri( 'images/layout/tab-01.png' ) ),
186 + ],
187 +
188 + ]
189 + );
190 + }
191 +
192 + /**
168 193 * Single Advanced Product Tab Layouts
169 194 *
170 195 * @return array
171 196 */
172 197 public static function single_advanced_product_tab_layouts() {
173 -
198 + // TODO:: Check If the FUnction Used Or Not.
174 199 return apply_filters(
175 200 'rtsb/elements/elementor/single_advanced_product_tab_layouts',
176 201 [
177 202 'default' => [
@@ -241,8 +266,13 @@
241 266 'title' => esc_html__( 'Slider Layout 8', 'shopbuilder' ),
242 267 'url' => esc_url( rtsb()->get_assets_uri( 'images/layout/list-style-6.png' ) ),
243 268 'is_pro' => $status,
244 269 ],
270 + 'slider-layout9' => [
271 + 'title' => esc_html__( 'Slider Layout 9', 'shopbuilder' ),
272 + 'url' => esc_url( rtsb()->get_assets_uri( 'images/layout/grid-style-8.png' ) ),
273 + 'is_pro' => $status,
274 + ],
245 275 ]
246 276 );
247 277 }
248 278
@@ -284,8 +314,13 @@
284 314 'title' => esc_html__( 'List Layout 6', 'shopbuilder' ),
285 315 'url' => esc_url( rtsb()->get_assets_uri( 'images/layout/list-style-6.png' ) ),
286 316 'is_pro' => $status,
287 317 ],
318 + 'list-layout7' => [
319 + 'title' => esc_html__( 'List Layout 7', 'shopbuilder' ),
320 + 'url' => esc_url( rtsb()->get_assets_uri( 'images/layout/list-style-7.png' ) ),
321 + 'is_pro' => $status,
322 + ],
288 323 ]
289 324 );
290 325 }
291 326
@@ -502,9 +537,9 @@
502 537 return [
503 538 'recent' => esc_html__( 'Default', 'shopbuilder' ),
504 539 'featured' => esc_html__( 'Featured Products', 'shopbuilder' ),
505 540 'best-selling' => esc_html__( 'Best Selling Products', 'shopbuilder' ),
506 - 'sale' => esc_html__( 'Sale Products', 'shopbuilder' ),
541 + 'sale' => esc_html__( 'On Sale Products', 'shopbuilder' ),
507 542 'top-rated' => esc_html__( 'Top Rated Products', 'shopbuilder' ),
508 543 'recently-viewed' => esc_html__( 'Recently Viewed Products', 'shopbuilder' ),
509 544 ];
510 545 }