PluginProbe
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler / 1.6.5
FluentCart A New Era of eCommerce – Faster, Lighter, and Simpler v1.6.5
1.6.6 1.6.5 1.6.4 1.6.3 1.6.2 1.6.1 1.6.0 1.5.4 1.5.5 1.5.3 1.5.2 1.5.1 1.5.0 1.4.2 1.4.1 1.4.0 1.3.28 1.3.27 1.3.26 1.3.25 1.3.23 1.3.22 1.3.21 1.3.20 1.3.19 All 49 releases
← All changes | app/Modules/Templating/Bricks/Elements/BuySection.php +8 -8 1.6.2 → 1.6.5 View file →
@@ -44,12 +44,12 @@
44 44 {
45 45 $this->controls['queryType'] = [
46 46 'tab' => 'content',
47 47 'type' => 'select',
48 - 'label' => esc_html__('Query Type', 'fluent-cart-bricks-blocks'),
48 + 'label' => esc_html__('Query Type', 'fluent-cart'),
49 49 'options' => [
50 - 'default' => esc_html__('Default', 'fluent-cart-bricks-blocks'),
51 - 'custom' => esc_html__('Custom', 'fluent-cart-bricks-blocks'),
50 + 'default' => esc_html__('Default', 'fluent-cart'),
51 + 'custom' => esc_html__('Custom', 'fluent-cart'),
52 52 ],
53 53 'default' => 'default',
54 54 'inline' => true,
55 55 ];
@@ -56,11 +56,11 @@
56 56
57 57 $this->controls['productId'] = [
58 58 'tab' => 'content',
59 59 'type' => 'select',
60 - 'label' => esc_html__('Product', 'fluent-cart-bricks-blocks'),
60 + 'label' => esc_html__('Product', 'fluent-cart'),
61 61 'options' => BricksLoader::getProductOptions(),
62 - 'placeholder' => esc_html__('Select a product', 'fluent-cart-bricks-blocks'),
62 + 'placeholder' => esc_html__('Select a product', 'fluent-cart'),
63 63 'searchable' => true,
64 64 'rerender' => true,
65 65 'required' => ['queryType', '=', 'custom'],
66 66 ];
@@ -67,10 +67,10 @@
67 67
68 68 $this->controls['manualProductId'] = [
69 69 'tab' => 'content',
70 70 'type' => 'text',
71 - 'label' => esc_html__('Manual Product ID', 'fluent-cart-bricks-blocks'),
72 - 'description' => esc_html__('Use this if the product is not available in dropdown.', 'fluent-cart-bricks-blocks'),
71 + 'label' => esc_html__('Manual Product ID', 'fluent-cart'),
72 + 'description' => esc_html__('Use this if the product is not available in dropdown.', 'fluent-cart'),
73 73 'required' => [['queryType', '=', 'custom'], ['productId', '=', '']],
74 74 ];
75 75
76 76 // BUTTONS
@@ -355,9 +355,9 @@
355 355 $product = ProductDataSetup::getProductModel($productId);
356 356
357 357 if (!$product) {
358 358 return $this->render_element_placeholder([
359 - 'title' => esc_html__('Select a product', 'fluent-cart-bricks-blocks'),
359 + 'title' => esc_html__('Select a product', 'fluent-cart'),
360 360 ]);
361 361 }
362 362
363 363 ?>