Blocksy Companion - Version 1.8.8

Version Description

Download this release

Release Info

Developer creativethemeshq
Plugin Icon wp plugin Blocksy Companion
Version 1.8.8
Comparing to
See all releases

Code changes from version 1.8.7.5 to 1.8.8

Files changed (40) hide show
  1. blocksy-companion.php +1 -1
  2. framework/cache-reset-manager.php +3 -0
  3. framework/extensions-manager.php +12 -0
  4. framework/extensions/cookies-consent/config.php +1 -1
  5. framework/extensions/cookies-consent/static/bundle/main.min.css +1 -1
  6. framework/extensions/newsletter-subscribe/config.php +1 -1
  7. framework/extensions/newsletter-subscribe/static/bundle/main.min.css +1 -1
  8. framework/extensions/product-reviews/config.php +1 -1
  9. framework/extensions/product-reviews/static/bundle/main-admin.min.css +1 -1
  10. framework/extensions/product-reviews/static/bundle/main.min.css +1 -1
  11. framework/extensions/trending/config.php +1 -1
  12. framework/extensions/trending/customizer.php +1 -1
  13. framework/extensions/trending/static/bundle/main.min.css +1 -1
  14. framework/extensions/widgets/config.php +1 -1
  15. framework/extensions/widgets/static/bundle/main.min.css +1 -1
  16. framework/extensions/widgets/widgets/ct-posts/options.php +2 -1
  17. framework/extensions/widgets/widgets/ct-posts/view.php +9 -3
  18. framework/features/conditions-manager.php +7 -3
  19. framework/features/dynamic-css.php +1 -1
  20. framework/features/google-analytics.php +11 -4
  21. framework/features/header/items/account/options.php +2 -2
  22. framework/features/header/items/account/views/login.php +3 -3
  23. framework/features/header/items/account/views/logout.php +1 -1
  24. framework/features/opengraph-meta-data.php +2 -2
  25. framework/theme-integration.php +14 -10
  26. framework/views/blocksy-posts.php +8 -0
  27. languages/blocksy-companion.pot +1618 -866
  28. readme.txt +11 -1
  29. static/bundle/dashboard.js +1 -1
  30. static/bundle/dashboard.min.css +2 -2
  31. static/bundle/main.min.css +1 -1
  32. static/bundle/options.js +1 -1
  33. static/bundle/options.min.css +1 -1
  34. static/bundle/sticky.js +1 -1
  35. static/js/frontend/sticky/shrink-handle-logo.js +5 -3
  36. static/js/options/CustomizerOptionsManager.js +2 -2
  37. static/js/screens/DemoInstall.js +1 -1
  38. static/sass/beta.scss +1 -1
  39. static/sass/demo-install/demo-list.scss +1 -1
  40. static/sass/extensions/main.scss +4 -4
blocksy-companion.php CHANGED
@@ -3,7 +3,7 @@
3
  /*
4
  Plugin Name: Blocksy Companion
5
  Description: This plugin is the companion for the Blocksy theme, it runs and adds its enhacements only if the Blocksy theme is installed and active.
6
- Version: 1.8.7.5
7
  Author: CreativeThemes
8
  Author URI: https://creativethemes.com
9
  Text Domain: blc
3
  /*
4
  Plugin Name: Blocksy Companion
5
  Description: This plugin is the companion for the Blocksy theme, it runs and adds its enhacements only if the Blocksy theme is installed and active.
6
+ Version: 1.8.8
7
  Author: CreativeThemes
8
  Author URI: https://creativethemes.com
9
  Text Domain: blc
framework/cache-reset-manager.php CHANGED
@@ -101,6 +101,7 @@ class CacheResetManager {
101
  }
102
 
103
  if (class_exists('WP_Optimize') && defined('WPO_PLUGIN_MAIN_PATH')) {
 
104
  if (! class_exists('WP_Optimize_Cache_Commands')) include_once(WPO_PLUGIN_MAIN_PATH . 'cache/class-cache-commands.php');
105
  if (! class_exists('WP_Optimize_Minify_Commands')) include_once(WPO_PLUGIN_MAIN_PATH . 'minify/class-wp-optimize-minify-commands.php');
106
  if (! class_exists('WP_Optimize_Minify_Cache_Functions')) include_once(WPO_PLUGIN_MAIN_PATH . 'minify/class-wp-optimize-minify-cache-functions.php');
@@ -114,6 +115,8 @@ class CacheResetManager {
114
  $wpoptimize_minify_commands = new \WP_Optimize_Minify_Commands();
115
  $wpoptimize_minify_commands->purge_minify_cache();
116
  }
 
 
117
  }
118
 
119
  if (
101
  }
102
 
103
  if (class_exists('WP_Optimize') && defined('WPO_PLUGIN_MAIN_PATH')) {
104
+ ob_start();
105
  if (! class_exists('WP_Optimize_Cache_Commands')) include_once(WPO_PLUGIN_MAIN_PATH . 'cache/class-cache-commands.php');
106
  if (! class_exists('WP_Optimize_Minify_Commands')) include_once(WPO_PLUGIN_MAIN_PATH . 'minify/class-wp-optimize-minify-commands.php');
107
  if (! class_exists('WP_Optimize_Minify_Cache_Functions')) include_once(WPO_PLUGIN_MAIN_PATH . 'minify/class-wp-optimize-minify-cache-functions.php');
115
  $wpoptimize_minify_commands = new \WP_Optimize_Minify_Commands();
116
  $wpoptimize_minify_commands->purge_minify_cache();
117
  }
118
+
119
+ ob_get_clean();
120
  }
121
 
122
  if (
framework/extensions-manager.php CHANGED
@@ -309,6 +309,12 @@ class ExtensionsManager
309
  $class_name = array_map( 'ucfirst', $class_name );
310
  $class_name = 'BlocksyExtension' . implode( '', $class_name ) . 'PreBoot';
311
  $path = $this->extensions[$id]['path'];
 
 
 
 
 
 
312
  if ( !file_exists( $path . '/pre-boot.php' ) ) {
313
  return;
314
  }
@@ -340,6 +346,12 @@ class ExtensionsManager
340
  $class_name = array_map( 'ucfirst', $class_name );
341
  $class_name = 'BlocksyExtension' . implode( '', $class_name );
342
  $path = $this->extensions[$id]['path'];
 
 
 
 
 
 
343
  if ( !file_exists( $path . '/extension.php' ) ) {
344
  return;
345
  }
309
  $class_name = array_map( 'ucfirst', $class_name );
310
  $class_name = 'BlocksyExtension' . implode( '', $class_name ) . 'PreBoot';
311
  $path = $this->extensions[$id]['path'];
312
+ if ( !$path ) {
313
+ return;
314
+ }
315
+ if ( !@is_readable( $path . '/pre-boot.php' ) ) {
316
+ return;
317
+ }
318
  if ( !file_exists( $path . '/pre-boot.php' ) ) {
319
  return;
320
  }
346
  $class_name = array_map( 'ucfirst', $class_name );
347
  $class_name = 'BlocksyExtension' . implode( '', $class_name );
348
  $path = $this->extensions[$id]['path'];
349
+ if ( !$path ) {
350
+ return;
351
+ }
352
+ if ( !@is_readable( $path . '/extension.php' ) ) {
353
+ return;
354
+ }
355
  if ( !file_exists( $path . '/extension.php' ) ) {
356
  return;
357
  }
framework/extensions/cookies-consent/config.php CHANGED
@@ -2,5 +2,5 @@
2
 
3
  $config = [
4
  'name' => __('Cookies Consent', 'blc'),
5
- 'description' => __('Enable this extension in order to comply with the GDPR regulations.', 'blc')
6
  ];
2
 
3
  $config = [
4
  'name' => __('Cookies Consent', 'blc'),
5
+ 'description' => __('Display a cookie acceptance box in order to comply with the privacy regulations in your country.', 'blc')
6
  ];
framework/extensions/cookies-consent/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.7.5
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
framework/extensions/newsletter-subscribe/config.php CHANGED
@@ -2,6 +2,6 @@
2
 
3
  $config = [
4
  'name' => __('Newsletter Subscribe', 'blc'),
5
- 'description' => __('Display a subscribe form with the help of a widget, shortcode or a block.', 'blc')
6
  ];
7
 
2
 
3
  $config = [
4
  'name' => __('Newsletter Subscribe', 'blc'),
5
+ 'description' => __('Easily capture new leads for your newsletter with the help of a widget, shortcode or even a block inserted on your pages or posts.', 'blc')
6
  ];
7
 
framework/extensions/newsletter-subscribe/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.7.5
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
framework/extensions/product-reviews/config.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  $config = [
4
  'name' => __('Product Reviews', 'blc'),
5
- 'description' => __('A custom post type specially designed for creating product reviews.', 'blc'),
6
  'require_refresh' => true
7
 
8
  // 'hidden' => true
2
 
3
  $config = [
4
  'name' => __('Product Reviews', 'blc'),
5
+ 'description' => __('This extension lets you easily create an affiliate marketing type of website by giving you options to create a personalized product review and use your affiliate links to direct your readers to the purchase page.', 'blc'),
6
  'require_refresh' => true
7
 
8
  // 'hidden' => true
framework/extensions/product-reviews/static/bundle/main-admin.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.7.5
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
framework/extensions/product-reviews/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.7.5
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
framework/extensions/trending/config.php CHANGED
@@ -2,5 +2,5 @@
2
 
3
  $config = [
4
  'name' => __('Trending Posts', 'blc'),
5
- 'description' => __('Display a trending list of posts, products or custom post types at the bottom of your website.', 'blc')
6
  ];
2
 
3
  $config = [
4
  'name' => __('Trending Posts', 'blc'),
5
+ 'description' => __('Highlight your most popular posts or products based on the number of comments or reviews they have gotten in the specified period of time.', 'blc')
6
  ];
framework/extensions/trending/customizer.php CHANGED
@@ -44,7 +44,7 @@ foreach ($all_post_types as $custom_post_type => $label) {
44
  $taxonomies = get_object_taxonomies($custom_post_type);
45
 
46
  if (count($taxonomies) > 0) {
47
- $taxonomy = $taxonomies[0];
48
  } else {
49
  $taxonomy = 'nonexistent';
50
  }
44
  $taxonomies = get_object_taxonomies($custom_post_type);
45
 
46
  if (count($taxonomies) > 0) {
47
+ $taxonomy = $taxonomies;
48
  } else {
49
  $taxonomy = 'nonexistent';
50
  }
framework/extensions/trending/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.7.5
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
framework/extensions/widgets/config.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
 
3
  $config = [
4
- 'description' => __('Popular/Recent Posts, Advertisement, Contact Info, Mailchimp Subscribe, Social Icons and more.', 'blc')
5
  ];
1
  <?php
2
 
3
  $config = [
4
+ 'description' => __('Add new handcrafted widgets to your sidebars! Social Network Icons, Newsletter Subscribe, Contact Info, Custom Ads and even a Popular/Recent Posts are the choices available.', 'blc')
5
  ];
framework/extensions/widgets/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.7.5
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.8
3
  *
4
  * Copyright (c) 2021
5
  * Licensed GPLv2+
framework/extensions/widgets/widgets/ct-posts/options.php CHANGED
@@ -191,13 +191,14 @@ $options = [
191
  'type' => [
192
  'type' => 'ct-select',
193
  'label' => __('Sort by', 'blc'),
194
- 'value' => 'commented',
195
  'design' => 'inline',
196
  'choices' => blocksy_ordered_keys(
197
  [
198
  'default' => __('Default', 'blc'),
199
  'recent' => __('Recent', 'blc'),
200
  'commented' => __('Most Commented', 'blc'),
 
201
  ]
202
  ),
203
  ],
191
  'type' => [
192
  'type' => 'ct-select',
193
  'label' => __('Sort by', 'blc'),
194
+ 'value' => 'recent',
195
  'design' => 'inline',
196
  'choices' => blocksy_ordered_keys(
197
  [
198
  'default' => __('Default', 'blc'),
199
  'recent' => __('Recent', 'blc'),
200
  'commented' => __('Most Commented', 'blc'),
201
+ 'random' => __('Random', 'blc'),
202
  ]
203
  ),
204
  ],
framework/extensions/widgets/widgets/ct-posts/view.php CHANGED
@@ -51,9 +51,15 @@ if ($post_type !== 'page') {
51
  $type = blocksy_default_akg('type', $atts, 'recent');
52
 
53
  if ($type !== 'default') {
54
- $query_args['orderby'] = (
55
- 'recent' === $type
56
- ) ? 'post_date' : 'comment_count';
 
 
 
 
 
 
57
  }
58
 
59
  $query_args['date_query'] = $date_query;
51
  $type = blocksy_default_akg('type', $atts, 'recent');
52
 
53
  if ($type !== 'default') {
54
+ $orderby_map = [
55
+ 'random' => 'rand',
56
+ 'recent' => 'post_date',
57
+ 'commented' => 'comment_count'
58
+ ];
59
+
60
+ if (isset($orderby_map[$type])) {
61
+ $query_args['orderby'] = $orderby_map[$type];
62
+ }
63
  }
64
 
65
  $query_args['date_query'] = $date_query;
framework/features/conditions-manager.php CHANGED
@@ -255,15 +255,18 @@ class ConditionsManager {
255
 
256
  if ($rule['rule'] === 'post_with_taxonomy_ids') {
257
  $is_blocksy_page = blocksy_is_page();
 
258
 
259
- if (is_singular() || $is_blocksy_page) {
260
  $post_id = get_the_ID();
261
 
262
  if ($is_blocksy_page) {
263
  $post_id = $is_blocksy_page;
264
  }
265
 
266
- global $post;
 
 
267
 
268
  if (
269
  isset($rule['payload'])
@@ -274,7 +277,8 @@ class ConditionsManager {
274
  ) {
275
  return has_term(
276
  $rule['payload']['taxonomy_id'],
277
- get_term($rule['payload']['taxonomy_id'])->taxonomy
 
278
  );
279
  }
280
  }
255
 
256
  if ($rule['rule'] === 'post_with_taxonomy_ids') {
257
  $is_blocksy_page = blocksy_is_page();
258
+ global $blocksy_is_quick_view;
259
 
260
+ if (is_singular() || $is_blocksy_page || true) {
261
  $post_id = get_the_ID();
262
 
263
  if ($is_blocksy_page) {
264
  $post_id = $is_blocksy_page;
265
  }
266
 
267
+ if (wp_doing_ajax() && isset($_GET['product_id'])) {
268
+ $post_id = sanitize_text_field($_GET['product_id']);
269
+ }
270
 
271
  if (
272
  isset($rule['payload'])
277
  ) {
278
  return has_term(
279
  $rule['payload']['taxonomy_id'],
280
+ get_term($rule['payload']['taxonomy_id'])->taxonomy,
281
+ $post_id
282
  );
283
  }
284
  }
framework/features/dynamic-css.php CHANGED
@@ -47,7 +47,7 @@ class DynamicCss {
47
  'type' => 'ct-radio',
48
  'value' => 'file',
49
  'view' => 'text',
50
- 'desc' => __( 'The strategy of outputing the dynamic CSS. File - all the CSS code will be placed in a static file, otherwise it will be placed inline in head.', 'blc' ),
51
  'choices' => [
52
  'file' => __( 'File', 'blc' ),
53
  'inline' => __( 'Inline', 'blc' ),
47
  'type' => 'ct-radio',
48
  'value' => 'file',
49
  'view' => 'text',
50
+ 'desc' => __( 'The strategy of outputting the dynamic CSS. File - all the CSS code will be placed in a static file, otherwise it will be placed inline in head.', 'blc' ),
51
  'choices' => [
52
  'file' => __( 'File', 'blc' ),
53
  'inline' => __( 'Inline', 'blc' ),
framework/features/google-analytics.php CHANGED
@@ -66,12 +66,12 @@ class GoogleAnalytics {
66
  public function generate_google_analytics_opts($options) {
67
  $options[] = [
68
  'analytics_id' => [
69
- 'label' => __( 'Google Analytics', 'blc' ),
70
  'type' => 'text',
71
  'design' => 'block',
72
  'divider' => 'bottom',
73
  'value' => '',
74
- 'desc' => __( 'Insert your Google Analytics tracking ID.', 'blc' ),
75
  'disableRevertButton' => true,
76
  'setting' => [ 'transport' => 'postMessage' ],
77
  ],
@@ -84,7 +84,7 @@ class GoogleAnalytics {
84
  'value' => '',
85
  'desc' => sprintf(
86
  __(
87
- 'Insert your Google Analytics measurement ID. More instructions can be found %shere%s.',
88
  'blc'
89
  ),
90
  '<a href="https://support.google.com/analytics/answer/9744165?hl=en">',
@@ -98,7 +98,14 @@ class GoogleAnalytics {
98
  'label' => __( 'IP Anonymization', 'blc' ),
99
  'type' => 'ct-switch',
100
  'value' => 'no',
101
- 'desc' => __( 'Enable Google Analytics IP anonymization feature <a href="https://developers.google.com/analytics/devguides/collection/gtagjs/ip-anonymization">(more info)</a>.', 'blc' ),
 
 
 
 
 
 
 
102
  'setting' => [ 'transport' => 'postMessage' ],
103
  ],
104
  ];
66
  public function generate_google_analytics_opts($options) {
67
  $options[] = [
68
  'analytics_id' => [
69
+ 'label' => __( 'Google Analytics v3', 'blc' ),
70
  'type' => 'text',
71
  'design' => 'block',
72
  'divider' => 'bottom',
73
  'value' => '',
74
+ 'desc' => __( 'Link your Google Analytics 3 tracking ID.', 'blc' ),
75
  'disableRevertButton' => true,
76
  'setting' => [ 'transport' => 'postMessage' ],
77
  ],
84
  'value' => '',
85
  'desc' => sprintf(
86
  __(
87
+ 'Link your Google Analytics 4 tracking ID. More info and instructions can be found %shere%s.',
88
  'blc'
89
  ),
90
  '<a href="https://support.google.com/analytics/answer/9744165?hl=en">',
98
  'label' => __( 'IP Anonymization', 'blc' ),
99
  'type' => 'ct-switch',
100
  'value' => 'no',
101
+ 'desc' => sprintf(
102
+ __(
103
+ 'Enable Google Analytics IP Anonymization for enhanced privacy. More info and instructions can be found %shere%s.',
104
+ 'blc'
105
+ ),
106
+ '<a href="https://developers.google.com/analytics/devguides/collection/gtagjs/ip-anonymization">',
107
+ '</a>'
108
+ ),
109
  'setting' => [ 'transport' => 'postMessage' ],
110
  ],
111
  ];
framework/features/header/items/account/options.php CHANGED
@@ -250,7 +250,7 @@ $options = [
250
  'loggedin_label_position' => [
251
  'type' => 'ct-radio',
252
  'label' => __( 'Label Position', 'blc' ),
253
- 'value' => 'right',
254
  'view' => 'text',
255
  'design' => 'block',
256
  'divider' => 'top',
@@ -456,7 +456,7 @@ $options = [
456
  'loggedout_label_position' => [
457
  'type' => 'ct-radio',
458
  'label' => __( 'Label Position', 'blc' ),
459
- 'value' => 'right',
460
  'view' => 'text',
461
  'design' => 'block',
462
  'divider' => 'top',
250
  'loggedin_label_position' => [
251
  'type' => 'ct-radio',
252
  'label' => __( 'Label Position', 'blc' ),
253
+ 'value' => 'left',
254
  'view' => 'text',
255
  'design' => 'block',
256
  'divider' => 'top',
456
  'loggedout_label_position' => [
457
  'type' => 'ct-radio',
458
  'label' => __( 'Label Position', 'blc' ),
459
+ 'value' => 'left',
460
  'view' => 'text',
461
  'design' => 'block',
462
  'divider' => 'top',
framework/features/header/items/account/views/login.php CHANGED
@@ -72,7 +72,7 @@ if (blocksy_akg('loggedin_text', $atts, 'label') === 'username') {
72
  }
73
 
74
  $loggedin_label_position = blocksy_expand_responsive_value(
75
- blocksy_akg('loggedin_label_position', $atts, 'right')
76
  );
77
 
78
  $attr['data-state'] = 'in';
@@ -86,9 +86,9 @@ $attr['aria-label'] = $loggedin_label;
86
 
87
  echo '<a ' . blocksy_attr_to_html($attr) . '>';
88
 
89
- if (! empty($loggedin_label) && blocksy_some_device(
90
  $loggedin_account_label_visibility
91
- )) {
92
  echo '<span class="' . trim('ct-label ' . blocksy_visibility_classes(
93
  $loggedin_account_label_visibility
94
  )) . '">';
72
  }
73
 
74
  $loggedin_label_position = blocksy_expand_responsive_value(
75
+ blocksy_akg('loggedin_label_position', $atts, 'left')
76
  );
77
 
78
  $attr['data-state'] = 'in';
86
 
87
  echo '<a ' . blocksy_attr_to_html($attr) . '>';
88
 
89
+ if (! empty($loggedin_label) && (blocksy_some_device(
90
  $loggedin_account_label_visibility
91
+ ) || is_customize_preview())) {
92
  echo '<span class="' . trim('ct-label ' . blocksy_visibility_classes(
93
  $loggedin_account_label_visibility
94
  )) . '">';
framework/features/header/items/account/views/logout.php CHANGED
@@ -23,7 +23,7 @@ if ($login_account_action === 'woocommerce_account') {
23
  }
24
 
25
  $loggedout_label_position = blocksy_expand_responsive_value(
26
- blocksy_akg('loggedout_label_position', $atts, 'right')
27
  );
28
 
29
  $attr['data-state'] = 'out';
23
  }
24
 
25
  $loggedout_label_position = blocksy_expand_responsive_value(
26
+ blocksy_akg('loggedout_label_position', $atts, 'left')
27
  );
28
 
29
  $attr['data-state'] = 'out';
framework/features/opengraph-meta-data.php CHANGED
@@ -14,10 +14,10 @@ class OpenGraphMetaData {
14
  ],
15
 
16
  'enable_opengraph' => [
17
- 'label' => __( 'Opengraph Meta Data', 'blc' ),
18
  'type' => 'ct-switch',
19
  'value' => 'no',
20
- 'desc' => __( 'Display a preview image and text excerpt when a link to your site is shared.', 'blc' ),
21
  ],
22
 
23
  blocksy_rand_md5() => [
14
  ],
15
 
16
  'enable_opengraph' => [
17
+ 'label' => __( 'OpenGraph Meta Data', 'blc' ),
18
  'type' => 'ct-switch',
19
  'value' => 'no',
20
+ 'desc' => __( 'Enable the OpenGraph rich meta data features for your website.', 'blc' ),
21
  ],
22
 
23
  blocksy_rand_md5() => [
framework/theme-integration.php CHANGED
@@ -85,7 +85,10 @@ class ThemeIntegration {
85
  'slider_image_ratio' => '2/1',
86
  'slider_autoplay' => 'no',
87
 
88
- 'filtering' => false
 
 
 
89
  ]
90
  );
91
 
@@ -95,7 +98,8 @@ class ThemeIntegration {
95
  ['fn' => 'blocksy_render_view'],
96
  $file_path,
97
  [
98
- 'args' => $args
 
99
  ]
100
  );
101
  });
@@ -296,30 +300,30 @@ class ThemeIntegration {
296
  return $mimes;
297
  });
298
 
299
- add_filter('wp_get_attachment_image_attributes', function ($attr, $attachment, $size = 'thumbnail') {
300
- if (! isset($attachment->ID)) {
301
  return $attr;
302
  }
303
 
304
- $mime = get_post_mime_type($attachment->ID);
305
 
306
  if ('image/svg+xml' === $mime) {
307
  $default_height = 100;
308
  $default_width = 100;
309
 
310
- $dimensions = $this->svg_dimensions(get_attached_file($attachment->ID));
311
 
312
  if ($dimensions) {
313
  $default_height = $dimensions['height'];
314
  $default_width = $dimensions['width'];
315
  }
316
 
317
- $attr['height'] = $default_height;
318
- $attr['width'] = $default_width;
319
  }
320
 
321
- return $attr;
322
- }, 10, 3);
323
 
324
  add_filter('blocksy_changelogs_list', function ($changelogs) {
325
  $changelog = null;
85
  'slider_image_ratio' => '2/1',
86
  'slider_autoplay' => 'no',
87
 
88
+ 'filtering' => false,
89
+
90
+ // 404 | skip
91
+ 'no_results' => '404'
92
  ]
93
  );
94
 
98
  ['fn' => 'blocksy_render_view'],
99
  $file_path,
100
  [
101
+ 'args' => $args,
102
+ 'content' => $content
103
  ]
104
  );
105
  });
300
  return $mimes;
301
  });
302
 
303
+ add_filter('wp_get_attachment_image_src', function ($image, $attachment_id, $size, $icon) {
304
+ if (! isset($attachment_id)) {
305
  return $attr;
306
  }
307
 
308
+ $mime = get_post_mime_type($attachment_id);
309
 
310
  if ('image/svg+xml' === $mime) {
311
  $default_height = 100;
312
  $default_width = 100;
313
 
314
+ $dimensions = $this->svg_dimensions(get_attached_file($attachment_id));
315
 
316
  if ($dimensions) {
317
  $default_height = $dimensions['height'];
318
  $default_width = $dimensions['width'];
319
  }
320
 
321
+ $image[2] = $default_height;
322
+ $image[1] = $default_width;
323
  }
324
 
325
+ return $image;
326
+ }, 10, 4);
327
 
328
  add_filter('blocksy_changelogs_list', function ($changelogs) {
329
  $changelog = null;
framework/views/blocksy-posts.php CHANGED
@@ -109,6 +109,14 @@ $query = new WP_Query(apply_filters(
109
  $query_args
110
  ));
111
 
 
 
 
 
 
 
 
 
112
  if ($args['view'] === 'slider') {
113
  $items = '';
114
 
109
  $query_args
110
  ));
111
 
112
+ if (! $query->have_posts() && $args['no_results'] === 'skip') {
113
+ return;
114
+ }
115
+
116
+ if (! empty($content)) {
117
+ echo $content;
118
+ }
119
+
120
  if ($args['view'] === 'slider') {
121
  $items = '';
122
 
languages/blocksy-companion.pot CHANGED
@@ -30,67 +30,141 @@ msgid ""
30
  "version, the plugin is currently NOT RUNNING."
31
  msgstr ""
32
 
33
- #: framework/extensions-manager.php:247,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  #: framework/premium/extensions/custom-fonts/extension.php:142
35
  msgid "Custom Fonts"
36
  msgstr ""
37
 
38
- #: framework/extensions-manager.php:248
39
- msgid "Upload unlimited number of custom fonts."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  msgstr ""
41
 
42
- #: framework/extensions-manager.php:259
43
- msgid "Sidebars"
44
  msgstr ""
45
 
46
- #: framework/extensions-manager.php:260
47
- msgid "Create unlimited number of custom sidebars."
48
  msgstr ""
49
 
50
- #: framework/extensions-manager.php:271
51
- msgid "White Label"
 
52
  msgstr ""
53
 
54
- #: framework/extensions-manager.php:272
55
- msgid "Change theme/companion branding"
 
 
 
56
  msgstr ""
57
 
58
- #: framework/theme-integration.php:252,
59
  #: framework/extensions/widgets/widgets/ct-facebook/options.php:16,
60
  #: framework/extensions/widgets/widgets/ct-facebook/view.php:12,
61
  #: framework/extensions/widgets/widgets/ct-facebook/widget.php:13
62
  msgid "Facebook"
63
  msgstr ""
64
 
65
- #: framework/theme-integration.php:253
66
  msgid "Twitter"
67
  msgstr ""
68
 
69
- #: framework/theme-integration.php:254
70
  msgid "LinkedIn"
71
  msgstr ""
72
 
73
- #: framework/theme-integration.php:255
74
  msgid "Dribbble"
75
  msgstr ""
76
 
77
- #: framework/theme-integration.php:256
78
  msgid "Instagram"
79
  msgstr ""
80
 
81
- #: framework/theme-integration.php:257
82
  msgid "Pinterest"
83
  msgstr ""
84
 
85
- #: framework/theme-integration.php:258
86
  msgid "WordPress"
87
  msgstr ""
88
 
89
- #: framework/theme-integration.php:259
90
  msgid "GitHub"
91
  msgstr ""
92
 
93
- #: framework/theme-integration.php:260,
94
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:114,
95
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:195,
96
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:266,
@@ -98,43 +172,43 @@ msgstr ""
98
  msgid "Medium"
99
  msgstr ""
100
 
101
- #: framework/theme-integration.php:261
102
  msgid "YouTube"
103
  msgstr ""
104
 
105
- #: framework/theme-integration.php:262
106
  msgid "Vimeo"
107
  msgstr ""
108
 
109
- #: framework/theme-integration.php:263
110
  msgid "VKontakte"
111
  msgstr ""
112
 
113
- #: framework/theme-integration.php:264
114
  msgid "Odnoklassniki"
115
  msgstr ""
116
 
117
- #: framework/theme-integration.php:265
118
  msgid "TikTok"
119
  msgstr ""
120
 
121
- #: framework/theme-integration.php:337
122
  msgid "Companion"
123
  msgstr ""
124
 
125
- #: framework/theme-integration.php:353 static/js/screens/SiteExport.js:106
126
  msgid "PRO"
127
  msgstr ""
128
 
129
- #: framework/theme-integration.php:511
130
  msgid "Check your email"
131
  msgstr ""
132
 
133
- #: framework/theme-integration.php:517
134
  msgid "Registration Form"
135
  msgstr ""
136
 
137
- #: framework/theme-integration.php:518
138
  msgid "Register For This Site"
139
  msgstr ""
140
 
@@ -150,141 +224,140 @@ msgstr ""
150
  msgid "Widget Title"
151
  msgstr ""
152
 
153
- #: framework/features/conditions-manager.php:301
154
  msgid "%s Single"
155
  msgstr ""
156
 
157
- #: framework/features/conditions-manager.php:309
158
  msgid "%s Archive"
159
  msgstr ""
160
 
161
- #: framework/features/conditions-manager.php:321
162
  msgid "Entire Website"
163
  msgstr ""
164
 
165
- #: framework/features/conditions-manager.php:327
166
  msgid "Basic"
167
  msgstr ""
168
 
169
- #: framework/features/conditions-manager.php:331
170
  msgid "Singulars"
171
  msgstr ""
172
 
173
- #: framework/features/conditions-manager.php:336
174
  msgid "Archives"
175
  msgstr ""
176
 
177
- #: framework/features/conditions-manager.php:342,
178
  #: framework/extensions/trending/customizer.php:4,
179
  #: framework/extensions/widgets/widgets/ct-posts/options.php:11,
180
  #: framework/extensions/widgets/widgets/ct-posts/options.php:98,
181
- #: framework/extensions/widgets/widgets/ct-posts/view.php:129,
182
  #: framework/extensions/widgets/widgets/ct-posts/widget.php:13,
183
  #: framework/premium/features/premium-header/items/search-input/options.php:4
184
  msgid "Posts"
185
  msgstr ""
186
 
187
- #: framework/features/conditions-manager.php:346,
188
- #: framework/premium/features/content-blocks/hooks-manager.php:266,
189
- #: framework/premium/features/content-blocks/hooks-manager.php:274,
190
- #: framework/premium/features/content-blocks/hooks-manager.php:282,
191
- #: framework/premium/features/content-blocks/hooks-manager.php:289,
192
  #: framework/premium/features/content-blocks/hooks-manager.php:296,
193
- #: framework/premium/features/content-blocks/hooks-manager.php:304
 
 
194
  msgid "Single Post"
195
  msgstr ""
196
 
197
- #: framework/features/conditions-manager.php:351
198
  msgid "All Post Archives"
199
  msgstr ""
200
 
201
- #: framework/features/conditions-manager.php:356
202
  msgid "Post Categories"
203
  msgstr ""
204
 
205
- #: framework/features/conditions-manager.php:361
206
  msgid "Post Tags"
207
  msgstr ""
208
 
209
- #: framework/features/conditions-manager.php:367,
210
  #: framework/extensions/widgets/widgets/ct-posts/options.php:12,
211
  #: framework/premium/features/premium-header/items/search-input/options.php:5
212
  msgid "Pages"
213
  msgstr ""
214
 
215
- #: framework/features/conditions-manager.php:371
216
  msgid "Single Page"
217
  msgstr ""
218
 
219
- #: framework/features/conditions-manager.php:418
220
  msgid "Specific"
221
  msgstr ""
222
 
223
- #: framework/features/conditions-manager.php:422
224
  msgid "Post ID"
225
  msgstr ""
226
 
227
- #: framework/features/conditions-manager.php:427
228
  msgid "Page ID"
229
  msgstr ""
230
 
231
- #: framework/features/conditions-manager.php:432
232
  #: static/js/options/ConditionsManager/PostIdPicker.js:76
233
  msgid "Custom Post Type ID"
234
  msgstr ""
235
 
236
- #: framework/features/conditions-manager.php:437
237
  msgid "Taxonomy ID"
238
  msgstr ""
239
 
240
- #: framework/features/conditions-manager.php:442
241
  msgid "Post with Taxonomy ID"
242
  msgstr ""
243
 
244
- #: framework/features/conditions-manager.php:448
245
  msgid "Other Pages"
246
  msgstr ""
247
 
248
- #: framework/features/conditions-manager.php:452
249
  msgid "404"
250
  msgstr ""
251
 
252
- #: framework/features/conditions-manager.php:457,
253
- #: framework/premium/extensions/shortcuts/views/bar.php:30,
254
- #: framework/premium/features/premium-header/items/search-input/options.php:37,
255
- #: framework/premium/features/premium-header/items/search-input/view.php:58
256
  msgid "Search"
257
  msgstr ""
258
 
259
- #: framework/features/conditions-manager.php:462
260
  msgid "Blog"
261
  msgstr ""
262
 
263
- #: framework/features/conditions-manager.php:467
264
  msgid "Front Page"
265
  msgstr ""
266
 
267
- #: framework/features/conditions-manager.php:479
268
  msgid "Author"
269
  msgstr ""
270
 
271
- #: framework/features/conditions-manager.php:485
272
  msgid "User Auth"
273
  msgstr ""
274
 
275
- #: framework/features/conditions-manager.php:489
276
  msgid "User Logged In"
277
  msgstr ""
278
 
279
- #: framework/features/conditions-manager.php:494
280
  msgid "User Logged Out"
281
  msgstr ""
282
 
283
- #: framework/features/conditions-manager.php:500
284
  msgid "User Roles"
285
  msgstr ""
286
 
287
- #: framework/features/conditions-manager.php:581
288
  msgid "Language"
289
  msgstr ""
290
 
@@ -302,7 +375,7 @@ msgstr ""
302
 
303
  #: framework/features/dynamic-css.php:50
304
  msgid ""
305
- "The strategy of outputing the dynamic CSS. File - all the CSS code will be "
306
  "placed in a static file, otherwise it will be placed inline in head."
307
  msgstr ""
308
 
@@ -315,22 +388,12 @@ msgstr ""
315
  msgid "Inline"
316
  msgstr ""
317
 
318
- #: framework/features/dynamic-css.php:63
319
- msgid "Emojis Script"
320
- msgstr ""
321
-
322
- #: framework/features/dynamic-css.php:67
323
- msgid ""
324
- "Enable this option if you want to remove WordPress emojis script in order to "
325
- "improve the performance."
326
- msgstr ""
327
-
328
  #: framework/features/google-analytics.php:69
329
- msgid "Google Analytics"
330
  msgstr ""
331
 
332
  #: framework/features/google-analytics.php:74
333
- msgid "Insert your Google Analytics tracking ID."
334
  msgstr ""
335
 
336
  #: framework/features/google-analytics.php:80
@@ -339,28 +402,26 @@ msgstr ""
339
 
340
  #: framework/features/google-analytics.php:86
341
  msgid ""
342
- "Insert your Google Analytics measurement ID. More instructions can be found "
343
- "%shere%s."
344
  msgstr ""
345
 
346
  #: framework/features/google-analytics.php:98
347
  msgid "IP Anonymization"
348
  msgstr ""
349
 
350
- #: framework/features/google-analytics.php:101
351
  msgid ""
352
- "Enable Google Analytics IP anonymization feature <a href=\"https://"
353
- "developers.google.com/analytics/devguides/collection/gtagjs/ip-anonymization"
354
- "\">(more info)</a>."
355
  msgstr ""
356
 
357
  #: framework/features/opengraph-meta-data.php:17
358
- msgid "Opengraph Meta Data"
359
  msgstr ""
360
 
361
  #: framework/features/opengraph-meta-data.php:20
362
- msgid ""
363
- "Display a preview image and text excerpt when a link to your site is shared."
364
  msgstr ""
365
 
366
  #: framework/features/opengraph-meta-data.php:29
@@ -380,7 +441,9 @@ msgid "Cookies Consent"
380
  msgstr ""
381
 
382
  #: framework/extensions/cookies-consent/config.php:5
383
- msgid "Enable this extension in order to comply with the GDPR regulations."
 
 
384
  msgstr ""
385
 
386
  #: framework/extensions/cookies-consent/customizer.php:4
@@ -390,33 +453,43 @@ msgstr ""
390
  #: framework/extensions/cookies-consent/customizer.php:18,
391
  #: framework/extensions/newsletter-subscribe/customizer.php:12,
392
  #: framework/extensions/product-reviews/metabox.php:6,
393
- #: framework/extensions/trending/customizer.php:39,
394
  #: framework/premium/extensions/mega-menu/options.php:6,
395
- #: framework/premium/extensions/shortcuts/customizer.php:421,
396
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
397
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
398
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:31,
 
 
 
 
399
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
400
  #: framework/premium/features/premium-header/items/contacts/options.php:5,
401
  #: framework/premium/features/premium-header/items/language-switcher/options.php:21,
402
  #: framework/premium/features/premium-header/items/language-switcher/options.php:347,
403
- #: framework/premium/features/premium-header/items/search-input/options.php:29
404
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:126
405
  msgid "General"
406
  msgstr ""
407
 
408
  #: framework/extensions/cookies-consent/customizer.php:31,
409
- #: framework/premium/extensions/shortcuts/customizer.php:433,
410
- #: framework/premium/extensions/woocommerce-extra/extension.php:68,
411
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
 
 
 
412
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:23
413
  msgid "Type 1"
414
  msgstr ""
415
 
416
  #: framework/extensions/cookies-consent/customizer.php:36,
417
- #: framework/premium/extensions/shortcuts/customizer.php:438,
418
- #: framework/premium/extensions/woocommerce-extra/extension.php:73,
419
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
 
 
 
420
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28
421
  msgid "Type 2"
422
  msgstr ""
@@ -496,33 +569,39 @@ msgstr ""
496
 
497
  #: framework/extensions/cookies-consent/customizer.php:90,
498
  #: framework/extensions/newsletter-subscribe/customizer.php:147,
499
- #: framework/extensions/trending/customizer.php:161,
500
- #: framework/premium/extensions/mega-menu/options.php:480,
501
- #: framework/premium/extensions/shortcuts/customizer.php:641,
502
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
503
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
504
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
505
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:152,
 
 
 
 
506
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:119,
507
- #: framework/premium/features/premium-header/items/contacts/options.php:309,
508
  #: framework/premium/features/premium-header/items/language-switcher/options.php:186,
509
  #: framework/premium/features/premium-header/items/language-switcher/options.php:371,
510
- #: framework/premium/features/premium-header/items/search-input/options.php:170
511
  msgid "Design"
512
  msgstr ""
513
 
514
  #: framework/extensions/cookies-consent/customizer.php:95,
515
- #: framework/extensions/trending/customizer.php:176,
516
- #: framework/premium/extensions/mega-menu/options.php:750,
517
- #: framework/premium/extensions/shortcuts/customizer.php:657,
518
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
 
 
519
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:174,
520
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:205,
521
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:234,
522
- #: framework/premium/features/premium-header/items/contacts/options.php:325,
523
- #: framework/premium/features/premium-header/items/contacts/options.php:354,
524
- #: framework/premium/features/premium-header/items/contacts/options.php:397,
525
- #: framework/premium/features/premium-header/items/contacts/options.php:437,
526
  #: framework/premium/features/premium-header/items/language-switcher/options.php:203,
527
  #: framework/premium/features/premium-header/items/language-switcher/options.php:232,
528
  #: framework/premium/features/premium-header/items/language-switcher/options.php:262,
@@ -537,12 +616,12 @@ msgstr ""
537
  #: framework/extensions/newsletter-subscribe/customizer.php:169,
538
  #: framework/extensions/newsletter-subscribe/customizer.php:200,
539
  #: framework/extensions/newsletter-subscribe/customizer.php:225,
540
- #: framework/extensions/trending/customizer.php:194,
541
- #: framework/premium/extensions/mega-menu/options.php:722,
542
- #: framework/premium/extensions/mega-menu/options.php:763,
543
- #: framework/premium/extensions/mega-menu/options.php:782,
544
- #: framework/premium/extensions/shortcuts/customizer.php:675,
545
- #: framework/premium/extensions/shortcuts/customizer.php:707,
546
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:99,
547
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:73,
548
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:352,
@@ -553,23 +632,32 @@ msgstr ""
553
  #: framework/features/header/items/account/options.php:705,
554
  #: framework/features/header/items/account/options.php:736,
555
  #: framework/features/header/items/account/options.php:765,
556
- #: framework/features/header/items/account/options.php:873,
557
- #: framework/features/header/items/account/options.php:904,
 
 
 
 
 
558
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:185,
559
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:217,
560
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:261,
 
 
 
 
561
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:191,
562
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:222,
563
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:251,
564
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:318,
565
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:349,
566
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:378,
567
- #: framework/premium/features/premium-header/items/contacts/options.php:542,
568
- #: framework/premium/features/premium-header/items/contacts/options.php:573,
569
- #: framework/premium/features/premium-header/items/contacts/options.php:603,
570
- #: framework/premium/features/premium-header/items/contacts/options.php:703,
571
- #: framework/premium/features/premium-header/items/contacts/options.php:742,
572
- #: framework/premium/features/premium-header/items/contacts/options.php:781,
573
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:75,
574
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:106,
575
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:135,
@@ -578,20 +666,20 @@ msgstr ""
578
  #: framework/premium/features/premium-header/items/language-switcher/options.php:308,
579
  #: framework/premium/features/premium-header/items/language-switcher/options.php:399,
580
  #: framework/premium/features/premium-header/items/language-switcher/options.php:425,
581
- #: framework/premium/features/premium-header/items/search-input/options.php:223,
582
- #: framework/premium/features/premium-header/items/search-input/options.php:255,
583
- #: framework/premium/features/premium-header/items/search-input/options.php:285,
584
- #: framework/premium/features/premium-header/items/search-input/options.php:353,
585
- #: framework/premium/features/premium-header/items/search-input/options.php:385,
586
- #: framework/premium/features/premium-header/items/search-input/options.php:415,
587
- #: framework/premium/features/premium-header/items/search-input/options.php:483,
588
- #: framework/premium/features/premium-header/items/search-input/options.php:515,
589
- #: framework/premium/features/premium-header/items/search-input/options.php:545,
590
- #: framework/premium/features/premium-header/items/search-input/options.php:618,
591
- #: framework/premium/features/premium-header/items/search-input/options.php:648,
592
- #: framework/premium/features/premium-header/items/search-input/options.php:678,
593
- #: framework/premium/features/premium-header/items/search-input/options.php:754,
594
- #: framework/premium/features/premium-header/items/search-input/options.php:782
595
  msgid "Initial"
596
  msgstr ""
597
 
@@ -599,9 +687,10 @@ msgstr ""
599
  #: framework/extensions/cookies-consent/customizer.php:147,
600
  #: framework/extensions/newsletter-subscribe/customizer.php:175,
601
  #: framework/extensions/newsletter-subscribe/customizer.php:205,
602
- #: framework/extensions/trending/customizer.php:200,
603
- #: framework/premium/extensions/shortcuts/customizer.php:681,
604
- #: framework/premium/extensions/shortcuts/customizer.php:713,
 
605
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:357,
606
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
607
  #: framework/features/header/items/account/options.php:567,
@@ -610,39 +699,40 @@ msgstr ""
610
  #: framework/features/header/items/account/options.php:711,
611
  #: framework/features/header/items/account/options.php:741,
612
  #: framework/features/header/items/account/options.php:770,
613
- #: framework/features/header/items/account/options.php:879,
614
- #: framework/features/header/items/account/options.php:910,
 
615
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
616
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:227,
617
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:256,
618
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:324,
619
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:354,
620
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:383,
621
- #: framework/premium/features/premium-header/items/contacts/options.php:547,
622
- #: framework/premium/features/premium-header/items/contacts/options.php:578,
623
- #: framework/premium/features/premium-header/items/contacts/options.php:608,
624
- #: framework/premium/features/premium-header/items/contacts/options.php:708,
625
- #: framework/premium/features/premium-header/items/contacts/options.php:747,
626
- #: framework/premium/features/premium-header/items/contacts/options.php:786,
627
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:81,
628
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
629
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
630
  #: framework/premium/features/premium-header/items/language-switcher/options.php:404,
631
- #: framework/premium/features/premium-header/items/search-input/options.php:759
632
  msgid "Hover"
633
  msgstr ""
634
 
635
  #: framework/extensions/cookies-consent/customizer.php:126,
636
- #: framework/extensions/newsletter-subscribe/customizer.php:183
 
637
  msgid "Button Color"
638
  msgstr ""
639
 
640
  #: framework/extensions/cookies-consent/customizer.php:154,
641
  #: framework/extensions/newsletter-subscribe/customizer.php:212,
642
- #: framework/premium/extensions/mega-menu/options.php:770,
643
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:199,
644
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:275,
645
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:351,
646
  #: framework/premium/features/premium-header/items/language-switcher/options.php:412
647
  msgid "Background Color"
648
  msgstr ""
@@ -651,18 +741,22 @@ msgstr ""
651
  msgid "Maximum Width"
652
  msgstr ""
653
 
654
- #: framework/extensions/cookies-consent/customizer.php:202,
655
- #: framework/extensions/cookies-consent/helpers.php:78
656
- msgid "I accept the %sPrivacy Policy%s"
657
  msgstr ""
658
 
659
  #: framework/extensions/cookies-consent/customizer.php:206
660
  msgid "This text will appear under each comment form and subscribe form."
661
  msgstr ""
662
 
 
 
 
 
663
  #: framework/extensions/cookies-consent/readme.php:1,
664
  #: framework/extensions/newsletter-subscribe/readme.php:1,
665
  #: framework/premium/extensions/code-snippets/readme.php:1,
 
666
  #: framework/premium/extensions/woocommerce-extra/readme.php:1
667
  msgid "Instructions"
668
  msgstr ""
@@ -694,7 +788,8 @@ msgstr ""
694
 
695
  #: framework/extensions/newsletter-subscribe/config.php:5
696
  msgid ""
697
- "Display a subscribe form with the help of a widget, shortcode or a block."
 
698
  msgstr ""
699
 
700
  #: framework/extensions/newsletter-subscribe/customizer.php:4
@@ -756,17 +851,17 @@ msgstr ""
756
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:38,
757
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:105,
758
  #: framework/extensions/widgets/widgets/ct-posts/options.php:173,
759
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:293,
760
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:337,
761
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:369
762
  msgid "Default"
763
  msgstr ""
764
 
765
  #: framework/extensions/newsletter-subscribe/customizer.php:50,
766
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:39,
767
- #: framework/premium/extensions/shortcuts/customizer.php:179,
768
- #: framework/premium/extensions/shortcuts/customizer.php:205,
769
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:46
 
770
  msgid "Custom"
771
  msgstr ""
772
 
@@ -787,7 +882,7 @@ msgid "Name Label"
787
  msgstr ""
788
 
789
  #: framework/extensions/newsletter-subscribe/customizer.php:95,
790
- #: framework/extensions/newsletter-subscribe/extension.php:181,
791
  #: framework/extensions/newsletter-subscribe/helpers.php:57,
792
  #: framework/extensions/newsletter-subscribe/helpers.php:108,
793
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:75,
@@ -801,7 +896,7 @@ msgid "Mail Label"
801
  msgstr ""
802
 
803
  #: framework/extensions/newsletter-subscribe/customizer.php:107,
804
- #: framework/extensions/newsletter-subscribe/extension.php:182,
805
  #: framework/extensions/newsletter-subscribe/helpers.php:61,
806
  #: framework/extensions/newsletter-subscribe/helpers.php:109,
807
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:86,
@@ -815,7 +910,7 @@ msgid "Button Label"
815
  msgstr ""
816
 
817
  #: framework/extensions/newsletter-subscribe/customizer.php:116,
818
- #: framework/extensions/newsletter-subscribe/extension.php:176,
819
  #: framework/extensions/newsletter-subscribe/helpers.php:52,
820
  #: framework/extensions/newsletter-subscribe/helpers.php:101,
821
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:94,
@@ -827,73 +922,105 @@ msgstr ""
827
  #: framework/premium/extensions/shortcuts/customizer.php:42,
828
  #: framework/premium/extensions/shortcuts/customizer.php:99,
829
  #: framework/premium/extensions/shortcuts/customizer.php:156,
830
- #: framework/premium/extensions/shortcuts/customizer.php:218,
831
- #: framework/premium/extensions/shortcuts/customizer.php:271,
832
  #: framework/premium/extensions/shortcuts/customizer.php:322,
833
  #: framework/premium/extensions/shortcuts/customizer.php:373,
834
- #: framework/premium/extensions/shortcuts/customizer.php:605,
835
- #: framework/premium/features/content-blocks/meta-options.php:371
 
 
 
 
 
 
836
  msgid "Visibility"
837
  msgstr ""
838
 
839
  #: framework/extensions/newsletter-subscribe/customizer.php:137,
840
- #: framework/extensions/trending/customizer.php:106,
841
  #: framework/features/header/header-options.php:89,
842
  #: framework/features/header/header-options.php:171,
843
  #: framework/premium/extensions/shortcuts/customizer.php:54,
844
  #: framework/premium/extensions/shortcuts/customizer.php:111,
845
  #: framework/premium/extensions/shortcuts/customizer.php:168,
846
- #: framework/premium/extensions/shortcuts/customizer.php:230,
847
- #: framework/premium/extensions/shortcuts/customizer.php:283,
848
  #: framework/premium/extensions/shortcuts/customizer.php:334,
849
  #: framework/premium/extensions/shortcuts/customizer.php:385,
850
- #: framework/premium/extensions/shortcuts/customizer.php:497,
851
- #: framework/premium/extensions/shortcuts/customizer.php:619,
 
852
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
853
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
854
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
855
- #: framework/premium/features/content-blocks/meta-options.php:382,
 
 
 
 
 
 
 
856
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:73
857
  msgid "Desktop"
858
  msgstr ""
859
 
860
  #: framework/extensions/newsletter-subscribe/customizer.php:138,
861
- #: framework/extensions/trending/customizer.php:107,
862
  #: framework/premium/extensions/shortcuts/customizer.php:55,
863
  #: framework/premium/extensions/shortcuts/customizer.php:112,
864
  #: framework/premium/extensions/shortcuts/customizer.php:169,
865
- #: framework/premium/extensions/shortcuts/customizer.php:231,
866
- #: framework/premium/extensions/shortcuts/customizer.php:284,
867
  #: framework/premium/extensions/shortcuts/customizer.php:335,
868
  #: framework/premium/extensions/shortcuts/customizer.php:386,
869
- #: framework/premium/extensions/shortcuts/customizer.php:498,
870
- #: framework/premium/extensions/shortcuts/customizer.php:620,
 
871
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
872
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
873
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
874
- #: framework/premium/features/content-blocks/meta-options.php:383,
 
 
 
 
 
 
 
 
875
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74
876
  msgid "Tablet"
877
  msgstr ""
878
 
879
  #: framework/extensions/newsletter-subscribe/customizer.php:139,
880
- #: framework/extensions/trending/customizer.php:108,
881
  #: framework/features/header/header-options.php:91,
882
  #: framework/features/header/header-options.php:173,
883
  #: framework/premium/extensions/shortcuts/customizer.php:56,
884
  #: framework/premium/extensions/shortcuts/customizer.php:113,
885
  #: framework/premium/extensions/shortcuts/customizer.php:170,
886
- #: framework/premium/extensions/shortcuts/customizer.php:232,
887
- #: framework/premium/extensions/shortcuts/customizer.php:285,
888
  #: framework/premium/extensions/shortcuts/customizer.php:336,
889
  #: framework/premium/extensions/shortcuts/customizer.php:387,
890
- #: framework/premium/extensions/shortcuts/customizer.php:499,
891
- #: framework/premium/extensions/shortcuts/customizer.php:621,
 
892
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
893
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
894
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
895
- #: framework/premium/features/content-blocks/meta-options.php:384,
896
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:117,
 
 
 
 
 
 
 
 
 
897
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:75,
898
  #: framework/premium/features/premium-header/items/contacts/options.php:97
899
  msgid "Mobile"
@@ -904,11 +1031,11 @@ msgid "Content Color"
904
  msgstr ""
905
 
906
  #: framework/extensions/newsletter-subscribe/customizer.php:233,
907
- #: framework/extensions/trending/customizer.php:224
908
  msgid "Container Inner Spacing"
909
  msgstr ""
910
 
911
- #: framework/extensions/newsletter-subscribe/extension.php:129
912
  msgid "Disable Subscribe Form"
913
  msgstr ""
914
 
@@ -931,31 +1058,31 @@ msgstr ""
931
 
932
  #: framework/extensions/newsletter-subscribe/readme.php:4
933
  msgid ""
934
- "After installing and activating the Mailchimp extension you will have two "
935
- "possibilities to show your subscribe form:"
936
  msgstr ""
937
 
938
- #: framework/extensions/newsletter-subscribe/readme.php:9
939
- msgid "Mailchimp Widget"
940
  msgstr ""
941
 
942
- #: framework/extensions/newsletter-subscribe/readme.php:13
943
  msgid "Navigate to %s and place the widget in any widget area you want."
944
  msgstr ""
945
 
946
- #: framework/extensions/newsletter-subscribe/readme.php:16
947
  msgid "Appearance ➝ Widgets"
948
  msgstr ""
949
 
950
- #: framework/extensions/newsletter-subscribe/readme.php:24
951
- msgid "Mailchimp Block"
952
  msgstr ""
953
 
954
- #: framework/extensions/newsletter-subscribe/readme.php:28
955
  msgid "Navigate to %s and customize the form and more."
956
  msgstr ""
957
 
958
- #: framework/extensions/newsletter-subscribe/readme.php:31
959
  msgid "Customizer ➝ Single Posts"
960
  msgstr ""
961
 
@@ -968,7 +1095,10 @@ msgid "Product Reviews"
968
  msgstr ""
969
 
970
  #: framework/extensions/product-reviews/config.php:5
971
- msgid "A custom post type specially designed for creating product reviews."
 
 
 
972
  msgstr ""
973
 
974
  #: framework/extensions/product-reviews/extension.php:145
@@ -1021,6 +1151,7 @@ msgid "Categories"
1021
  msgstr ""
1022
 
1023
  #: framework/extensions/product-reviews/extension.php:191,
 
1024
  #: framework/extensions/widgets/widgets/ct-posts/options.php:37
1025
  msgid "Category"
1026
  msgstr ""
@@ -1057,7 +1188,7 @@ msgstr ""
1057
  msgid "New Category Name"
1058
  msgstr ""
1059
 
1060
- #: framework/extensions/product-reviews/helpers.php:26,
1061
  #: framework/extensions/product-reviews/metabox.php:89
1062
  msgid "Rating"
1063
  msgstr ""
@@ -1071,7 +1202,7 @@ msgid "Affiliate Button Label"
1071
  msgstr ""
1072
 
1073
  #: framework/extensions/product-reviews/metabox.php:25,
1074
- #: framework/extensions/product-reviews/views/single-top.php:131
1075
  msgid "Buy Now"
1076
  msgstr ""
1077
 
@@ -1088,7 +1219,7 @@ msgid "Read More Button Label"
1088
  msgstr ""
1089
 
1090
  #: framework/extensions/product-reviews/metabox.php:60,
1091
- #: framework/extensions/product-reviews/views/single-top.php:137
1092
  msgid "Read More"
1093
  msgstr ""
1094
 
@@ -1105,87 +1236,136 @@ msgid "Product specs"
1105
  msgstr ""
1106
 
1107
  #: framework/extensions/product-reviews/metabox.php:159,
1108
- #: framework/extensions/product-reviews/views/single-top.php:215
1109
  msgid "Pros"
1110
  msgstr ""
1111
 
1112
  #: framework/extensions/product-reviews/metabox.php:179,
1113
- #: framework/extensions/product-reviews/views/single-top.php:231
1114
  msgid "Cons"
1115
  msgstr ""
1116
 
1117
  #: framework/extensions/trending/config.php:4,
1118
- #: framework/extensions/trending/customizer.php:26
 
1119
  msgid "Trending Posts"
1120
  msgstr ""
1121
 
1122
  #: framework/extensions/trending/config.php:5
1123
  msgid ""
1124
- "Display a trending list of posts, products or custom post types at the "
1125
- "bottom of your website."
1126
  msgstr ""
1127
 
1128
  #: framework/extensions/trending/customizer.php:8,
1129
- #: framework/premium/extensions/shortcuts/views/bar.php:29,
1130
  #: framework/premium/features/premium-header/items/search-input/options.php:6
1131
  msgid "Products"
1132
  msgstr ""
1133
 
1134
- #: framework/extensions/trending/customizer.php:65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1135
  msgid "Trending From"
1136
  msgstr ""
1137
 
1138
- #: framework/extensions/trending/customizer.php:74,
1139
- #: framework/extensions/widgets/widgets/ct-posts/options.php:211
1140
  msgid "All Time"
1141
  msgstr ""
1142
 
1143
- #: framework/extensions/trending/customizer.php:75
1144
  msgid "Last 24 Hours"
1145
  msgstr ""
1146
 
1147
- #: framework/extensions/trending/customizer.php:76
1148
  msgid "Last 7 Days"
1149
  msgstr ""
1150
 
1151
- #: framework/extensions/trending/customizer.php:77
1152
  msgid "Last Month"
1153
  msgstr ""
1154
 
1155
- #: framework/extensions/trending/customizer.php:94
1156
  msgid "Container Visibility"
1157
  msgstr ""
1158
 
1159
- #: framework/extensions/trending/customizer.php:167
1160
  msgid "Posts Font"
1161
  msgstr ""
1162
 
1163
- #: framework/extensions/trending/customizer.php:208,
1164
- #: framework/premium/extensions/shortcuts/customizer.php:774
1165
  msgid "Container Background"
1166
  msgstr ""
1167
 
1168
- #: framework/extensions/trending/helpers.php:174
1169
- msgid "Trending now"
1170
- msgstr ""
1171
-
1172
  #: framework/extensions/widgets/config.php:4
1173
  msgid ""
1174
- "Popular/Recent Posts, Advertisement, Contact Info, Mailchimp Subscribe, "
1175
- "Social Icons and more."
 
1176
  msgstr ""
1177
 
1178
- #: framework/features/header/account-modal.php:41,
1179
  #: framework/features/header/items/account/options.php:481,
1180
  #: framework/features/header/items/account/views/logout.php:48
1181
  msgid "Login"
1182
  msgstr ""
1183
 
1184
- #: framework/features/header/account-modal.php:45
1185
  msgid "Sign Up"
1186
  msgstr ""
1187
 
1188
- #: framework/features/header/account-modal.php:64
1189
  msgid "Back to login"
1190
  msgstr ""
1191
 
@@ -1219,7 +1399,11 @@ msgid "Transparent Functionality"
1219
  msgstr ""
1220
 
1221
  #: framework/features/header/header-options.php:144,
1222
- #: framework/premium/extensions/shortcuts/customizer.php:626
 
 
 
 
1223
  #: framework/premium/static/js/footer/EditConditions.js:97
1224
  #: static/js/header/EditConditions.js:96
1225
  msgid "Display Conditions"
@@ -1229,66 +1413,118 @@ msgstr ""
1229
  msgid "Hooks Locations"
1230
  msgstr ""
1231
 
1232
- #: framework/premium/features/content-blocks.php:178,
1233
- #: framework/premium/extensions/shortcuts/customizer.php:425,
1234
  #: framework/extensions/widgets/widgets/ct-about-me/options.php:23
1235
  msgid "Type"
1236
  msgstr ""
1237
 
1238
- #: framework/premium/features/content-blocks.php:179
1239
- msgid "Location"
1240
  msgstr ""
1241
 
1242
- #: framework/premium/features/content-blocks.php:180
1243
  msgid "Conditions"
1244
  msgstr ""
1245
 
1246
- #: framework/premium/features/content-blocks.php:181
1247
- msgid "Shortcode"
1248
  msgstr ""
1249
 
1250
- #: framework/premium/features/content-blocks.php:182
1251
  msgid "Enable/Disable"
1252
  msgstr ""
1253
 
1254
- #: framework/premium/features/content-blocks.php:449,
1255
- #: framework/premium/features/content-blocks.php:455
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1256
  msgid "Content Blocks"
1257
  msgstr ""
1258
 
1259
- #: framework/premium/features/content-blocks.php:450
1260
  msgid "Content Block"
1261
  msgstr ""
1262
 
1263
- #: framework/premium/features/content-blocks.php:451
1264
  msgid "Add New"
1265
  msgstr ""
1266
 
1267
- #: framework/premium/features/content-blocks.php:452
1268
  msgid "Add New Content Block"
1269
  msgstr ""
1270
 
1271
- #: framework/premium/features/content-blocks.php:453
1272
  msgid "Edit Content Block"
1273
  msgstr ""
1274
 
1275
- #: framework/premium/features/content-blocks.php:454
 
1276
  msgid "New Content Block"
1277
  msgstr ""
1278
 
1279
- #: framework/premium/features/content-blocks.php:456
1280
  msgid "View Content Block"
1281
  msgstr ""
1282
 
1283
- #: framework/premium/features/content-blocks.php:457
1284
  msgid "Search Content Blocks"
1285
  msgstr ""
1286
 
1287
- #: framework/premium/features/content-blocks.php:458
1288
  msgid "Nothing found"
1289
  msgstr ""
1290
 
1291
- #: framework/premium/features/content-blocks.php:459
1292
  msgid "Nothing found in Trash"
1293
  msgstr ""
1294
 
@@ -1310,6 +1546,46 @@ msgstr ""
1310
  msgid "Header Widget Area "
1311
  msgstr ""
1312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1313
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
1314
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12
1315
  msgid "Newsletter"
@@ -1336,11 +1612,11 @@ msgstr ""
1336
  msgid "Thank you for subscribing!"
1337
  msgstr ""
1338
 
1339
- #: framework/extensions/product-reviews/views/single-top.php:118
1340
  msgid "Overall Score"
1341
  msgstr ""
1342
 
1343
- #: framework/extensions/product-reviews/views/single-top.php:198
1344
  msgid "Specs"
1345
  msgstr ""
1346
 
@@ -1384,28 +1660,20 @@ msgstr ""
1384
  msgid "Register"
1385
  msgstr ""
1386
 
1387
- #: framework/premium/extensions/adobe-typekit/config.php:4,
1388
- #: framework/premium/extensions/adobe-typekit/extension.php:18
1389
- msgid "Adobe Typekit"
1390
  msgstr ""
1391
 
1392
  #: framework/premium/extensions/adobe-typekit/config.php:5
1393
  msgid ""
1394
- "Connect your Typekit account and use your fonts in any typography option."
1395
- msgstr ""
1396
-
1397
- #: framework/premium/extensions/code-snippets/config.php:4,
1398
- #: framework/premium/extensions/code-snippets/extension.php:23,
1399
- #: framework/premium/extensions/code-snippets/extension.php:63,
1400
- #: framework/premium/extensions/code-snippets/extension.php:99,
1401
- #: framework/premium/extensions/code-snippets/readme.php:38
1402
- msgid "Custom Code Snippets"
1403
  msgstr ""
1404
 
1405
  #: framework/premium/extensions/code-snippets/config.php:5
1406
  msgid ""
1407
- "Add custom code snippets in your header and footer, globally and per post or "
1408
- "page individually."
1409
  msgstr ""
1410
 
1411
  #: framework/premium/extensions/code-snippets/extension.php:38,
@@ -1448,24 +1716,22 @@ msgstr ""
1448
 
1449
  #: framework/premium/extensions/custom-fonts/config.php:4
1450
  msgid ""
1451
- "Upload unlimited number of custom fonts and use them in any typography "
1452
- "option."
1453
  msgstr ""
1454
 
1455
  #: framework/premium/extensions/local-google-fonts/config.php:4
1456
- msgid "Serve Google Fonts from your own server for full GDPR compliancy."
1457
- msgstr ""
1458
-
1459
- #: framework/premium/extensions/local-google-fonts/extension.php:121
1460
- msgid "Local Google Fonts"
1461
- msgstr ""
1462
-
1463
- #: framework/premium/extensions/mega-menu/config.php:4
1464
- msgid "Advanced Menu"
1465
  msgstr ""
1466
 
1467
  #: framework/premium/extensions/mega-menu/config.php:5
1468
- msgid "Create beautiful mega menus, assign icons to menu items"
 
 
 
1469
  msgstr ""
1470
 
1471
  #: framework/premium/extensions/mega-menu/config.php:9
@@ -1475,16 +1741,16 @@ msgstr ""
1475
  msgid "Configure"
1476
  msgstr ""
1477
 
1478
- #: framework/premium/extensions/mega-menu/extension.php:92
1479
  msgid "Menu Item Settings"
1480
  msgstr ""
1481
 
1482
- #: framework/premium/extensions/mega-menu/extension.php:236
1483
  msgid "New"
1484
  msgstr ""
1485
 
1486
  #: framework/premium/extensions/mega-menu/options.php:16,
1487
- #: framework/premium/extensions/mega-menu/options.php:494
1488
  msgid "Mega Menu Settings"
1489
  msgstr ""
1490
 
@@ -1492,11 +1758,13 @@ msgstr ""
1492
  msgid "Dropdown Width"
1493
  msgstr ""
1494
 
1495
- #: framework/premium/extensions/mega-menu/options.php:35
 
1496
  msgid "Content Width"
1497
  msgstr ""
1498
 
1499
- #: framework/premium/extensions/mega-menu/options.php:36
 
1500
  msgid "Full Width"
1501
  msgstr ""
1502
 
@@ -1504,178 +1772,149 @@ msgstr ""
1504
  msgid "Custom Width"
1505
  msgstr ""
1506
 
1507
- #: framework/premium/extensions/mega-menu/options.php:62
 
 
 
 
1508
  msgid "Columns"
1509
  msgstr ""
1510
 
1511
- #: framework/premium/extensions/mega-menu/options.php:297
1512
  msgid "Custom Content"
1513
  msgstr ""
1514
 
1515
- #: framework/premium/extensions/mega-menu/options.php:301
1516
  msgid "Content Type"
1517
  msgstr ""
1518
 
1519
- #: framework/premium/extensions/mega-menu/options.php:308
1520
  msgid "Default (Menu Item)"
1521
  msgstr ""
1522
 
1523
- #: framework/premium/extensions/mega-menu/options.php:309
1524
  msgid "Custom Text"
1525
  msgstr ""
1526
 
1527
- #: framework/premium/extensions/mega-menu/options.php:310
1528
  msgid "Content Block/Hook"
1529
  msgstr ""
1530
 
1531
- #: framework/premium/extensions/mega-menu/options.php:369,
1532
- #: framework/premium/extensions/mega-menu/options.php:674
1533
  msgid "Item Label Settings"
1534
  msgstr ""
1535
 
1536
- #: framework/premium/extensions/mega-menu/options.php:374
1537
  msgid "Item Label"
1538
  msgstr ""
1539
 
1540
- #: framework/premium/extensions/mega-menu/options.php:382
1541
  msgid "Enabled"
1542
  msgstr ""
1543
 
1544
- #: framework/premium/extensions/mega-menu/options.php:383,
1545
- #: framework/premium/features/content-blocks/meta-options.php:114
 
 
1546
  msgid "Disabled"
1547
  msgstr ""
1548
 
1549
- #: framework/premium/extensions/mega-menu/options.php:384
1550
  msgid "Heading"
1551
  msgstr ""
1552
 
1553
- #: framework/premium/extensions/mega-menu/options.php:390
1554
  msgid "Label Link"
1555
  msgstr ""
1556
 
1557
- #: framework/premium/extensions/mega-menu/options.php:397,
1558
- #: framework/features/header/items/account/options.php:123,
1559
- #: framework/features/header/items/account/options.php:348
1560
- msgid "Icon"
1561
- msgstr ""
1562
-
1563
- #: framework/premium/extensions/mega-menu/options.php:411,
1564
- #: framework/extensions/widgets/widgets/ct-about-me/options.php:187,
1565
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:258,
1566
- #: framework/extensions/widgets/widgets/ct-socials/options.php:65,
1567
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:122,
1568
- #: framework/premium/features/premium-header/items/contacts/options.php:249
1569
- msgid "Icons Size"
1570
- msgstr ""
1571
-
1572
- #: framework/premium/extensions/mega-menu/options.php:422
1573
- msgid "Icon Alignment"
1574
- msgstr ""
1575
-
1576
- #: framework/premium/extensions/mega-menu/options.php:429,
1577
- #: framework/premium/extensions/shortcuts/customizer.php:522,
1578
- #: framework/features/header/items/account/options.php:259,
1579
- #: framework/features/header/items/account/options.php:465,
1580
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:98
1581
- msgid "Left"
1582
- msgstr ""
1583
-
1584
- #: framework/premium/extensions/mega-menu/options.php:430,
1585
- #: framework/premium/extensions/shortcuts/customizer.php:523,
1586
- #: framework/features/header/items/account/options.php:260,
1587
- #: framework/features/header/items/account/options.php:466,
1588
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:99
1589
- msgid "Right"
1590
- msgstr ""
1591
-
1592
- #: framework/premium/extensions/mega-menu/options.php:445,
1593
- #: framework/premium/extensions/mega-menu/options.php:746
1594
  msgid "Menu Badge Settings"
1595
  msgstr ""
1596
 
1597
- #: framework/premium/extensions/mega-menu/options.php:457,
1598
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:23,
1599
  #: framework/features/header/items/account/options.php:277
1600
  msgid "Text"
1601
  msgstr ""
1602
 
1603
- #: framework/premium/extensions/mega-menu/options.php:463,
1604
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260
1605
  msgid "Vertical Alignment"
1606
  msgstr ""
1607
 
1608
- #: framework/premium/extensions/mega-menu/options.php:498
1609
  msgid "Background"
1610
  msgstr ""
1611
 
1612
- #: framework/premium/extensions/mega-menu/options.php:512
1613
  msgid "Link Color"
1614
  msgstr ""
1615
 
1616
- #: framework/premium/extensions/mega-menu/options.php:532,
1617
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
1618
- #: framework/premium/features/premium-header/items/contacts/options.php:383,
1619
- #: framework/premium/features/premium-header/items/contacts/options.php:425,
1620
- #: framework/premium/features/premium-header/items/contacts/options.php:465
1621
  msgid "Link Initial"
1622
  msgstr ""
1623
 
1624
- #: framework/premium/extensions/mega-menu/options.php:537
1625
  msgid "Link Hover/Active"
1626
  msgstr ""
1627
 
1628
- #: framework/premium/extensions/mega-menu/options.php:542
1629
  msgid "Background Hover"
1630
  msgstr ""
1631
 
1632
- #: framework/premium/extensions/mega-menu/options.php:549,
1633
- #: framework/premium/extensions/mega-menu/options.php:683
1634
  msgid "Heading Color"
1635
  msgstr ""
1636
 
1637
- #: framework/premium/extensions/mega-menu/options.php:561,
1638
- #: framework/premium/extensions/mega-menu/options.php:581,
1639
- #: framework/premium/extensions/mega-menu/options.php:695
1640
  msgid "Initial Color"
1641
  msgstr ""
1642
 
1643
- #: framework/premium/extensions/mega-menu/options.php:569
1644
  msgid "Text Color"
1645
  msgstr ""
1646
 
1647
- #: framework/premium/extensions/mega-menu/options.php:588,
1648
- #: framework/premium/extensions/shortcuts/customizer.php:721,
1649
  #: framework/premium/features/premium-header/items/language-switcher/options.php:432,
1650
- #: framework/premium/features/premium-header/items/search-input/options.php:807
1651
  msgid "Items Divider"
1652
  msgstr ""
1653
 
1654
- #: framework/premium/extensions/mega-menu/options.php:603
1655
  msgid "Columns Divider"
1656
  msgstr ""
1657
 
1658
- #: framework/premium/extensions/mega-menu/options.php:618,
1659
- #: framework/premium/features/premium-header/items/search-input/options.php:789
1660
  msgid "Dropdown Shadow"
1661
  msgstr ""
1662
 
1663
- #: framework/premium/extensions/mega-menu/options.php:650
1664
  msgid "Column Settings"
1665
  msgstr ""
1666
 
1667
- #: framework/premium/extensions/mega-menu/options.php:654
1668
  msgid "Column Spacing"
1669
  msgstr ""
1670
 
1671
- #: framework/premium/extensions/mega-menu/options.php:706,
1672
  #: framework/features/header/items/account/options.php:660,
1673
  #: framework/features/header/items/account/options.php:688,
1674
  #: framework/features/header/items/account/options.php:719,
1675
  #: framework/features/header/items/account/options.php:748,
1676
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:167,
1677
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:244,
1678
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:320,
1679
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:273,
1680
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:301,
1681
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:332,
@@ -1687,168 +1926,228 @@ msgstr ""
1687
  msgid "Icon Color"
1688
  msgstr ""
1689
 
1690
- #: framework/premium/extensions/mega-menu/options.php:727,
1691
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
1692
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:223,
1693
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:267,
1694
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:299,
1695
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:343,
1696
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:375,
1697
- #: framework/premium/features/premium-header/items/language-switcher/options.php:254,
1698
- #: framework/premium/features/premium-header/items/language-switcher/options.php:284,
1699
- #: framework/premium/features/premium-header/items/language-switcher/options.php:313
1700
- msgid "Hover/Active"
1701
  msgstr ""
1702
 
1703
- #: framework/premium/extensions/shortcuts/config.php:4,
1704
- #: framework/premium/extensions/shortcuts/customizer.php:411
1705
- msgid "Shortcuts Bar"
1706
  msgstr ""
1707
 
1708
- #: framework/premium/extensions/shortcuts/config.php:5
1709
- msgid "Display a list of shortcuts at the bottom of your page."
 
 
 
1710
  msgstr ""
1711
 
1712
- #: framework/premium/extensions/shortcuts/customizer.php:12,
1713
- #: framework/premium/extensions/shortcuts/customizer.php:35,
1714
- #: framework/premium/extensions/shortcuts/customizer.php:450,
1715
- #: framework/premium/extensions/shortcuts/views/bar.php:25
1716
- msgid "Home"
 
 
1717
  msgstr ""
1718
 
1719
- #: framework/premium/extensions/shortcuts/customizer.php:63,
1720
- #: framework/premium/extensions/shortcuts/customizer.php:86,
1721
- #: framework/premium/extensions/shortcuts/customizer.php:459,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1722
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:88,
1723
  #: framework/premium/extensions/shortcuts/views/bar.php:26,
1724
  #: framework/premium/features/premium-header/items/contacts/options.php:69
1725
  msgid "Phone"
1726
  msgstr ""
1727
 
1728
- #: framework/premium/extensions/shortcuts/customizer.php:241,
1729
- #: framework/premium/extensions/shortcuts/customizer.php:264,
1730
  #: framework/premium/extensions/shortcuts/views/bar.php:28
1731
- msgid "Cart"
1732
  msgstr ""
1733
 
1734
  #: framework/premium/extensions/shortcuts/customizer.php:292,
1735
- #: framework/premium/extensions/shortcuts/customizer.php:315
1736
- msgid "Shop"
 
1737
  msgstr ""
1738
 
1739
  #: framework/premium/extensions/shortcuts/customizer.php:343,
1740
- #: framework/premium/extensions/shortcuts/customizer.php:366,
 
 
 
 
 
 
1741
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
1742
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:109,
1743
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:88
1744
  msgid "Wishlist"
1745
  msgstr ""
1746
 
1747
- #: framework/premium/extensions/shortcuts/customizer.php:444
1748
  msgid "Shortcuts"
1749
  msgstr ""
1750
 
1751
- #: framework/premium/extensions/shortcuts/customizer.php:485,
1752
  #: framework/features/header/items/account/options.php:216,
1753
  #: framework/features/header/items/account/options.php:422,
1754
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61
1755
  msgid "Label Visibility"
1756
  msgstr ""
1757
 
1758
- #: framework/premium/extensions/shortcuts/customizer.php:515,
1759
  #: framework/features/header/items/account/options.php:252,
1760
  #: framework/features/header/items/account/options.php:458,
1761
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:91
1762
  msgid "Label Position"
1763
  msgstr ""
1764
 
1765
- #: framework/premium/extensions/shortcuts/customizer.php:524,
1766
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:25,
1767
- #: framework/premium/features/content-blocks/hooks-manager.php:303,
1768
  #: framework/features/header/items/account/options.php:261,
1769
  #: framework/features/header/items/account/options.php:467,
 
1770
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:100
1771
  msgid "Bottom"
1772
  msgstr ""
1773
 
1774
- #: framework/premium/extensions/shortcuts/customizer.php:535,
1775
  #: framework/features/header/items/account/options.php:198,
1776
  #: framework/features/header/items/account/options.php:404,
1777
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:39
1778
  msgid "Icon Size"
1779
  msgstr ""
1780
 
1781
- #: framework/premium/extensions/shortcuts/customizer.php:545
1782
  msgid "Container Height"
1783
  msgstr ""
1784
 
1785
- #: framework/premium/extensions/shortcuts/customizer.php:560
1786
  msgid "Container Max Width"
1787
  msgstr ""
1788
 
1789
- #: framework/premium/extensions/shortcuts/customizer.php:584
1790
  msgid "Scroll Interaction"
1791
  msgstr ""
1792
 
1793
- #: framework/premium/extensions/shortcuts/customizer.php:589,
1794
- #: framework/extensions/widgets/widgets/ct-about-me/options.php:208,
1795
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:279,
1796
- #: framework/extensions/widgets/widgets/ct-socials/options.php:86,
1797
- #: framework/features/header/items/account/options.php:124,
1798
- #: framework/features/header/items/account/options.php:349,
1799
- #: framework/premium/features/premium-header/items/contacts/options.php:277
1800
- msgid "None"
1801
- msgstr ""
1802
-
1803
- #: framework/premium/extensions/shortcuts/customizer.php:590
1804
  msgid "Hide"
1805
  msgstr ""
1806
 
1807
- #: framework/premium/extensions/shortcuts/customizer.php:632
1808
  msgid "Shortcuts Bar Display Conditions"
1809
  msgstr ""
1810
 
1811
- #: framework/premium/extensions/shortcuts/customizer.php:633
1812
  msgid "Add one or more conditions to display the shortcuts bar."
1813
  msgstr ""
1814
 
1815
- #: framework/premium/extensions/shortcuts/customizer.php:647,
1816
- #: framework/premium/features/premium-header/items/contacts/options.php:315,
 
1817
  #: framework/premium/features/premium-header/items/language-switcher/options.php:192,
1818
  #: framework/premium/features/premium-header/items/language-switcher/options.php:376
1819
  msgid "Font"
1820
  msgstr ""
1821
 
1822
- #: framework/premium/extensions/shortcuts/customizer.php:689,
1823
- #: framework/premium/features/premium-header/items/contacts/options.php:495,
1824
- #: framework/premium/features/premium-header/items/contacts/options.php:524,
1825
- #: framework/premium/features/premium-header/items/contacts/options.php:555,
1826
- #: framework/premium/features/premium-header/items/contacts/options.php:585
1827
  msgid "Icons Color"
1828
  msgstr ""
1829
 
1830
- #: framework/premium/extensions/shortcuts/customizer.php:741
1831
  msgid "Items Divider Height"
1832
  msgstr ""
1833
 
1834
- #: framework/premium/extensions/shortcuts/customizer.php:755,
1835
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
 
1836
  #: framework/premium/features/premium-header/items/language-switcher/options.php:446
1837
  msgid "Shadow"
1838
  msgstr ""
1839
 
1840
- #: framework/premium/extensions/shortcuts/customizer.php:795
1841
  msgid "Container Border Radius"
1842
  msgstr ""
1843
 
1844
- #: framework/premium/extensions/sidebars/config.php:4
1845
- msgid "Multiple Sidebars"
1846
- msgstr ""
1847
-
1848
  #: framework/premium/extensions/sidebars/config.php:5
1849
  msgid ""
1850
- "Create unlimited number of sidebars and display them conditionaly on any "
1851
- "page or post."
1852
  msgstr ""
1853
 
1854
  #: framework/premium/extensions/sidebars/config.php:9
@@ -1856,6 +2155,7 @@ msgid "Create New Sidebar"
1856
  msgstr ""
1857
 
1858
  #: framework/premium/extensions/sidebars/form.php:3
 
1859
  msgid "Create Sidebar/Widget Area"
1860
  msgstr ""
1861
 
@@ -1866,6 +2166,7 @@ msgid ""
1866
  msgstr ""
1867
 
1868
  #: framework/premium/extensions/sidebars/form.php:16
 
1869
  msgid "Create Sidebar"
1870
  msgstr ""
1871
 
@@ -1874,67 +2175,89 @@ msgid "Available Sidebars/Widget Areas"
1874
  msgstr ""
1875
 
1876
  #: framework/premium/extensions/white-label/config.php:4
1877
- msgid "Change the theme and companion plugin branding to your own custom one."
1878
- msgstr ""
1879
-
1880
- #: framework/premium/extensions/woocommerce-extra/config.php:4
1881
- msgid "WooCommerce Extra"
1882
  msgstr ""
1883
 
1884
  #: framework/premium/extensions/woocommerce-extra/config.php:5
1885
- msgid "WooCommerce extra functionality."
 
 
 
1886
  msgstr ""
1887
 
1888
  #: framework/premium/extensions/woocommerce-extra/customizer.php:5
1889
- msgid "Quick View"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1890
  msgstr ""
1891
 
1892
- #: framework/premium/extensions/woocommerce-extra/extension.php:78,
1893
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
 
 
1894
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:33
1895
  msgid "Type 3"
1896
  msgstr ""
1897
 
1898
- #: framework/premium/extensions/woocommerce-extra/extension.php:83,
1899
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201
 
 
1900
  msgid "Type 4"
1901
  msgstr ""
1902
 
1903
- #: framework/premium/extensions/woocommerce-extra/extension.php:106,
1904
- #: framework/premium/extensions/woocommerce-extra/extension.php:125
1905
  msgid "Number of Columns"
1906
  msgstr ""
1907
 
1908
- #: framework/premium/extensions/woocommerce-extra/extension.php:579
1909
  msgid "Available Filters"
1910
  msgstr ""
1911
 
1912
- #: framework/premium/extensions/woocommerce-extra/extension.php:657
1913
  msgid "Quick view title before"
1914
  msgstr ""
1915
 
1916
- #: framework/premium/extensions/woocommerce-extra/extension.php:662
1917
  msgid "Quick view title after"
1918
  msgstr ""
1919
 
1920
- #: framework/premium/extensions/woocommerce-extra/extension.php:667
1921
  msgid "Quick view price before"
1922
  msgstr ""
1923
 
1924
- #: framework/premium/extensions/woocommerce-extra/extension.php:672
1925
  msgid "Quick view price after"
1926
  msgstr ""
1927
 
1928
- #: framework/premium/extensions/woocommerce-extra/extension.php:677
1929
  msgid "Quick view summary before"
1930
  msgstr ""
1931
 
1932
- #: framework/premium/extensions/woocommerce-extra/extension.php:682
1933
  msgid "Quick view summary after"
1934
  msgstr ""
1935
 
1936
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
1937
- #: framework/premium/extensions/woocommerce-extra/readme.php:24
1938
  msgid "Floating Cart"
1939
  msgstr ""
1940
 
@@ -1943,7 +2266,8 @@ msgid "Position"
1943
  msgstr ""
1944
 
1945
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
1946
- #: framework/premium/features/content-blocks/hooks-manager.php:265
 
1947
  msgid "Top"
1948
  msgstr ""
1949
 
@@ -1955,11 +2279,11 @@ msgstr ""
1955
  msgid "Floating Cart Visibility"
1956
  msgstr ""
1957
 
1958
- #: framework/premium/extensions/woocommerce-extra/helpers.php:113
1959
  msgid "Go to product page"
1960
  msgstr ""
1961
 
1962
- #: framework/premium/extensions/woocommerce-extra/helpers.php:333
1963
  msgid "Filter"
1964
  msgstr ""
1965
 
@@ -1996,16 +2320,16 @@ msgid "Widgets Font Color"
1996
  msgstr ""
1997
 
1998
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
1999
- #: framework/premium/features/premium-header/items/contacts/options.php:377,
2000
- #: framework/premium/features/premium-header/items/contacts/options.php:420,
2001
- #: framework/premium/features/premium-header/items/contacts/options.php:460
2002
  msgid "Text Initial"
2003
  msgstr ""
2004
 
2005
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
2006
- #: framework/premium/features/premium-header/items/contacts/options.php:389,
2007
- #: framework/premium/features/premium-header/items/contacts/options.php:430,
2008
- #: framework/premium/features/premium-header/items/contacts/options.php:470
2009
  msgid "Link Hover"
2010
  msgstr ""
2011
 
@@ -2046,12 +2370,12 @@ msgid "Panel Background"
2046
  msgstr ""
2047
 
2048
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:334,
2049
- #: framework/features/header/items/account/options.php:855
2050
  msgid "Close Icon Color"
2051
  msgstr ""
2052
 
2053
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:364,
2054
- #: framework/features/header/items/account/options.php:887
2055
  msgid "Close Icon Background"
2056
  msgstr ""
2057
 
@@ -2061,23 +2385,46 @@ msgid ""
2061
  "have these features:"
2062
  msgstr ""
2063
 
2064
- #: framework/premium/extensions/woocommerce-extra/readme.php:9
2065
  msgid "Product Quick View"
2066
  msgstr ""
2067
 
2068
- #: framework/premium/extensions/woocommerce-extra/readme.php:13,
2069
- #: framework/premium/extensions/woocommerce-extra/readme.php:28
2070
- msgid "Navigate to %s and enable or disable it."
 
 
 
2071
  msgstr ""
2072
 
2073
- #: framework/premium/extensions/woocommerce-extra/readme.php:16
2074
  msgid "Customizer ➝ WooCommerce ➝ Product Archives ➝ Card Options ➝ Quick View"
2075
  msgstr ""
2076
 
2077
- #: framework/premium/extensions/woocommerce-extra/readme.php:31
2078
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Floating Cart"
2079
  msgstr ""
2080
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2081
  #: framework/premium/features/content-blocks/hooks-manager.php:11
2082
  msgid "WP head"
2083
  msgstr ""
@@ -2133,35 +2480,38 @@ msgid "Mobile bottom"
2133
  msgstr ""
2134
 
2135
  #: framework/premium/features/content-blocks/hooks-manager.php:93
2136
- msgid "Blocksy sidebar before"
2137
  msgstr ""
2138
 
2139
  #: framework/premium/features/content-blocks/hooks-manager.php:94,
2140
  #: framework/premium/features/content-blocks/hooks-manager.php:101,
2141
  #: framework/premium/features/content-blocks/hooks-manager.php:108,
2142
- #: framework/premium/features/content-blocks/hooks-manager.php:115,
2143
- #: framework/premium/features/content-blocks/hooks-manager.php:122,
2144
- #: framework/premium/features/content-blocks/hooks-manager.php:129,
2145
- #: framework/premium/features/content-blocks/hooks-manager.php:137
2146
- msgid "Sidebar"
2147
  msgstr ""
2148
 
2149
  #: framework/premium/features/content-blocks/hooks-manager.php:100
2150
- msgid "Blocksy sidebar start"
2151
  msgstr ""
2152
 
2153
  #: framework/premium/features/content-blocks/hooks-manager.php:107
2154
- msgid "Blocksy sidebar end"
2155
  msgstr ""
2156
 
2157
  #: framework/premium/features/content-blocks/hooks-manager.php:114
2158
- msgid "Blocksy sidebar after"
2159
  msgstr ""
2160
 
2161
  #: framework/premium/features/content-blocks/hooks-manager.php:121
2162
  msgid "Dynamic sidebar before"
2163
  msgstr ""
2164
 
 
 
 
 
 
 
2165
  #: framework/premium/features/content-blocks/hooks-manager.php:128
2166
  msgid "Dynamic sidebar"
2167
  msgstr ""
@@ -2200,12 +2550,12 @@ msgid "Before content"
2200
  msgstr ""
2201
 
2202
  #: framework/premium/features/content-blocks/hooks-manager.php:185,
2203
- #: framework/premium/features/content-blocks/hooks-manager.php:273
2204
  msgid "Top content"
2205
  msgstr ""
2206
 
2207
  #: framework/premium/features/content-blocks/hooks-manager.php:193,
2208
- #: framework/premium/features/content-blocks/hooks-manager.php:295
2209
  msgid "Bottom content"
2210
  msgstr ""
2211
 
@@ -2238,33 +2588,46 @@ msgstr ""
2238
  msgid "After comments"
2239
  msgstr ""
2240
 
2241
- #: framework/premium/features/content-blocks/hooks-manager.php:251
2242
- msgid "Start"
 
2243
  msgstr ""
2244
 
2245
  #: framework/premium/features/content-blocks/hooks-manager.php:252,
2246
  #: framework/premium/features/content-blocks/hooks-manager.php:259
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2247
  msgid "Loop card"
2248
  msgstr ""
2249
 
2250
- #: framework/premium/features/content-blocks/hooks-manager.php:258
2251
  msgid "End"
2252
  msgstr ""
2253
 
2254
- #: framework/premium/features/content-blocks/hooks-manager.php:281
2255
  msgid "After certain number of blocks"
2256
  msgstr ""
2257
 
2258
- #: framework/premium/features/content-blocks/hooks-manager.php:288
2259
  msgid "Before certain number of headings"
2260
  msgstr ""
2261
 
2262
- #: framework/premium/features/content-blocks/hooks-manager.php:311
2263
  msgid "Login form start"
2264
  msgstr ""
2265
 
2266
- #: framework/premium/features/content-blocks/hooks-manager.php:312,
2267
- #: framework/premium/features/content-blocks/hooks-manager.php:319,
2268
  #: framework/premium/features/content-blocks/hooks-manager.php:326,
2269
  #: framework/premium/features/content-blocks/hooks-manager.php:333,
2270
  #: framework/premium/features/content-blocks/hooks-manager.php:340,
@@ -2272,420 +2635,380 @@ msgstr ""
2272
  #: framework/premium/features/content-blocks/hooks-manager.php:354,
2273
  #: framework/premium/features/content-blocks/hooks-manager.php:361,
2274
  #: framework/premium/features/content-blocks/hooks-manager.php:368,
2275
- #: framework/premium/features/content-blocks/hooks-manager.php:375
 
 
2276
  msgid "Auth forms"
2277
  msgstr ""
2278
 
2279
- #: framework/premium/features/content-blocks/hooks-manager.php:318
2280
  msgid "Login form end"
2281
  msgstr ""
2282
 
2283
- #: framework/premium/features/content-blocks/hooks-manager.php:325
2284
  msgid "Login form modal start"
2285
  msgstr ""
2286
 
2287
- #: framework/premium/features/content-blocks/hooks-manager.php:332
2288
  msgid "Login form modal end"
2289
  msgstr ""
2290
 
2291
- #: framework/premium/features/content-blocks/hooks-manager.php:339
2292
  msgid "Register form start"
2293
  msgstr ""
2294
 
2295
- #: framework/premium/features/content-blocks/hooks-manager.php:346
2296
  msgid "Register form end"
2297
  msgstr ""
2298
 
2299
- #: framework/premium/features/content-blocks/hooks-manager.php:353
2300
  msgid "Register form modal start"
2301
  msgstr ""
2302
 
2303
- #: framework/premium/features/content-blocks/hooks-manager.php:360
2304
  msgid "Register form modal end"
2305
  msgstr ""
2306
 
2307
- #: framework/premium/features/content-blocks/hooks-manager.php:367
2308
  msgid "Lost password form modal start"
2309
  msgstr ""