WordPress Infinite Scroll – Ajax Load More - Version 3.6.1

Version Description

  • August 24, 2018 =
  • FIX - Fix for search parameter not being passed correctly to Ajax Load More.
  • FIX - Fixed PHP warning message being displayed with Call the Action add-on.
  • FIX - Fixed issue with Masonry settings not applying after latest 3.6 update.
  • NEW - Adding total-posts data attribute to parent Ajax Load More container.
Download this release

Release Info

Developer dcooney
Plugin Icon 128x128 WordPress Infinite Scroll – Ajax Load More
Version 3.6.1
Comparing to
See all releases

Code changes from version 3.6 to 3.6.1

README.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://connekthq.com/donate/
4
  Tags: infinite scroll, infinite scrolling, scroll, infinite, lazy load, lazy loading, endless scroll, pagination, ajax pagination, ajax, ajax posts, woocommerce, ajax load more, masonry
5
  Requires at least: 3.6
6
  Tested up to: 4.9.8
7
- Stable tag: 3.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -369,6 +369,13 @@ How to install Ajax Load More.
369
 
370
  == Changelog ==
371
 
 
 
 
 
 
 
 
372
  = 3.6 - August 24, 2018 =
373
  - NEW - Added export/download functionality for Repeater Templates, click the options icon (cog) under each Repeater Template to reveal.
374
  - NEW - Added compatibility with Gutenberg editor.
4
  Tags: infinite scroll, infinite scrolling, scroll, infinite, lazy load, lazy loading, endless scroll, pagination, ajax pagination, ajax, ajax posts, woocommerce, ajax load more, masonry
5
  Requires at least: 3.6
6
  Tested up to: 4.9.8
7
+ Stable tag: 3.6.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
369
 
370
  == Changelog ==
371
 
372
+ = 3.6.1 - August 24, 2018 =
373
+ * FIX - Fix for search parameter not being passed correctly to Ajax Load More.
374
+ * FIX - Fixed PHP warning message being displayed with Call the Action add-on.
375
+ * FIX - Fixed issue with Masonry settings not applying after latest 3.6 update.
376
+ * NEW - Adding `total-posts` data attribute to parent Ajax Load More container.
377
+
378
+
379
  = 3.6 - August 24, 2018 =
380
  - NEW - Added export/download functionality for Repeater Templates, click the options icon (cog) under each Repeater Template to reveal.
381
  - NEW - Added compatibility with Gutenberg editor.
admin/dist/css/admin.css CHANGED
@@ -3480,6 +3480,8 @@ p.cache-stats {
3480
  */
3481
  .ajax-load-more .row.template {
3482
  position: relative; }
 
 
3483
 
3484
  .ajax-load-more .row.template:hover .alm-repeater-options {
3485
  opacity: 1; }
3480
  */
3481
  .ajax-load-more .row.template {
3482
  position: relative; }
3483
+ .ajax-load-more .row.template:first-of-type {
3484
+ margin-top: 0; }
3485
 
3486
  .ajax-load-more .row.template:hover .alm-repeater-options {
3487
  opacity: 1; }
admin/shortcode-builder/shortcode-builder.php CHANGED
@@ -46,47 +46,6 @@
46
  <h2 tabindex="0" class="shortcode-title"><i class="fa fa-cog"></i><?php _e('Display Settings', 'ajax-load-more'); ?></h2>
47
  <div class="section-wrap">
48
 
49
- <!-- Template Selection -->
50
- <?php
51
- echo '<div class="row repeater" id="alm-repeaters">';
52
- echo '<h3 class="heading" tabindex="0">'.__('Template', 'ajax-load-more'). '</h3>';
53
- echo '<div class="expand-wrap">';
54
- echo '<div class="section-title">';
55
- if (has_action('alm_theme_repeaters_selection')){
56
- echo '<h4>'.__('Repeater Template', 'ajax-load-more').'</h4>';
57
- }
58
- echo '<p>'.__('Select which <a href="admin.php?page=ajax-load-more-repeaters" target="_parent">repeater template</a> you would like to use.', 'ajax-load-more'). '</p>';
59
- echo '</div>';
60
- echo '<div class="wrap"><div class="inner">';
61
- echo '<select name="repeater-select" class="alm_element">';
62
- echo '<option name="default" value="default" selected="selected">Default</option>';
63
- if (has_action('alm_get_custom_repeaters')) {
64
- do_action('alm_get_custom_repeaters');
65
- }
66
- if (has_action('alm_get_unlimited_repeaters')) {
67
- do_action('alm_get_unlimited_repeaters');
68
- }
69
- echo '</select>';
70
-
71
- echo '</div></div>';
72
- ?>
73
-
74
- <?php // Get Theme Repeaters
75
- if (has_action('alm_theme_repeaters_selection')){
76
- do_action('alm_theme_repeaters_selection');
77
- }
78
- ?>
79
-
80
- <?php // Custom Repeaters v2 - /cta/extend.php
81
- if (!has_action('alm_get_unlimited_repeaters') && !has_action('alm_get_custom_repeaters') && !has_action('alm_theme_repeaters_installed')) {
82
- include( ALM_PATH . 'admin/includes/cta/extend.php');
83
- }
84
-
85
- echo '</div>';
86
- echo '</div>';
87
- ?>
88
- <!-- End Template Selection -->
89
-
90
  <!-- Options -->
91
  <div class="row input alm-instance-options" id="alm-instance-options">
92
  <h3 class="heading" tabindex="0"><?php _e('Options', 'ajax-load-more'); ?></h3>
@@ -96,7 +55,7 @@
96
  <div class="section-title">
97
  <h4><?php _e('ID', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Adding a unique ID will allow you target this specific Ajax Load More instance with the alm_query_args_id() filter','ajax-load-more'); ?>."></a></h4>
98
  <p><?php _e('Set a unique ID for this Ajax Load More instance.', 'ajax-load-more'); ?><br/>
99
- &raquo; <a href="https://connekthq.com/plugins/ajax-load-more/docs/filter-hooks/#alm_query_args_[id]" target="_blank">Learn More</a></p>
100
  </div>
101
  <div class="wrap">
102
  <div class="inner">
@@ -153,6 +112,49 @@
153
  </div>
154
  </div>
155
  <!-- End Options -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
156
 
157
  <!-- Button Labels -->
158
  <div class="row input btn-label" id="alm-btn-label">
46
  <h2 tabindex="0" class="shortcode-title"><i class="fa fa-cog"></i><?php _e('Display Settings', 'ajax-load-more'); ?></h2>
47
  <div class="section-wrap">
48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  <!-- Options -->
50
  <div class="row input alm-instance-options" id="alm-instance-options">
51
  <h3 class="heading" tabindex="0"><?php _e('Options', 'ajax-load-more'); ?></h3>
55
  <div class="section-title">
56
  <h4><?php _e('ID', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('Adding a unique ID will allow you target this specific Ajax Load More instance with the alm_query_args_id() filter','ajax-load-more'); ?>."></a></h4>
57
  <p><?php _e('Set a unique ID for this Ajax Load More instance.', 'ajax-load-more'); ?><br/>
58
+ &raquo; <a href="https://connekthq.com/plugins/ajax-load-more/docs/filter-hooks/#alm_query_args" target="_blank">Learn More</a></p>
59
  </div>
60
  <div class="wrap">
61
  <div class="inner">
112
  </div>
113
  </div>
114
  <!-- End Options -->
115
+
116
+
117
+ <!-- Template Selection -->
118
+ <?php
119
+ echo '<div class="row repeater" id="alm-repeaters">';
120
+ echo '<h3 class="heading" tabindex="0">'.__('Template Selection', 'ajax-load-more'). '</h3>';
121
+ echo '<div class="expand-wrap">';
122
+ echo '<div class="section-title">';
123
+ if (has_action('alm_theme_repeaters_selection')){
124
+ echo '<h4>'.__('Repeater Template', 'ajax-load-more').'</h4>';
125
+ }
126
+ echo '<p>'.__('Select which <a href="admin.php?page=ajax-load-more-repeaters" target="_parent">repeater template</a> you would like to use.', 'ajax-load-more'). '</p>';
127
+ echo '</div>';
128
+ echo '<div class="wrap"><div class="inner">';
129
+ echo '<select name="repeater-select" class="alm_element">';
130
+ echo '<option name="default" value="default" selected="selected">Default</option>';
131
+ if (has_action('alm_get_custom_repeaters')) {
132
+ do_action('alm_get_custom_repeaters');
133
+ }
134
+ if (has_action('alm_get_unlimited_repeaters')) {
135
+ do_action('alm_get_unlimited_repeaters');
136
+ }
137
+ echo '</select>';
138
+
139
+ echo '</div></div>';
140
+ ?>
141
+
142
+ <?php // Get Theme Repeaters
143
+ if (has_action('alm_theme_repeaters_selection')){
144
+ do_action('alm_theme_repeaters_selection');
145
+ }
146
+ ?>
147
+
148
+ <?php // Custom Repeaters v2 - /cta/extend.php
149
+ if (!has_action('alm_get_unlimited_repeaters') && !has_action('alm_get_custom_repeaters') && !has_action('alm_theme_repeaters_installed')) {
150
+ include( ALM_PATH . 'admin/includes/cta/extend.php');
151
+ }
152
+
153
+ echo '</div>';
154
+ echo '</div>';
155
+ ?>
156
+ <!-- End Template Selection -->
157
+
158
 
159
  <!-- Button Labels -->
160
  <div class="row input btn-label" id="alm-btn-label">
admin/src/scss/admin.scss CHANGED
@@ -3004,7 +3004,6 @@ p.cache-stats{
3004
  background-color: #ed7070;
3005
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
3006
  }
3007
-
3008
 
3009
  /*
3010
  * Repeater Template options dropdown
@@ -3013,6 +3012,9 @@ p.cache-stats{
3013
 
3014
  .ajax-load-more .row.template{
3015
  position: relative;
 
 
 
3016
  }
3017
  .ajax-load-more .row.template:hover .alm-repeater-options{
3018
  opacity: 1;
3004
  background-color: #ed7070;
3005
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
3006
  }
 
3007
 
3008
  /*
3009
  * Repeater Template options dropdown
3012
 
3013
  .ajax-load-more .row.template{
3014
  position: relative;
3015
+ &:first-of-type{
3016
+ margin-top: 0;
3017
+ }
3018
  }
3019
  .ajax-load-more .row.template:hover .alm-repeater-options{
3020
  opacity: 1;
ajax-load-more.php CHANGED
@@ -7,14 +7,15 @@ Text Domain: ajax-load-more
7
  Author: Darren Cooney
8
  Twitter: @KaptonKaos
9
  Author URI: https://connekthq.com
10
- Version: 3.6
11
  License: GPL
12
  Copyright: Darren Cooney & Connekt Media
 
13
  */
14
 
15
 
16
- define('ALM_VERSION', '3.6');
17
- define('ALM_RELEASE', 'August 24, 2018');
18
  define('ALM_STORE_URL', 'https://connekthq.com');
19
 
20
 
@@ -809,7 +810,7 @@ if( !class_exists('AjaxLoadMore') ):
809
 
810
  $cta_array = Array();
811
  if($cta && has_action('alm_cta_pos_array')){ // Build CTA Position Array
812
- $cta_array = apply_filters('alm_cta_pos_array', $seo_start_page, $page, $posts_per_page, $alm_post_count, $cta_val, $cta_repeat);
813
  }
814
 
815
  ob_start();
7
  Author: Darren Cooney
8
  Twitter: @KaptonKaos
9
  Author URI: https://connekthq.com
10
+ Version: 3.6.1
11
  License: GPL
12
  Copyright: Darren Cooney & Connekt Media
13
+
14
  */
15
 
16
 
17
+ define('ALM_VERSION', '3.6.1');
18
+ define('ALM_RELEASE', 'August 29, 2018');
19
  define('ALM_STORE_URL', 'https://connekthq.com');
20
 
21
 
810
 
811
  $cta_array = Array();
812
  if($cta && has_action('alm_cta_pos_array')){ // Build CTA Position Array
813
+ $cta_array = apply_filters('alm_cta_pos_array', $seo_start_page, $page, $posts_per_page, $alm_post_count, $cta_val);
814
  }
815
 
816
  ob_start();
core/classes/class.alm-shortcode.php CHANGED
@@ -421,6 +421,61 @@ if( !class_exists('ALM_SHORTCODE') ):
421
  $pause = 'true';
422
  }
423
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
424
 
425
  // Preloaded
426
  if(has_action('alm_preload_installed') && $preloaded === 'true'){
@@ -428,9 +483,9 @@ if( !class_exists('ALM_SHORTCODE') ):
428
  }
429
  // End Preloaded
430
 
431
-
432
- $listing_class = 'alm-listing';
433
- $listing_class = ($comments === 'true') ? 'commentlist alm-comments' : $listing_class; // If Comments
434
 
435
  // Open #ajax-load-more
436
  $ajaxloadmore .= '<'.$container_element.' class="'.$listing_class.' alm-ajax'. $paging_container_class . $classname . $css_classes .'"'; // Build ALM container
@@ -644,7 +699,7 @@ if( !class_exists('ALM_SHORTCODE') ):
644
  $ajaxloadmore .= (!empty($exclude)) ? ' data-exclude="'.$exclude.'"' : '';
645
 
646
  // Search
647
- $ajaxloadmore .= (!empty($custom_args)) ? ' data-search="'.$search.'"' : '';
648
 
649
  // Custom Args
650
  $ajaxloadmore .= (!empty($custom_args)) ? ' data-custom-args="'.$custom_args.'"' : '';
@@ -800,6 +855,15 @@ if( !class_exists('ALM_SHORTCODE') ):
800
  }
801
  // End REST API Add-on
802
 
 
 
 
 
 
 
 
 
 
803
 
804
  return $ajaxloadmore; // End ALM object
805
  }
@@ -815,31 +879,24 @@ if( !class_exists('ALM_SHORTCODE') ):
815
  */
816
  public static function alm_render_button($seo, $paging, $button_classname, $button_label, $canonicalURL){
817
 
818
- $html = '<div class="alm-btn-wrap">';
819
-
820
- if($paging !== 'true'){
821
-
822
  $btn_element = 'button';
823
  $btn_href = $btn_rel = '';
824
  if($seo === 'true'){
825
  $btn_element = 'a'; // Convert to link for SEO
826
  $btn_href = ' href="'. $canonicalURL .'"';
827
  $btn_rel = ' rel="next"';
828
- }
829
-
830
- $html .= '<'. $btn_element .' class="alm-load-more-btn more'. $button_classname .'"'. $btn_href . $btn_rel .'>'. $button_label .'</'. $btn_element .'>';
831
-
832
- }
833
-
834
  $html .= '</div>';
835
 
836
  return $html;
837
 
838
- }
839
-
840
-
841
 
842
  }
843
-
844
  endif;
845
 
421
  $pause = 'true';
422
  }
423
 
424
+
425
+ // $query_args array to store global ALM vars
426
+ $query_args = array(
427
+ 'post_id' => $post_id,
428
+ 'acf' => $acf,
429
+ 'acf_post_id' => $acf_post_id,
430
+ 'acf_field_type' => $acf_field_type,
431
+ 'acf_field_name' => $acf_field_name,
432
+ 'users' => $users,
433
+ 'users_include' => $users_include,
434
+ 'users_exclude' => $users_exclude,
435
+ 'users_per_page' => $users_per_page,
436
+ 'users_order' => $users_order,
437
+ 'users_orderby' => $users_orderby,
438
+ 'comments_per_page' => $comments_per_page,
439
+ 'comments_type' => $comments_type,
440
+ 'comments_style' => $comments_style,
441
+ 'comments_template' => $comments_template,
442
+ 'comments_callback' => $comments_callback,
443
+ 'comments_post_id' => $comments_post_id,
444
+ 'post_type' => $post_type,
445
+ 'sticky_posts' => $sticky_posts,
446
+ 'post_format' => $post_format,
447
+ 'category' => $category,
448
+ 'category__not_in' => $category__not_in,
449
+ 'tag' => $tag,
450
+ 'tag__not_in' => $tag__not_in,
451
+ 'taxonomy' => $taxonomy,
452
+ 'taxonomy_terms' => $taxonomy_terms,
453
+ 'taxonomy_operator' => $taxonomy_operator,
454
+ 'taxonomy_relation' => $taxonomy_relation,
455
+ 'meta_key' => $meta_key,
456
+ 'meta_value' => $meta_value,
457
+ 'meta_compare' => $meta_compare,
458
+ 'meta_relation' => $meta_relation,
459
+ 'meta_type' => $meta_type,
460
+ 'year' => $year,
461
+ 'month' => $month,
462
+ 'day' => $day,
463
+ 'author' => $author,
464
+ 'post__in' => $post__in,
465
+ 'post__not_in' => $post__not_in,
466
+ 'search' => $search,
467
+ 'custom_args' => $custom_args,
468
+ 'post_status' => $post_status,
469
+ 'order' => $order,
470
+ 'orderby' => $orderby,
471
+ 'exclude' => $exclude,
472
+ 'offset' => $offset,
473
+ 'posts_per_page' => $posts_per_page,
474
+ 'lang' => $lang,
475
+ 'css_classes' => $css_classes,
476
+ );
477
+
478
+
479
 
480
  // Preloaded
481
  if(has_action('alm_preload_installed') && $preloaded === 'true'){
483
  }
484
  // End Preloaded
485
 
486
+
487
+ $listing_class = ($comments === 'true') ? 'commentlist alm-comments' : 'alm-listing'; // If Comments
488
+
489
 
490
  // Open #ajax-load-more
491
  $ajaxloadmore .= '<'.$container_element.' class="'.$listing_class.' alm-ajax'. $paging_container_class . $classname . $css_classes .'"'; // Build ALM container
699
  $ajaxloadmore .= (!empty($exclude)) ? ' data-exclude="'.$exclude.'"' : '';
700
 
701
  // Search
702
+ $ajaxloadmore .= (!empty($search)) ? ' data-search="'.$search.'"' : '';
703
 
704
  // Custom Args
705
  $ajaxloadmore .= (!empty($custom_args)) ? ' data-custom-args="'.$custom_args.'"' : '';
855
  }
856
  // End REST API Add-on
857
 
858
+
859
+ // SEO <noscript>
860
+ if($seo === 'true' && has_filter('alm_seo_noscript')){
861
+ $ajaxloadmore .= apply_filters('alm_seo_noscript', $query_args);
862
+ }
863
+
864
+
865
+ // End SEO </noscript>
866
+
867
 
868
  return $ajaxloadmore; // End ALM object
869
  }
879
  */
880
  public static function alm_render_button($seo, $paging, $button_classname, $button_label, $canonicalURL){
881
 
882
+ $html = '<div class="alm-btn-wrap">';
883
+ if($paging !== 'true'){
 
 
884
  $btn_element = 'button';
885
  $btn_href = $btn_rel = '';
886
  if($seo === 'true'){
887
  $btn_element = 'a'; // Convert to link for SEO
888
  $btn_href = ' href="'. $canonicalURL .'"';
889
  $btn_rel = ' rel="next"';
890
+ }
891
+ $html .= '<'. $btn_element .' class="alm-load-more-btn more'. $button_classname .'"'. $btn_href . $btn_rel .'>'. $button_label .'</'. $btn_element .'>';
892
+ }
 
 
 
893
  $html .= '</div>';
894
 
895
  return $html;
896
 
897
+ }
 
 
898
 
899
  }
900
+
901
  endif;
902
 
core/classes/includes/preloaded.php CHANGED
@@ -33,63 +33,17 @@ if($cta){
33
  }
34
 
35
 
36
- // Create $preloaded_arr
37
- $preloaded_arr = array(
38
- 'post_id' => $post_id,
39
- 'acf' => $acf,
40
- 'acf_post_id' => $acf_post_id,
41
- 'acf_field_type' => $acf_field_type,
42
- 'acf_field_name' => $acf_field_name,
43
- 'users' => $users,
44
- 'users_include' => $users_include,
45
- 'users_exclude' => $users_exclude,
46
- 'users_per_page' => $users_per_page,
47
- 'users_order' => $users_order,
48
- 'users_orderby' => $users_orderby,
49
- 'comments_per_page' => $comments_per_page,
50
- 'comments_type' => $comments_type,
51
- 'comments_style' => $comments_style,
52
- 'comments_template' => $comments_template,
53
- 'comments_callback' => $comments_callback,
54
- 'comments_post_id' => $comments_post_id,
55
- 'post_type' => $post_type,
56
- 'sticky_posts' => $sticky_posts,
57
- 'post_format' => $post_format,
58
- 'category' => $category,
59
- 'category__not_in' => $category__not_in,
60
- 'tag' => $tag,
61
- 'tag__not_in' => $tag__not_in,
62
- 'taxonomy' => $taxonomy,
63
- 'taxonomy_terms' => $taxonomy_terms,
64
- 'taxonomy_operator' => $taxonomy_operator,
65
- 'taxonomy_relation' => $taxonomy_relation,
66
- 'meta_key' => $meta_key,
67
- 'meta_value' => $meta_value,
68
- 'meta_compare' => $meta_compare,
69
- 'meta_relation' => $meta_relation,
70
- 'meta_type' => $meta_type,
71
- 'year' => $year,
72
- 'month' => $month,
73
- 'day' => $day,
74
- 'author' => $author,
75
- 'post__in' => $post__in,
76
- 'post__not_in' => $post__not_in,
77
- 'search' => $search,
78
- 'custom_args' => $custom_args,
79
- 'post_status' => $post_status,
80
- 'order' => $order,
81
- 'orderby' => $orderby,
82
- 'exclude' => $exclude,
83
- 'offset' => $preload_offset,
84
- 'posts_per_page' => $preloaded_amount,
85
- 'lang' => $lang,
86
- 'css_classes' => $css_classes,
87
- );
88
 
89
 
 
90
  $type = alm_get_repeater_type($repeater);
91
 
92
- if($comments){ // Comments
 
 
93
 
94
  if(has_action('alm_comments_installed') && $comments){
95
 
@@ -100,7 +54,7 @@ if($comments){ // Comments
100
  *
101
  * @return $preloaded_comments;
102
  */
103
- $preloaded_comments = apply_filters('alm_comments_preloaded', $preloaded_arr); // located in comments add-on
104
  $preloaded_output .= '<'.$comments_style.' class="alm-listing alm-preloaded commentlist alm-comments-preloaded'. $classname . $css_classes .'">';
105
 
106
  $preloaded_output .= ($seo === "true") ? '<div class="alm-reveal alm-seo'. $transition_container_classes .'" data-page="1" data-url="'.$canonicalURL.'">' : '';
@@ -111,14 +65,15 @@ if($comments){ // Comments
111
  }
112
 
113
  }
114
-
115
- elseif($users){ // Users
 
116
 
117
  if(has_action('alm_users_preloaded') && $users){
118
 
119
  // Encrypt User Role
120
  if(!empty($users_role) && function_exists('alm_role_encrypt')){
121
- $preloaded_arr['users_role'] = alm_role_encrypt($users_role);
122
  }
123
 
124
 
@@ -130,7 +85,7 @@ elseif($users){ // Users
130
  *
131
  * @return $preloaded_users;
132
  */
133
- $preloaded_users = apply_filters('alm_users_preloaded', $preloaded_arr, $preloaded_amount, $repeater, $theme_repeater); // located in Users add-on
134
  $preloaded_output .= '<'.$container_element.' class="alm-listing alm-preloaded alm-users-preloaded'. $classname . $css_classes .'">';
135
 
136
  $preloaded_output .= ($seo === "true") ? '<div class="alm-reveal alm-seo'. $transition_container_classes .'" data-page="1" data-url="'.$canonicalURL.'">' : '';
@@ -142,7 +97,8 @@ elseif($users){ // Users
142
  }
143
  }
144
 
145
- elseif($acf && ($acf_field_type !== 'relationship')){ // Advanced Custom Fields
 
146
 
147
  if(has_action('alm_acf_installed') && $acf){
148
 
@@ -152,8 +108,8 @@ elseif($acf && ($acf_field_type !== 'relationship')){ // Advanced Custom Fields
152
  *
153
  * @return $preloaded_acf;
154
  */
155
- $preloaded_acf = apply_filters('alm_acf_preloaded', $preloaded_arr, $repeater, $theme_repeater); //located in ACF add-on
156
- $preloaded_output .= '<'.$container_element.' class="alm-listing alm-preloaded alm-acf-preloaded'. $classname . $css_classes .'" data-total-posts="'. apply_filters('alm_acf_total_rows', $preloaded_arr) .'">';
157
 
158
  $preloaded_output .= ($seo === "true") ? '<div class="alm-reveal alm-seo'. $transition_container_classes .'" data-page="1" data-url="'.$canonicalURL.'">' : '';
159
  $preloaded_output .= $preloaded_acf;
@@ -164,7 +120,8 @@ elseif($acf && ($acf_field_type !== 'relationship')){ // Advanced Custom Fields
164
 
165
  }
166
 
167
- else { // Standard
 
168
 
169
 
170
  /*
@@ -174,7 +131,7 @@ else { // Standard
174
  *
175
  * @return $args;
176
  */
177
- $args = apply_filters('alm_preload_args', $preloaded_arr); // Create preloaded $args
178
 
179
 
180
 
33
  }
34
 
35
 
36
+ // Modify $query_args with new offset and posts_per_page
37
+ $query_args['offset'] = $preload_offset;
38
+ $query_args['posts_per_page'] = $preloaded_amount;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
 
40
 
41
+ // Get Repeater Template Type
42
  $type = alm_get_repeater_type($repeater);
43
 
44
+
45
+ // Comments
46
+ if($comments){
47
 
48
  if(has_action('alm_comments_installed') && $comments){
49
 
54
  *
55
  * @return $preloaded_comments;
56
  */
57
+ $preloaded_comments = apply_filters('alm_comments_preloaded', $query_args); // located in comments add-on
58
  $preloaded_output .= '<'.$comments_style.' class="alm-listing alm-preloaded commentlist alm-comments-preloaded'. $classname . $css_classes .'">';
59
 
60
  $preloaded_output .= ($seo === "true") ? '<div class="alm-reveal alm-seo'. $transition_container_classes .'" data-page="1" data-url="'.$canonicalURL.'">' : '';
65
  }
66
 
67
  }
68
+
69
+ // Users
70
+ elseif($users){
71
 
72
  if(has_action('alm_users_preloaded') && $users){
73
 
74
  // Encrypt User Role
75
  if(!empty($users_role) && function_exists('alm_role_encrypt')){
76
+ $query_args['users_role'] = alm_role_encrypt($users_role);
77
  }
78
 
79
 
85
  *
86
  * @return $preloaded_users;
87
  */
88
+ $preloaded_users = apply_filters('alm_users_preloaded', $query_args, $preloaded_amount, $repeater, $theme_repeater); // located in Users add-on
89
  $preloaded_output .= '<'.$container_element.' class="alm-listing alm-preloaded alm-users-preloaded'. $classname . $css_classes .'">';
90
 
91
  $preloaded_output .= ($seo === "true") ? '<div class="alm-reveal alm-seo'. $transition_container_classes .'" data-page="1" data-url="'.$canonicalURL.'">' : '';
97
  }
98
  }
99
 
100
+ // Advanced Custom Fields (Repeater, Gallery, Flex Content
101
+ elseif($acf && ($acf_field_type !== 'relationship')){
102
 
103
  if(has_action('alm_acf_installed') && $acf){
104
 
108
  *
109
  * @return $preloaded_acf;
110
  */
111
+ $preloaded_acf = apply_filters('alm_acf_preloaded', $query_args, $repeater, $theme_repeater); //located in ACF add-on
112
+ $preloaded_output .= '<'.$container_element.' class="alm-listing alm-preloaded alm-acf-preloaded'. $classname . $css_classes .'" data-total-posts="'. apply_filters('alm_acf_total_rows', $query_args) .'">';
113
 
114
  $preloaded_output .= ($seo === "true") ? '<div class="alm-reveal alm-seo'. $transition_container_classes .'" data-page="1" data-url="'.$canonicalURL.'">' : '';
115
  $preloaded_output .= $preloaded_acf;
120
 
121
  }
122
 
123
+ // Standard ALM
124
+ else {
125
 
126
 
127
  /*
131
  *
132
  * @return $args;
133
  */
134
+ $args = apply_filters('alm_preload_args', $query_args); // Create preloaded $args
135
 
136
 
137
 
core/dist/js/ajax-load-more.js CHANGED
@@ -505,9 +505,7 @@ var almMasonry = function almMasonry(container, items, selector, columnWidth, an
505
  }
506
 
507
  // Trigger Masonry()
508
- container.masonry({
509
- defaults: defaults
510
- });
511
 
512
  // Fade in
513
  almMasonryFadeIn(container[0].parentNode, speed);
@@ -1242,6 +1240,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
1242
  alm.posts = alm.posts + meta.postcount;
1243
  total = meta.postcount;
1244
  alm.totalposts = meta.totalposts;
 
1245
  if (alm.preloaded === 'true') {
1246
  alm.totalposts = alm.totalposts - alm.preloaded_amount;
1247
  }
@@ -1257,6 +1256,12 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
1257
  // First Run
1258
  if (alm.init) {
1259
 
 
 
 
 
 
 
1260
  if (!alm.paging) {
1261
 
1262
  alm.button.html(alm.button_label);
505
  }
506
 
507
  // Trigger Masonry()
508
+ container.masonry(defaults);
 
 
509
 
510
  // Fade in
511
  almMasonryFadeIn(container[0].parentNode, speed);
1240
  alm.posts = alm.posts + meta.postcount;
1241
  total = meta.postcount;
1242
  alm.totalposts = meta.totalposts;
1243
+
1244
  if (alm.preloaded === 'true') {
1245
  alm.totalposts = alm.totalposts - alm.preloaded_amount;
1246
  }
1256
  // First Run
1257
  if (alm.init) {
1258
 
1259
+ if (meta) {
1260
+ if (meta.totalposts) {
1261
+ alm.el.attr('data-total-posts', meta.totalposts);
1262
+ }
1263
+ }
1264
+
1265
  if (!alm.paging) {
1266
 
1267
  alm.button.html(alm.button_label);
core/dist/js/ajax-load-more.min.js CHANGED
@@ -1 +1 @@
1
- "use strict";Array.from||(Array.from=function(){var a=Object.prototype.toString,l=function(t){return"function"==typeof t||"[object Function]"===a.call(t)},o=Math.pow(2,53)-1,d=function(t){var a,e=(a=Number(t),isNaN(a)?0:0!==a&&isFinite(a)?(0<a?1:-1)*Math.floor(Math.abs(a)):a);return Math.min(Math.max(e,0),o)};return function(t){var a=Object(t);if(null==t)throw new TypeError("Array.from requires an array-like object - not null or undefined");var e,o=1<arguments.length?arguments[1]:void 0;if(void 0!==o){if(!l(o))throw new TypeError("Array.from: when provided, the second argument must be a function");2<arguments.length&&(e=arguments[2])}for(var n,r=d(a.length),s=l(this)?Object(new this(r)):new Array(r),i=0;i<r;)n=a[i],s[i]=o?void 0===e?o(n,i):o.call(e,n,i):n,i+=1;return s.length=r,s}}());var almGetParameterByName=function(t,a){a||(a=window.location.href),t=t.replace(/[\[\]]/g,"\\$&");var e=new RegExp("[?&]"+t+"(=([^&#]*)|&|#|$)").exec(a);return e?e[2]?decodeURIComponent(e[2].replace(/\+/g," ")):"":null},almGetAjaxParams=function(t,a,e){var o={action:a,nonce:alm_localize.alm_nonce,query_type:e,id:t.id,post_id:t.post_id,slug:t.slug,canonical_url:t.canonical_url,posts_per_page:t.posts_per_page,page:t.page,offset:t.offset,post_type:t.post_type,repeater:t.repeater,seo_start_page:t.start_page};return t.theme_repeater&&(o.theme_repeater=t.theme_repeater),t.paging&&(o.paging=t.paging),t.preloaded&&(o.preloaded=t.preloaded,o.preloaded_amount=t.preloaded_amount),"true"===t.cache&&(o.cache_id=t.cache_id,o.cache_logged_in=t.cache_logged_in),t.acf_array&&(o.acf=t.acf_array),t.cta_array&&(o.cta=t.cta_array),t.comments_array&&(o.comments=t.comments_array),t.nextpage_array&&(o.nextpage=t.nextpage_array),t.previous_post_array&&(o.previous_post=t.previous_post_array),t.users_array&&(o.users=t.users_array),t.content.attr("data-lang")&&(o.lang=t.content.attr("data-lang")),t.content.attr("data-sticky-posts")&&(o.sticky_posts=t.content.attr("data-sticky-posts")),t.content.attr("data-post-format")&&(o.post_format=t.content.attr("data-post-format")),t.content.attr("data-category")&&(o.category=t.content.attr("data-category")),t.content.attr("data-category-not-in")&&(o.category__not_in=t.content.attr("data-category-not-in")),t.content.attr("data-tag")&&(o.tag=t.content.attr("data-tag")),t.content.attr("data-tag-not-in")&&(o.tag__not_in=t.content.attr("data-tag-not-in")),t.content.attr("data-taxonomy")&&(o.taxonomy=t.content.attr("data-taxonomy")),t.content.attr("data-taxonomy-terms")&&(o.taxonomy_terms=t.content.attr("data-taxonomy-terms")),t.content.attr("data-taxonomy-operator")&&(o.taxonomy_operator=t.content.attr("data-taxonomy-operator")),t.content.attr("data-taxonomy-relation")&&(o.taxonomy_relation=t.content.attr("data-taxonomy-relation")),t.content.attr("data-meta-key")&&(o.meta_key=t.content.attr("data-meta-key")),t.content.attr("data-meta-value")&&(o.meta_value=t.content.attr("data-meta-value")),t.content.attr("data-meta-compare")&&(o.meta_compare=t.content.attr("data-meta-compare")),t.content.attr("data-meta-relation")&&(o.meta_relation=t.content.attr("data-meta-relation")),t.content.attr("data-meta-type")&&(o.meta_type=t.content.attr("data-meta-type")),t.content.attr("data-author")&&(o.author=t.content.attr("data-author")),t.content.attr("data-year")&&(o.year=t.content.attr("data-year")),t.content.attr("data-month")&&(o.month=t.content.attr("data-month")),t.content.attr("data-day")&&(o.day=t.content.attr("data-day")),t.content.attr("data-order")&&(o.order=t.content.attr("data-order")),t.content.attr("data-orderby")&&(o.orderby=t.content.attr("data-orderby")),t.content.attr("data-post-status")&&(o.post_status=t.content.attr("data-post-status")),t.content.attr("data-post-in")&&(o.post__in=t.content.attr("data-post-in")),t.content.attr("data-post-not-in")&&(o.post__not_in=t.content.attr("data-post-not-in")),t.content.attr("data-exclude")&&(o.exclude=t.content.attr("data-exclude")),t.content.attr("data-search")&&(o.search=t.content.attr("data-search")),t.content.attr("data-custom-args")&&(o.custom_args=t.content.attr("data-custom-args")),o},almGetRestParams=function(t){return{id:t.id,post_id:t.post_id,posts_per_page:t.posts_per_page,page:t.page,offset:t.offset,slug:t.slug,canonical_url:t.canonical_url,post_type:t.post_type,post_format:t.content.attr("data-post-format"),category:t.content.attr("data-category"),category__not_in:t.content.attr("data-category-not-in"),tag:t.content.attr("data-tag"),tag__not_in:t.content.attr("data-tag-not-in"),taxonomy:t.content.attr("data-taxonomy"),taxonomy_terms:t.content.attr("data-taxonomy-terms"),taxonomy_operator:t.content.attr("data-taxonomy-operator"),taxonomy_relation:t.content.attr("data-taxonomy-relation"),meta_key:t.content.attr("data-meta-key"),meta_value:t.content.attr("data-meta-value"),meta_compare:t.content.attr("data-meta-compare"),meta_relation:t.content.attr("data-meta-relation"),meta_type:t.content.attr("data-meta-type"),author:t.content.attr("data-author"),year:t.content.attr("data-year"),month:t.content.attr("data-month"),day:t.content.attr("data-day"),post_status:t.content.attr("data-post-status"),order:t.content.attr("data-order"),orderby:t.content.attr("data-orderby"),post__in:t.content.attr("data-post-in"),post__not_in:t.content.attr("data-post-not-in"),search:t.content.attr("data-search"),custom_args:t.content.attr("data-custom-args"),lang:t.lang,preloaded:t.preloaded,preloaded_amount:t.preloaded_amount,seo_start_page:t.start_page}};function _toConsumableArray(t){if(Array.isArray(t)){for(var a=0,e=Array(t.length);a<t.length;a++)e[a]=t[a];return e}return Array.from(t)}var alm_is_filtering=!1;!function(r){r.fn.almFilter=function(e,o,n){n.target?r(".ajax-load-more-wrap[data-id='"+n.target+"']").each(function(t){var a=r(this);r.fn.almFilterTransition(e,o,n,a)}):r(".ajax-load-more-wrap").each(function(t){var a=r(this);r.fn.almFilterTransition(e,o,n,a)})},r.fn.almFilterTransition=function(t,a,e,o){"slide"===t?o.slideUp(a,function(){n(a,e,o)}):"fade"===t||"masonry"===t?o.fadeOut(a,function(){n(a,e,o)}):n(a,e,o)};var n=function(t,a,e){var o=e.get(0),n=o.querySelectorAll(".alm-listing");[].concat(_toConsumableArray(n)).forEach(function(t){t.innerHTML=""});var r=o.querySelector(".alm-load-more-btn");r&&r.classList.remove("done"),s(t,a,e)},s=function(t,a,e){r.each(a,function(t,a){t=t.replace(/\W+/g,"-").replace(/([a-z\d])([A-Z])/g,"$1-$2"),r(".alm-listing",e).attr("data-"+t,a)}),r.isFunction(r.fn.almFilterComplete)&&r.fn.almFilterComplete(),"function"==typeof almFiltersAddonComplete&&almFiltersAddonComplete(e),alm_is_filtering=!0,e.fadeIn(t),a.target?r(".ajax-load-more-wrap[data-id="+a.target+"]").ajaxloadmore():r(".ajax-load-more-wrap").ajaxloadmore()}}(jQuery);var almMasonry=function t(o,a,n,r,e,s,i,l,d,p){var c=(i+100)/1e3+"s",_="scale(0.5)",g="scale(1)";"zoom-out"===e&&(_="translateY(-20px) scale(1.25)",g="translateY(0) scale(1)"),"slide-up"===e&&(_="translateY(50px)",g="translateY(0)"),"slide-down"===e&&(_="translateY(-50px)",g="translateY(0)"),"none"===e&&(g=_="translateY(0)"),r?isNaN(r)||(r=parseInt(r)):r=n,s="true"===s,p?(o.masonry("destroy"),o[0].parentNode.style.opacity=0,o.append(a),t(o,a,n,r,e,s,i,!0,!0,!1)):l&&d?o.imagesLoaded(function(){var a={itemSelector:n,transitionDuration:c,columnWidth:r,horizontalOrder:s,hiddenStyle:{transform:_,opacity:0},visibleStyle:{transform:g,opacity:1}},e=e;e&&Object.keys(e).forEach(function(t){a[t]=e[t]}),o.masonry({defaults:a}),almMasonryFadeIn(o[0].parentNode,i)}):a.imagesLoaded(function(){o.append(a).masonry("appended",a)})},almMasonryFadeIn=function(t,a){a/=10;var e=parseInt(t.style.opacity),o=setInterval(function(){.9<e&&(t.style.opacity=1,clearInterval(o)),t.style.opacity=e,e+=.1},a)};function _toConsumableArray(t){if(Array.isArray(t)){for(var a=0,e=Array(t.length);a<t.length;a++)e[a]=t[a];return e}return Array.from(t)}!function(y){y.ajaxloadmore=function(t,a){"true"===alm_localize.scrolltop&&y(window).scrollTop(0);var f=this;if(f.AjaxLoadMore={},f.window=y(window),f.page=0,f.posts=0,f.totalposts=0,f.proceed=!1,f.disable_ajax=!1,f.init=!0,f.loading=!0,f.finished=!1,f.prefix="alm-",f.el=t,f.container=t,f.container.addClass("alm-"+a).attr("data-alm-id",a),f.content=y(".alm-ajax",f.container),f.content_preloaded=y(".alm-listing.alm-preloaded",f.container),f.canonical_url=f.el.attr("data-canonical-url"),f.is_search=f.el.attr("data-search"),f.slug=f.el.attr("data-slug"),f.post_id=f.el.attr("data-post-id"),f.id=f.el.attr("data-id")?f.el.attr("data-id"):"",f.repeater=f.content.attr("data-repeater"),f.theme_repeater=f.content.attr("data-theme-repeater"),f.post_type=f.content.attr("data-post-type"),f.post_type=f.post_type.split(","),f.sticky_posts=f.content.attr("data-sticky-posts"),f.btnWrap=y(".alm-btn-wrap",f.container),f.button_label=f.content.attr("data-button-label"),f.button_loading_label=f.content.attr("data-button-loading-label"),f.scroll_distance=f.content.attr("data-scroll-distance"),f.scroll_distance=f.scroll_distance?parseInt(f.scroll_distance):150,f.scroll_container=f.content.attr("data-scroll-container"),f.max_pages=f.content.attr("data-max-pages"),f.max_pages=f.max_pages?parseInt(f.max_pages):0,f.pause_override=f.content.attr("data-pause-override"),f.pause=f.content.attr("data-pause"),f.transition=f.content.attr("data-transition"),f.transition_container=f.content.attr("data-transition-container"),f.tcc=f.content.attr("data-transition-container-classes"),f.speed=250,f.images_loaded=f.content.attr("data-images-loaded"),f.destroy_after=f.content.attr("data-destroy-after"),f.orginal_posts_per_page=f.content.attr("data-posts-per-page"),f.posts_per_page=f.content.attr("data-posts-per-page"),f.offset=f.content.attr("data-offset"),f.cache=f.content.attr("data-cache"),f.cache_id=f.content.attr("data-cache-id"),f.cache_path=f.content.attr("data-cache-path"),f.cache_logged_in=f.content.attr("data-cache-logged-in"),f.cta=f.content.attr("data-cta"),f.cta_position=f.content.attr("data-cta-position"),f.cta_repeater=f.content.attr("data-cta-repeater"),f.cta_theme_repeater=f.content.attr("data-cta-theme-repeater"),f.acf=f.content.attr("data-acf"),f.acf_field_type=f.content.attr("data-acf-field-type"),f.acf_field_name=f.content.attr("data-acf-field-name"),f.acf_post_id=f.content.attr("data-acf-post-id"),f.nextpage=f.content.attr("data-nextpage"),f.nextpage_urls=f.content.attr("data-nextpage-urls"),f.nextpage_scroll=f.content.attr("data-nextpage-scroll"),f.nextpage_pageviews=f.content.attr("data-nextpage-pageviews"),f.nextpage_post_id=f.content.attr("data-nextpage-post-id"),f.nextpage_startpage=f.content.attr("data-nextpage-startpage"),f.previous_post=f.content.attr("data-previous-post"),f.previous_post_id=f.content.attr("data-previous-post-id"),f.previous_post_taxonomy=f.content.attr("data-previous-post-taxonomy"),f.previous_post_excluded_terms=f.content.attr("data-previous-post-excluded-terms"),f.comments=f.content.attr("data-comments"),"true"===f.comments&&(f.content=y(".alm-comments",f.container)),f.comments_post_id=f.content.attr("data-comments_post_id"),f.comments_per_page=f.content.attr("data-comments_per_page"),f.comments_type=f.content.attr("data-comments_type"),f.comments_style=f.content.attr("data-comments_style"),f.comments_template=f.content.attr("data-comments_template"),f.comments_callback=f.content.attr("data-comments_callback"),f.filters=f.content.attr("data-filters"),f.restapi=f.content.attr("data-restapi"),f.restapi_base_url=f.content.attr("data-restapi-base-url"),f.restapi_namespace=f.content.attr("data-restapi-namespace"),f.restapi_endpoint=f.content.attr("data-restapi-endpoint"),f.restapi_template_id=f.content.attr("data-restapi-template-id"),f.restapi_debug=f.content.attr("data-restapi-debug"),f.seo=f.content.attr("data-seo"),f.preloaded=f.content.attr("data-preloaded"),f.preloaded_amount=f.content.attr("data-preloaded-amount"),f.paging=f.content.attr("data-paging"),f.users="true"===f.content.attr("data-users"),f.users&&(f.orginal_posts_per_page=f.content.attr("data-users-per-page"),f.posts_per_page=f.content.attr("data-users-per-page")),"true"===f.filters){f.filters=!0,f.filters_analtyics=f.content.attr("data-filters-analtyics"),f.filters_debug=f.content.attr("data-filters-debug"),f.filters_startpage=0;var e=almGetParameterByName("pg");null!==e&&(f.filters_startpage=parseInt(e),f.page=f.filters_startpage),f.isPaged=!1,0<f.filters_startpage&&(f.isPaged=!0,f.page=f.filters_startpage-1)}else f.filters=!1;"true"===f.restapi?(f.restapi=!0,void 0===f.restapi_debug&&(f.restapi_debug=!1),""===f.restapi_template_id&&(f.restapi=!1)):f.restapi=!1,"true"===f.paging?(f.paging=!0,f.paging_controls=!!f.content.attr("data-paging-controls"),f.paging_show_at_most=f.content.attr("data-paging-show-at-most"),f.paging_classes=f.content.attr("data-paging-classes"),f.paging_init=!0,f.paging_show_at_most=void 0===f.paging_show_at_most?7:f.paging_show_at_most,"true"===f.preloaded&&(f.pause=!0)):f.paging=!1,void 0===f.cache&&(f.cache=!1),void 0===f.cache_logged_in&&(f.cache_logged_in=!1),void 0===f.comments_per_page&&(f.comments_per_page="5"),"true"===f.preloaded?(f.preload_wrap=f.content.prev(".alm-preloaded"),f.preloaded_total_posts=parseInt(f.preload_wrap.attr("data-total-posts")),void 0===f.preloaded_amount&&(f.preloaded_amount=!1),f.preloaded_total_posts<=f.preloaded_amount&&(f.disable_ajax=!0)):f.preloaded="false",void 0===f.seo&&(f.seo=!1),"true"===f.seo&&(f.seo=!0),void 0===f.is_search&&(f.is_search=!1),f.search_value="true"===f.is_search?f.slug:"",f.permalink=f.content.attr("data-seo-permalink"),f.pageview=f.content.attr("data-seo-pageview"),f.start_page=f.content.attr("data-seo-start-page"),f.seo_trailing_slash="false"===f.content.attr("data-seo-trailing-slash")?"":"/",f.seo_leading_slash="true"===f.content.attr("data-seo-leading-slash")?"/":"",f.start_page?(f.seo_scroll=f.content.attr("data-seo-scroll"),f.seo_scroll_speed=f.content.attr("data-seo-scroll-speed"),f.seo_scrolltop=f.content.attr("data-seo-scrolltop"),f.seo_controls=f.content.attr("data-seo-controls"),f.isPaged=!1,1<f.start_page&&(f.isPaged=!0,f.posts_per_page=f.start_page*f.posts_per_page),f.paging&&(f.posts_per_page=f.orginal_posts_per_page)):f.start_page=1,"true"===f.nextpage?(f.nextpage=!0,f.posts_per_page=1):f.nextpage=!1,void 0===f.nextpage_urls&&(f.nextpage_urls="true"),void 0===f.nextpage_scroll&&(f.nextpage_scroll="250:30"),void 0===f.nextpage_pageviews&&(f.nextpage_pageviews="true"),void 0===f.nextpage_post_id&&(f.nextpage=!1,f.nextpage_post_id=null),void 0===f.nextpage_startpage&&(f.nextpage_startpage=1),1<f.nextpage_startpage&&(f.isPaged=!0),f.acf="true"===f.acf,void 0!==f.acf_field_type&&void 0!==f.acf_field_name&&void 0!==f.acf_post_id||(f.acf=!1),"true"===f.previous_post?(f.previous_post=!0,f.previous_post_permalink="",f.previous_post_title="",f.previous_post_slug=""):f.previous_post=!1,void 0===f.previous_post_id&&(f.previous_post_id=""),void 0===f.previous_post_taxonomy&&(f.previous_post_taxonomy=""),void 0===f.previous_post_excluded_terms&&(f.previous_post_excluded_terms=""),f.previous_post_title_template=f.content.attr("data-previous-post-title-template"),f.siteTitle=f.content.attr("data-previous-post-site-title"),f.siteTagline=f.content.attr("data-previous-post-site-tagline"),f.previous_post_pageview=f.content.attr("data-previous-post-pageview"),f.previous_post_scroll=f.content.attr("data-previous-post-scroll"),f.previous_post_scroll_speed=f.content.attr("data-previous-post-scroll-speed"),f.previous_post_scroll_top=f.content.attr("data-previous-post-scrolltop"),f.previous_post_controls=f.content.attr("data-previous-post-controls"),f.offset=void 0===f.offset?0:f.offset,(void 0===f.pause||f.seo&&1<f.start_page)&&(f.pause=!1),"true"===f.preloaded&&f.seo&&0<f.start_page&&(f.pause=!1),"true"===f.preloaded&&f.paging&&(f.pause=!0),void 0===f.repeater&&(f.repeater="default"),f.theme_repeater=void 0!==f.theme_repeater&&f.theme_repeater,f.max_pages=void 0===f.max_pages||0===f.max_pages?1e4:f.max_pages,f.scroll_distance=void 0===f.scroll_distance?150:f.scroll_distance,f.scroll_container=void 0===f.scroll_container?"":f.scroll_container,f.transition=void 0===f.transition?"fade":f.transition,f.tcc=void 0===f.tcc?"":f.tcc,f.is_masonry_preloaded=!1,"masonry"===f.transition&&(f.masonry_init=!0,f.masonry_selector=f.content.attr("data-masonry-selector"),f.masonry_columnwidth=f.content.attr("data-masonry-columnwidth"),f.masonry_animation=f.content.attr("data-masonry-animation"),f.masonry_horizontalorder=f.content.attr("data-masonry-horizontalorder"),void 0===f.masonry_animation&&(f.masonry_animation="standard"),void 0===f.masonry_horizontalorder&&(f.masonry_horizontalorder="true"),f.masonry_wrap=f.content,f.transition_container=!1,document.body.contains(f.content_preloaded.get(0))&&(f.masonry_wrap=f.content_preloaded,f.is_masonry_preloaded=!0)),void 0===f.content.attr("data-scroll")?f.scroll=!0:"false"===f.content.attr("data-scroll")?f.scroll=!1:f.scroll=!0,f.transition_container=void 0===f.transition_container||"true"===f.transition_container,f.images_loaded=void 0===f.images_loaded?"false":f.images_loaded,f.button_label=void 0===f.button_label?"Older Posts":f.button_label,f.button_loading_label=void 0!==f.button_loading_label&&f.button_loading_label,f.paging?f.content.parent().addClass("loading"):f.button=y(".alm-load-more-btn",f.container),f.AjaxLoadMore.loadPosts=function(){if(!f.disable_ajax)if(f.paging||(f.button.addClass("loading"),!1!==f.button_loading_label&&f.button.html(f.button_loading_label)),f.container.addClass("alm-loading"),f.loading=!0,"true"!==f.cache||f.cache_logged_in)f.AjaxLoadMore.ajax("standard");else{var t;if(f.init&&f.seo&&f.isPaged){t=f.cache_path+f.cache_id+"/page-1-"+f.start_page+".html"}else if(f.nextpage){var a;f.paging?a=parseInt(f.page)+1:(a=parseInt(f.page)+2,f.isPaged&&(a=parseInt(f.page)+parseInt(f.nextpage_startpage)+1)),t=f.cache_path+f.cache_id+"/page-"+a+".html"}else t=f.previous_post?f.cache_path+f.cache_id+"/"+f.previous_post_id+".html":f.cache_path+f.cache_id+"/page-"+(f.page+1)+".html";y.get(t,function(t){f.AjaxLoadMore.success(t,!0)}).fail(function(){f.AjaxLoadMore.ajax("standard")})}},f.AjaxLoadMore.ajax=function(a){var t="alm_query_posts";if(f.acf_array="",f.acf&&("relationship"!==f.acf_field_type&&(t="alm_acf_query"),f.acf_array={acf:"true",post_id:f.acf_post_id,field_type:f.acf_field_type,field_name:f.acf_field_name}),f.nextpage_array="",f.nextpage&&(t="alm_nextpage_query",f.nextpage_array={nextpage:"true",urls:f.nextpage_urls,scroll:f.nextpage_scroll,pageviews:f.nextpage_pageviews,post_id:f.nextpage_post_id,startpage:f.nextpage_startpage}),f.previous_post_array="",f.previous_post&&(f.previous_post_array={previous_post:"true",id:f.previous_post_id,slug:f.previous_post_slug}),f.comments_array="","true"===f.comments&&(t="alm_comments_query",f.posts_per_page=f.comments_per_page,f.comments_array={comments:"true",post_id:f.comments_post_id,per_page:f.comments_per_page,type:f.comments_type,style:f.comments_style,template:f.comments_template,callback:f.comments_callback}),f.users_array="",f.users&&(t="alm_users_query",f.users_array={users:"true",role:f.content.attr("data-users-role"),include:f.content.attr("data-users-include"),exclude:f.content.attr("data-users-exclude"),per_page:f.posts_per_page,order:f.content.attr("data-users-order"),orderby:f.content.attr("data-users-orderby")}),f.cta_array="","true"===f.cta&&(f.cta_array={cta:"true",cta_position:f.cta_position,cta_repeater:f.cta_repeater,cta_theme_repeater:f.cta_theme_repeater}),f.restapi){var i=wp.template(f.restapi_template_id),e=f.restapi_base_url+"/"+f.restapi_namespace+"/"+f.restapi_endpoint,o=almGetRestParams(f);y.ajax({type:"GET",url:e,data:o,dataType:"JSON",beforeSend:function(){1==f.page||f.paging||f.button.addClass("loading")},success:function(t){var e="",o=t.html,a=t.meta,n=a.postcount,r=a.totalposts;y.each(o,function(t){var a=o[t];"true"===f.restapi_debug&&console.log(a),e+=i(a)});var s={html:e,meta:{postcount:n,totalposts:r}};f.AjaxLoadMore.success(s,!1)}})}else{var n=almGetAjaxParams(f,t,a);y.ajax({type:"GET",url:alm_localize.ajaxurl,dataType:"JSON",data:n,beforeSend:function(){1==f.page||f.paging||f.button.addClass("loading")},success:function(t){"standard"===a?f.AjaxLoadMore.success(t,!1):"totalpages"===a&&f.paging&&f.nextpage?y.isFunction(y.fn.almBuildPagination)&&y.fn.almBuildPagination(t,f):"totalposts"===a&&f.paging&&y.isFunction(y.fn.almBuildPagination)&&y.fn.almBuildPagination(t,f)},error:function(t,a,e){f.AjaxLoadMore.error(t,a,e)}})}},f.paging&&(f.nextpage?f.AjaxLoadMore.ajax("totalpages"):f.AjaxLoadMore.ajax("totalposts")),f.AjaxLoadMore.success=function(t,a){f.previous_post&&f.AjaxLoadMore.getPreviousPost();var e,o,n,r='style="opacity: 0; height: 0;"';if(a?e=t:(e=t.html,o=t.meta,f.posts=f.posts+o.postcount,n=o.postcount,f.totalposts=o.totalposts,"true"===f.preloaded&&(f.totalposts=f.totalposts-f.preloaded_amount)),f.data=y(e),a&&(n=f.data.length),f.init&&(f.paging?0<n&&(f.el=y('<div class="alm-reveal'+f.tcc+'" '+r+"/>"),f.el.append('<div class="alm-paging-content'+f.tcc+'"></div><div class="alm-paging-loading"></div>'),y(".alm-paging-content",f.el).append(f.data),f.content.append(f.el),f.AjaxLoadMore.fadeIn(f.el.get(0),f.speed),f.content.parent().removeClass("loading"),f.AjaxLoadMore.resetBtnText(),setTimeout(function(){y(".alm-paging-content",f.el).fadeIn(f.speed,"alm_easeInOutQuad",function(){var t=parseInt(f.content.css("padding-top")),a=parseInt(f.content.css("padding-bottom"));f.content.css("height",f.el.height()+t+a+"px"),y.isFunction(y.fn.almFadePageControls)&&y.fn.almFadePageControls(f.btnWrap)})},f.speed)):f.button.html(f.button_label),0===n&&(f.paging&&y.isFunction(y.fn.almPagingEmpty)&&y.fn.almPagingEmpty(f),y.isFunction(y.fn.almEmpty)&&y.fn.almEmpty(f)),f.isPaged&&(f.posts_per_page=f.users?f.content.attr("data-users-per-page"):f.content.attr("data-posts-per-page"),f.start_page&&(f.page=f.start_page-1),f.filters&&f.filters_startpage&&(f.page=f.filters_startpage-1,f.posts_per_page=f.content.attr("data-posts-per-page")))),0<n){if(f.paging)f.init?(f.container.removeClass("alm-loading"),f.AjaxLoadMore.triggerAddons(f)):y(".alm-paging-content",f.el).html("").append(f.data).almWaitForImages().done(function(){y(".alm-paging-loading",f.el).fadeOut(f.speed),y.isFunction(y.fn.almOnPagingComplete)&&y.fn.almOnPagingComplete(f),f.container.removeClass("alm-loading"),f.AjaxLoadMore.triggerAddons(f)});else{if(f.previous_post)f.el=y('<div class="alm-reveal alm-previous-post post-'+f.previous_post_id+'" '+r+' data-id="'+f.previous_post_id+'" data-title="'+f.previous_post_title+'" data-url="'+f.previous_post_permalink+'" data-page="'+f.page+'"/>'),f.el.append(f.data);else if(f.transition_container){var s=void 0,i=window.location.search;if(f.init&&1<f.start_page){var l=[],d=parseInt(f.posts_per_page);"true"===f.cta&&(d+=1);Math.ceil(n/d);for(var p=0;p<n;p+=d)l.push(f.data.slice(p,d+p));f.el=f.content;for(var c=0;c<l.length;c++){var _="true"===f.preloaded?1:0,g=void 0;0<c||"true"===f.preloaded?(s=c+1+_,g="default"===f.permalink?y('<div class="alm-reveal alm-seo'+f.tcc+'" data-url="'+f.canonical_url+f.search_value+"&paged="+s+'" data-page="'+s+'" />'):y('<div class="alm-reveal alm-seo'+f.tcc+'" data-url="'+f.canonical_url+f.seo_leading_slash+"page/"+s+f.seo_trailing_slash+f.search_value+'" data-page="'+s+'" />')):g=y('<div class="alm-reveal alm-seo'+f.tcc+'" data-url="'+f.canonical_url+f.search_value+'" data-page="1" />'),g.append(l[c]),g=y(g),f.el.append(g)}}else{if(f.seo&&0<f.page||"true"===f.preloaded){var m="true"===f.preloaded?1:0;s=f.page+1+m,f.seo?"default"===f.permalink?f.el=y('<div class="alm-reveal alm-seo'+f.tcc+'" '+r+' data-url="'+f.canonical_url+f.search_value+"&paged="+s+'" data-page="'+s+'" />'):f.el=y('<div class="alm-reveal alm-seo'+f.tcc+'" '+r+' data-url="'+f.canonical_url+f.seo_leading_slash+"page/"+s+f.seo_trailing_slash+f.search_value+'" data-page="'+s+'" />'):f.filters?f.el=y('<div class="alm-reveal alm-filters'+f.tcc+'" '+r+' data-url="'+f.canonical_url+i+'" data-page="'+s+'" />'):f.el=y('<div class="alm-reveal'+f.tcc+'" '+r+" />")}else f.filters?f.el=y('<div class="alm-reveal alm-filters'+f.tcc+'" '+r+' data-url="'+f.canonical_url+i+'" data-page="'+(f.page+1)+'" />'):f.seo?f.el=y('<div class="alm-reveal alm-seo'+f.tcc+'" '+r+' data-url="'+f.canonical_url+f.search_value+'" data-page="1" />'):f.el=y('<div class="alm-reveal'+f.tcc+'" '+r+" />");f.el.append(f.data)}}else f.el=f.data;("masonry"!==f.transition||f.init&&!f.is_masonry_preloaded)&&f.content.append(f.el),"masonry"===f.transition?(almMasonry(f.masonry_wrap,f.el,f.masonry_selector,f.masonry_columnwidth,f.masonry_animation,f.masonry_horizontalorder,f.speed,f.masonry_init,f.init,alm_is_filtering),f.masonry_init=!1,f.AjaxLoadMore.transitionEnd()):"none"===f.transition?(f.AjaxLoadMore.fadeIn(f.el.get(0),0),f.AjaxLoadMore.transitionEnd()):"true"===f.images_loaded?f.el.almWaitForImages().done(function(){f.transition_container&&f.AjaxLoadMore.fadeIn(f.el.get(0),f.speed),f.AjaxLoadMore.transitionEnd()}):(f.transition_container&&f.AjaxLoadMore.fadeIn(f.el.get(0),f.speed),f.AjaxLoadMore.transitionEnd())}y.isFunction(y.fn.almComplete)&&("true"===f.images_loaded?f.el.almWaitForImages().done(function(){y.fn.almComplete(f)}):y.fn.almComplete(f)),f.cache?n<f.posts_per_page&&f.AjaxLoadMore.triggerDone():f.posts>=f.totalposts&&!f.previous_post&&f.AjaxLoadMore.triggerDone()}else f.paging||(f.button.delay(f.speed).removeClass("loading").addClass("done"),f.AjaxLoadMore.resetBtnText()),f.AjaxLoadMore.triggerDone();if(void 0!==f.destroy_after&&""!==f.destroy_after){var u=f.page+1;"true"===f.preloaded&&u++,u==f.destroy_after&&f.AjaxLoadMore.destroyed()}alm_is_filtering=!1,f.init=!1},f.AjaxLoadMore.pagingPreloadedInit=function(t){t=null==t?"":t,f.el=y('<div class="alm-reveal'+f.tcc+'"/>'),f.el.append('<div class="alm-paging-content">'+t+'</div><div class="alm-paging-loading"></div>'),f.content.append(f.el),f.content.parent().removeClass("loading"),f.AjaxLoadMore.resetBtnText();var a=parseInt(f.content.css("padding-top")),e=parseInt(f.content.css("padding-bottom"));f.content.css("height",f.el.height()+a+e+"px"),""===t&&(y.isFunction(y.fn.almPagingEmpty)&&y.fn.almPagingEmpty(f),y.isFunction(y.fn.almEmpty)&&y.fn.almEmpty(f)),setTimeout(function(){y.isFunction(y.fn.almFadePageControls)&&y.fn.almFadePageControls(f.btnWrap)},f.speed)},f.AjaxLoadMore.pagingNextpageInit=function(t){f.el=y('<div class="alm-reveal alm-nextpage"/>'),f.el.append('<div class="alm-paging-content">'+t+'</div><div class="alm-paging-loading"></div>'),f.el.appendTo(f.content),f.content.parent().removeClass("loading"),f.AjaxLoadMore.resetBtnText();var a=parseInt(f.content.css("padding-top")),e=parseInt(f.content.css("padding-bottom"));f.content.css("height",f.el.height()+a+e+"px"),y.isFunction(y.fn.almSetNextPageVars)&&y.fn.almSetNextPageVars(f),setTimeout(function(){y.isFunction(y.fn.almFadePageControls)&&y.fn.almFadePageControls(f.btnWrap),y.isFunction(y.fn.almOnWindowResize)&&y.fn.almOnWindowResize(f)},f.speed)},f.fetchingPreviousPost=!1,f.AjaxLoadMore.getPreviousPost=function(){f.fetchingPreviousPost=!0;var t={action:"alm_query_previous_post",id:f.previous_post_id,taxonomy:f.previous_post_taxonomy,excluded_terms:f.previous_post_excluded_terms};y.ajax({type:"GET",dataType:"JSON",url:alm_localize.ajaxurl,data:t,success:function(t){t.has_previous_post?(f.content.attr("data-previous-post-id",t.prev_id),f.previous_post_id=t.prev_id,f.previous_post_permalink=t.prev_permalink,f.previous_post_title=t.prev_title,f.previous_post_slug=t.prev_slug):t.has_previous_post||f.AjaxLoadMore.triggerDone(),y.isFunction(y.fn.almSetPreviousPost)&&y.fn.almSetPreviousPost(f,t.current_id,t.permalink,t.title),f.fetchingPreviousPost=!1},error:function(t,a,e){f.AjaxLoadMore.error(t,a,e),f.fetchingPreviousPost=!1}})},f.AjaxLoadMore.triggerAddons=function(t){y.isFunction(y.fn.almSEO)&&t.seo&&y.fn.almSEO(t,!1),y.isFunction(y.fn.almSetNextPage)&&y.fn.almSetNextPage(t)},f.AjaxLoadMore.triggerDone=function(){f.loading=!1,f.finished=!0,f.paging||f.button.addClass("done"),y.isFunction(y.fn.almDone)&&setTimeout(function(){y.fn.almDone(f)},f.speed+10)},f.AjaxLoadMore.resetBtnText=function(){!1===f.button_loading_label||f.paging||f.button.html(f.button_label)},f.AjaxLoadMore.error=function(t,a,e){f.loading=!1,f.paging||(f.button.removeClass("loading"),f.AjaxLoadMore.resetBtnText()),console.log(e)},f.paging||f.fetchingPreviousPost||(f.button.unbind("click"),f.button.on("click",function(t){t.preventDefault(),"true"===f.pause&&(f.pause=!1,f.pause_override=!1,f.AjaxLoadMore.loadPosts()),f.loading||f.finished||y(this).hasClass("done")||(f.loading=!0,f.page++,f.AjaxLoadMore.loadPosts()),f.filters&&"function"==typeof almFiltersPaged&&almFiltersPaged(f)})),f.paging&&(f.window.unbind("resizeEnd"),f.window.bind("resizeEnd",function(){y.isFunction(y.fn.almOnWindowResize)&&y.fn.almOnWindowResize(f)}),f.window.unbind("resize"),f.window.bind("resize",function(){this.resizeTO&&clearTimeout(this.resizeTO),this.resizeTO=setTimeout(function(){y(this).trigger("resizeEnd")},f.speed)})),f.AjaxLoadMore.isVisible=function(){return f.visible=!1,f.el.is(":visible")&&(f.visible=!0),f.visible},f.scroll&&!f.paging&&(""!==f.scroll_container&&y(f.scroll_container).length&&(f.window=y(f.scroll_container)),f.window.bind("scroll touchstart",function(){if(f.AjaxLoadMore.isVisible()&&!f.fetchingPreviousPost){var t=f.button.offset().top,a=Math.round(t-(f.window.height()-f.scroll_distance)),e=f.window.scrollTop()>=a;""!==f.scroll_container&&(e=f.button.offset().top-(f.window.height()-f.scroll_distance)<f.window.offset().top),!f.loading&&!f.finished&&e&&f.page<f.max_pages-1&&f.proceed&&"true"===f.pause&&"true"===f.pause_override?f.button.trigger("click"):!f.loading&&!f.finished&&e&&f.page<f.max_pages-1&&f.proceed&&"true"!==f.pause&&f.button.trigger("click")}})),f.AjaxLoadMore.destroyed=function(){f.disable_ajax=!0,f.paging||(f.button.delay(f.speed).fadeOut(f.speed),y.isFunction(y.fn.almDestroyed)&&y.fn.almDestroyed(f))},f.AjaxLoadMore.fadeIn=function(t,a){if(0==a)t.style.opacity=1,t.style.height="auto";else{a/=10;var e=0,o=setInterval(function(){.9<e&&(t.style.opacity=1,clearInterval(o)),t.style.opacity=e,e+=.1},a);t.style.height="auto"}},f.AjaxLoadMore.transitionEnd=function(){setTimeout(function(){f.loading=!1,f.container.removeClass("alm-loading"),f.AjaxLoadMore.triggerAddons(f),f.paging||(f.button.delay(f.speed).removeClass("loading"),f.AjaxLoadMore.resetBtnText())},f.speed)},f.AjaxLoadMore.init=function(){("true"===f.preloaded&&1==f.destroy_after&&f.AjaxLoadMore.destroyed(),f.paging||f.previous_post||(f.disable_ajax?(f.finished=!0,f.button.addClass("done")):"true"===f.pause?(f.button.html(f.button_label),f.loading=!1):f.AjaxLoadMore.loadPosts()),f.previous_post&&(f.AjaxLoadMore.getPreviousPost(),f.loading=!1),"true"===f.preloaded&&f.seo&&!f.paging&&setTimeout(function(){y.isFunction(y.fn.almSEO)&&f.start_page<1&&y.fn.almSEO(f,!0)},f.speed),"true"!==f.preloaded||f.paging||setTimeout(function(){f.preloaded_total_posts<=parseInt(f.preloaded_amount)&&f.AjaxLoadMore.triggerDone(),0==f.preloaded_total_posts&&y.isFunction(y.fn.almEmpty)&&y.fn.almEmpty(f)},f.speed),f.nextpage)&&(1<y(".alm-nextpage").length&&y(".alm-nextpage").length==y(".alm-nextpage").eq(0).data("total-pages")&&f.AjaxLoadMore.triggerDone());f.window.bind("load",function(){f.is_masonry_preloaded&&(almMasonry(f.masonry_wrap,f.el,f.masonry_selector,f.masonry_columnwidth,f.masonry_animation,f.masonry_horizontalorder,f.speed,f.masonry_init,!0,!1),f.masonry_init=!1)})},f.AjaxLoadMore.init(),setTimeout(function(){f.proceed=!0},150),y.fn.almUpdateCurrentPage=function(t,a,e){e.page=t,e.nextpage&&!e.paging&&(e.page=e.page-1);var o="";e.paging_init&&"true"===e.preloaded?(o=y(".alm-preloaded .alm-reveal",e.el).html(),y(".alm-preloaded",e.el).remove(),e.preloaded_amount=0,e.AjaxLoadMore.pagingPreloadedInit(o),e.paging_init=!1,e.init=!1):e.paging_init&&e.nextpage?(o=y(".alm-nextpage",e.el).html(),y(".alm-nextpage",e.el).remove(),e.AjaxLoadMore.pagingNextpageInit(o),e.paging_init=!1,e.init=!1):e.AjaxLoadMore.loadPosts()},y.fn.almGetParentContainer=function(){return f.el.closest("#ajax-load-more")},y.fn.almGetObj=function(){return f},y.fn.almTriggerClick=function(){f.button.trigger("click")},y.easing.alm_easeInOutQuad=function(t,a,e,o,n){return(a/=n/2)<1?o/2*a*a+e:-o/2*(--a*(a-2)-1)+e}},y.fn.ajaxloadmore=function(){return this.each(function(t){new y.ajaxloadmore(y(this),t)})};var t=document.querySelectorAll(".ajax-load-more-wrap");t.length&&[].concat(_toConsumableArray(t)).forEach(function(t,a){new y.ajaxloadmore(y(t),a)})}(jQuery);var _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};!function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"===("undefined"==typeof exports?"undefined":_typeof(exports))?module.exports=t(require("jquery")):t(jQuery)}(function(g){var m="almWaitForImages";g.almWaitForImages={hasImageProperties:["backgroundImage","listStyleImage","borderImage","borderCornerImage","cursor"],hasImageAttributes:["srcset"]},g.expr[":"]["has-src"]=function(t){return g(t).is('img[src][src!=""]')},g.expr[":"].uncached=function(t){return!!g(t).is(":has-src")&&!t.complete},g.fn.almWaitForImages=function(){var l,d,e,p=0,c=0,_=g.Deferred();if(g.isPlainObject(arguments[0])?(e=arguments[0].waitForAll,d=arguments[0].each,l=arguments[0].finished):1===arguments.length&&"boolean"===g.type(arguments[0])?e=arguments[0]:(l=arguments[0],d=arguments[1],e=arguments[2]),l=l||g.noop,d=d||g.noop,e=!!e,!g.isFunction(l)||!g.isFunction(d))throw new TypeError("An invalid callback was supplied.");return this.each(function(){var r=g(this),s=[],t=g.almWaitForImages.hasImageProperties||[],a=g.almWaitForImages.hasImageAttributes||[],i=/url\(\s*(['"]?)(.*?)\1\s*\)/g;e?r.find("*").addBack().each(function(){var n=g(this);n.is("img:has-src")&&s.push({src:n.attr("src"),element:n[0]}),g.each(t,function(t,a){var e,o=n.css(a);if(!o)return!0;for(;e=i.exec(o);)s.push({src:e[2],element:n[0]})}),g.each(a,function(t,a){var e,o=n.attr(a);if(!o)return!0;e=o.split(","),g.each(e,function(t,a){a=g.trim(a).split(" ")[0],s.push({src:a,element:n[0]})})})}):r.find("img:has-src").each(function(){s.push({src:this.src,element:this})}),p=s.length,(c=0)===p&&(l.call(r[0]),_.resolveWith(r[0])),g.each(s,function(t,o){var a=new Image,n="load."+m+" error."+m;g(a).one(n,function t(a){var e=[c,p,"load"==a.type];if(c++,d.apply(o.element,e),_.notifyWith(o.element,e),g(this).off(n,t),c==p)return l.call(r[0]),_.resolveWith(r[0]),!1}),a.src=o.src})}),_.promise()}});
1
+ "use strict";Array.from||(Array.from=function(){var a=Object.prototype.toString,l=function(t){return"function"==typeof t||"[object Function]"===a.call(t)},o=Math.pow(2,53)-1,d=function(t){var a,e=(a=Number(t),isNaN(a)?0:0!==a&&isFinite(a)?(0<a?1:-1)*Math.floor(Math.abs(a)):a);return Math.min(Math.max(e,0),o)};return function(t){var a=Object(t);if(null==t)throw new TypeError("Array.from requires an array-like object - not null or undefined");var e,o=1<arguments.length?arguments[1]:void 0;if(void 0!==o){if(!l(o))throw new TypeError("Array.from: when provided, the second argument must be a function");2<arguments.length&&(e=arguments[2])}for(var n,r=d(a.length),s=l(this)?Object(new this(r)):new Array(r),i=0;i<r;)n=a[i],s[i]=o?void 0===e?o(n,i):o.call(e,n,i):n,i+=1;return s.length=r,s}}());var almGetParameterByName=function(t,a){a||(a=window.location.href),t=t.replace(/[\[\]]/g,"\\$&");var e=new RegExp("[?&]"+t+"(=([^&#]*)|&|#|$)").exec(a);return e?e[2]?decodeURIComponent(e[2].replace(/\+/g," ")):"":null},almGetAjaxParams=function(t,a,e){var o={action:a,nonce:alm_localize.alm_nonce,query_type:e,id:t.id,post_id:t.post_id,slug:t.slug,canonical_url:t.canonical_url,posts_per_page:t.posts_per_page,page:t.page,offset:t.offset,post_type:t.post_type,repeater:t.repeater,seo_start_page:t.start_page};return t.theme_repeater&&(o.theme_repeater=t.theme_repeater),t.paging&&(o.paging=t.paging),t.preloaded&&(o.preloaded=t.preloaded,o.preloaded_amount=t.preloaded_amount),"true"===t.cache&&(o.cache_id=t.cache_id,o.cache_logged_in=t.cache_logged_in),t.acf_array&&(o.acf=t.acf_array),t.cta_array&&(o.cta=t.cta_array),t.comments_array&&(o.comments=t.comments_array),t.nextpage_array&&(o.nextpage=t.nextpage_array),t.previous_post_array&&(o.previous_post=t.previous_post_array),t.users_array&&(o.users=t.users_array),t.content.attr("data-lang")&&(o.lang=t.content.attr("data-lang")),t.content.attr("data-sticky-posts")&&(o.sticky_posts=t.content.attr("data-sticky-posts")),t.content.attr("data-post-format")&&(o.post_format=t.content.attr("data-post-format")),t.content.attr("data-category")&&(o.category=t.content.attr("data-category")),t.content.attr("data-category-not-in")&&(o.category__not_in=t.content.attr("data-category-not-in")),t.content.attr("data-tag")&&(o.tag=t.content.attr("data-tag")),t.content.attr("data-tag-not-in")&&(o.tag__not_in=t.content.attr("data-tag-not-in")),t.content.attr("data-taxonomy")&&(o.taxonomy=t.content.attr("data-taxonomy")),t.content.attr("data-taxonomy-terms")&&(o.taxonomy_terms=t.content.attr("data-taxonomy-terms")),t.content.attr("data-taxonomy-operator")&&(o.taxonomy_operator=t.content.attr("data-taxonomy-operator")),t.content.attr("data-taxonomy-relation")&&(o.taxonomy_relation=t.content.attr("data-taxonomy-relation")),t.content.attr("data-meta-key")&&(o.meta_key=t.content.attr("data-meta-key")),t.content.attr("data-meta-value")&&(o.meta_value=t.content.attr("data-meta-value")),t.content.attr("data-meta-compare")&&(o.meta_compare=t.content.attr("data-meta-compare")),t.content.attr("data-meta-relation")&&(o.meta_relation=t.content.attr("data-meta-relation")),t.content.attr("data-meta-type")&&(o.meta_type=t.content.attr("data-meta-type")),t.content.attr("data-author")&&(o.author=t.content.attr("data-author")),t.content.attr("data-year")&&(o.year=t.content.attr("data-year")),t.content.attr("data-month")&&(o.month=t.content.attr("data-month")),t.content.attr("data-day")&&(o.day=t.content.attr("data-day")),t.content.attr("data-order")&&(o.order=t.content.attr("data-order")),t.content.attr("data-orderby")&&(o.orderby=t.content.attr("data-orderby")),t.content.attr("data-post-status")&&(o.post_status=t.content.attr("data-post-status")),t.content.attr("data-post-in")&&(o.post__in=t.content.attr("data-post-in")),t.content.attr("data-post-not-in")&&(o.post__not_in=t.content.attr("data-post-not-in")),t.content.attr("data-exclude")&&(o.exclude=t.content.attr("data-exclude")),t.content.attr("data-search")&&(o.search=t.content.attr("data-search")),t.content.attr("data-custom-args")&&(o.custom_args=t.content.attr("data-custom-args")),o},almGetRestParams=function(t){return{id:t.id,post_id:t.post_id,posts_per_page:t.posts_per_page,page:t.page,offset:t.offset,slug:t.slug,canonical_url:t.canonical_url,post_type:t.post_type,post_format:t.content.attr("data-post-format"),category:t.content.attr("data-category"),category__not_in:t.content.attr("data-category-not-in"),tag:t.content.attr("data-tag"),tag__not_in:t.content.attr("data-tag-not-in"),taxonomy:t.content.attr("data-taxonomy"),taxonomy_terms:t.content.attr("data-taxonomy-terms"),taxonomy_operator:t.content.attr("data-taxonomy-operator"),taxonomy_relation:t.content.attr("data-taxonomy-relation"),meta_key:t.content.attr("data-meta-key"),meta_value:t.content.attr("data-meta-value"),meta_compare:t.content.attr("data-meta-compare"),meta_relation:t.content.attr("data-meta-relation"),meta_type:t.content.attr("data-meta-type"),author:t.content.attr("data-author"),year:t.content.attr("data-year"),month:t.content.attr("data-month"),day:t.content.attr("data-day"),post_status:t.content.attr("data-post-status"),order:t.content.attr("data-order"),orderby:t.content.attr("data-orderby"),post__in:t.content.attr("data-post-in"),post__not_in:t.content.attr("data-post-not-in"),search:t.content.attr("data-search"),custom_args:t.content.attr("data-custom-args"),lang:t.lang,preloaded:t.preloaded,preloaded_amount:t.preloaded_amount,seo_start_page:t.start_page}};function _toConsumableArray(t){if(Array.isArray(t)){for(var a=0,e=Array(t.length);a<t.length;a++)e[a]=t[a];return e}return Array.from(t)}var alm_is_filtering=!1;!function(r){r.fn.almFilter=function(e,o,n){n.target?r(".ajax-load-more-wrap[data-id='"+n.target+"']").each(function(t){var a=r(this);r.fn.almFilterTransition(e,o,n,a)}):r(".ajax-load-more-wrap").each(function(t){var a=r(this);r.fn.almFilterTransition(e,o,n,a)})},r.fn.almFilterTransition=function(t,a,e,o){"slide"===t?o.slideUp(a,function(){n(a,e,o)}):"fade"===t||"masonry"===t?o.fadeOut(a,function(){n(a,e,o)}):n(a,e,o)};var n=function(t,a,e){var o=e.get(0),n=o.querySelectorAll(".alm-listing");[].concat(_toConsumableArray(n)).forEach(function(t){t.innerHTML=""});var r=o.querySelector(".alm-load-more-btn");r&&r.classList.remove("done"),s(t,a,e)},s=function(t,a,e){r.each(a,function(t,a){t=t.replace(/\W+/g,"-").replace(/([a-z\d])([A-Z])/g,"$1-$2"),r(".alm-listing",e).attr("data-"+t,a)}),r.isFunction(r.fn.almFilterComplete)&&r.fn.almFilterComplete(),"function"==typeof almFiltersAddonComplete&&almFiltersAddonComplete(e),alm_is_filtering=!0,e.fadeIn(t),a.target?r(".ajax-load-more-wrap[data-id="+a.target+"]").ajaxloadmore():r(".ajax-load-more-wrap").ajaxloadmore()}}(jQuery);var almMasonry=function t(o,a,n,r,e,s,i,l,d,p){var c=(i+100)/1e3+"s",_="scale(0.5)",g="scale(1)";"zoom-out"===e&&(_="translateY(-20px) scale(1.25)",g="translateY(0) scale(1)"),"slide-up"===e&&(_="translateY(50px)",g="translateY(0)"),"slide-down"===e&&(_="translateY(-50px)",g="translateY(0)"),"none"===e&&(g=_="translateY(0)"),r?isNaN(r)||(r=parseInt(r)):r=n,s="true"===s,p?(o.masonry("destroy"),o[0].parentNode.style.opacity=0,o.append(a),t(o,a,n,r,e,s,i,!0,!0,!1)):l&&d?o.imagesLoaded(function(){var a={itemSelector:n,transitionDuration:c,columnWidth:r,horizontalOrder:s,hiddenStyle:{transform:_,opacity:0},visibleStyle:{transform:g,opacity:1}},e=e;e&&Object.keys(e).forEach(function(t){a[t]=e[t]}),o.masonry(a),almMasonryFadeIn(o[0].parentNode,i)}):a.imagesLoaded(function(){o.append(a).masonry("appended",a)})},almMasonryFadeIn=function(t,a){a/=10;var e=parseInt(t.style.opacity),o=setInterval(function(){.9<e&&(t.style.opacity=1,clearInterval(o)),t.style.opacity=e,e+=.1},a)};function _toConsumableArray(t){if(Array.isArray(t)){for(var a=0,e=Array(t.length);a<t.length;a++)e[a]=t[a];return e}return Array.from(t)}!function(y){y.ajaxloadmore=function(t,a){"true"===alm_localize.scrolltop&&y(window).scrollTop(0);var f=this;if(f.AjaxLoadMore={},f.window=y(window),f.page=0,f.posts=0,f.totalposts=0,f.proceed=!1,f.disable_ajax=!1,f.init=!0,f.loading=!0,f.finished=!1,f.prefix="alm-",f.el=t,f.container=t,f.container.addClass("alm-"+a).attr("data-alm-id",a),f.content=y(".alm-ajax",f.container),f.content_preloaded=y(".alm-listing.alm-preloaded",f.container),f.canonical_url=f.el.attr("data-canonical-url"),f.is_search=f.el.attr("data-search"),f.slug=f.el.attr("data-slug"),f.post_id=f.el.attr("data-post-id"),f.id=f.el.attr("data-id")?f.el.attr("data-id"):"",f.repeater=f.content.attr("data-repeater"),f.theme_repeater=f.content.attr("data-theme-repeater"),f.post_type=f.content.attr("data-post-type"),f.post_type=f.post_type.split(","),f.sticky_posts=f.content.attr("data-sticky-posts"),f.btnWrap=y(".alm-btn-wrap",f.container),f.button_label=f.content.attr("data-button-label"),f.button_loading_label=f.content.attr("data-button-loading-label"),f.scroll_distance=f.content.attr("data-scroll-distance"),f.scroll_distance=f.scroll_distance?parseInt(f.scroll_distance):150,f.scroll_container=f.content.attr("data-scroll-container"),f.max_pages=f.content.attr("data-max-pages"),f.max_pages=f.max_pages?parseInt(f.max_pages):0,f.pause_override=f.content.attr("data-pause-override"),f.pause=f.content.attr("data-pause"),f.transition=f.content.attr("data-transition"),f.transition_container=f.content.attr("data-transition-container"),f.tcc=f.content.attr("data-transition-container-classes"),f.speed=250,f.images_loaded=f.content.attr("data-images-loaded"),f.destroy_after=f.content.attr("data-destroy-after"),f.orginal_posts_per_page=f.content.attr("data-posts-per-page"),f.posts_per_page=f.content.attr("data-posts-per-page"),f.offset=f.content.attr("data-offset"),f.cache=f.content.attr("data-cache"),f.cache_id=f.content.attr("data-cache-id"),f.cache_path=f.content.attr("data-cache-path"),f.cache_logged_in=f.content.attr("data-cache-logged-in"),f.cta=f.content.attr("data-cta"),f.cta_position=f.content.attr("data-cta-position"),f.cta_repeater=f.content.attr("data-cta-repeater"),f.cta_theme_repeater=f.content.attr("data-cta-theme-repeater"),f.acf=f.content.attr("data-acf"),f.acf_field_type=f.content.attr("data-acf-field-type"),f.acf_field_name=f.content.attr("data-acf-field-name"),f.acf_post_id=f.content.attr("data-acf-post-id"),f.nextpage=f.content.attr("data-nextpage"),f.nextpage_urls=f.content.attr("data-nextpage-urls"),f.nextpage_scroll=f.content.attr("data-nextpage-scroll"),f.nextpage_pageviews=f.content.attr("data-nextpage-pageviews"),f.nextpage_post_id=f.content.attr("data-nextpage-post-id"),f.nextpage_startpage=f.content.attr("data-nextpage-startpage"),f.previous_post=f.content.attr("data-previous-post"),f.previous_post_id=f.content.attr("data-previous-post-id"),f.previous_post_taxonomy=f.content.attr("data-previous-post-taxonomy"),f.previous_post_excluded_terms=f.content.attr("data-previous-post-excluded-terms"),f.comments=f.content.attr("data-comments"),"true"===f.comments&&(f.content=y(".alm-comments",f.container)),f.comments_post_id=f.content.attr("data-comments_post_id"),f.comments_per_page=f.content.attr("data-comments_per_page"),f.comments_type=f.content.attr("data-comments_type"),f.comments_style=f.content.attr("data-comments_style"),f.comments_template=f.content.attr("data-comments_template"),f.comments_callback=f.content.attr("data-comments_callback"),f.filters=f.content.attr("data-filters"),f.restapi=f.content.attr("data-restapi"),f.restapi_base_url=f.content.attr("data-restapi-base-url"),f.restapi_namespace=f.content.attr("data-restapi-namespace"),f.restapi_endpoint=f.content.attr("data-restapi-endpoint"),f.restapi_template_id=f.content.attr("data-restapi-template-id"),f.restapi_debug=f.content.attr("data-restapi-debug"),f.seo=f.content.attr("data-seo"),f.preloaded=f.content.attr("data-preloaded"),f.preloaded_amount=f.content.attr("data-preloaded-amount"),f.paging=f.content.attr("data-paging"),f.users="true"===f.content.attr("data-users"),f.users&&(f.orginal_posts_per_page=f.content.attr("data-users-per-page"),f.posts_per_page=f.content.attr("data-users-per-page")),"true"===f.filters){f.filters=!0,f.filters_analtyics=f.content.attr("data-filters-analtyics"),f.filters_debug=f.content.attr("data-filters-debug"),f.filters_startpage=0;var e=almGetParameterByName("pg");null!==e&&(f.filters_startpage=parseInt(e),f.page=f.filters_startpage),f.isPaged=!1,0<f.filters_startpage&&(f.isPaged=!0,f.page=f.filters_startpage-1)}else f.filters=!1;"true"===f.restapi?(f.restapi=!0,void 0===f.restapi_debug&&(f.restapi_debug=!1),""===f.restapi_template_id&&(f.restapi=!1)):f.restapi=!1,"true"===f.paging?(f.paging=!0,f.paging_controls=!!f.content.attr("data-paging-controls"),f.paging_show_at_most=f.content.attr("data-paging-show-at-most"),f.paging_classes=f.content.attr("data-paging-classes"),f.paging_init=!0,f.paging_show_at_most=void 0===f.paging_show_at_most?7:f.paging_show_at_most,"true"===f.preloaded&&(f.pause=!0)):f.paging=!1,void 0===f.cache&&(f.cache=!1),void 0===f.cache_logged_in&&(f.cache_logged_in=!1),void 0===f.comments_per_page&&(f.comments_per_page="5"),"true"===f.preloaded?(f.preload_wrap=f.content.prev(".alm-preloaded"),f.preloaded_total_posts=parseInt(f.preload_wrap.attr("data-total-posts")),void 0===f.preloaded_amount&&(f.preloaded_amount=!1),f.preloaded_total_posts<=f.preloaded_amount&&(f.disable_ajax=!0)):f.preloaded="false",void 0===f.seo&&(f.seo=!1),"true"===f.seo&&(f.seo=!0),void 0===f.is_search&&(f.is_search=!1),f.search_value="true"===f.is_search?f.slug:"",f.permalink=f.content.attr("data-seo-permalink"),f.pageview=f.content.attr("data-seo-pageview"),f.start_page=f.content.attr("data-seo-start-page"),f.seo_trailing_slash="false"===f.content.attr("data-seo-trailing-slash")?"":"/",f.seo_leading_slash="true"===f.content.attr("data-seo-leading-slash")?"/":"",f.start_page?(f.seo_scroll=f.content.attr("data-seo-scroll"),f.seo_scroll_speed=f.content.attr("data-seo-scroll-speed"),f.seo_scrolltop=f.content.attr("data-seo-scrolltop"),f.seo_controls=f.content.attr("data-seo-controls"),f.isPaged=!1,1<f.start_page&&(f.isPaged=!0,f.posts_per_page=f.start_page*f.posts_per_page),f.paging&&(f.posts_per_page=f.orginal_posts_per_page)):f.start_page=1,"true"===f.nextpage?(f.nextpage=!0,f.posts_per_page=1):f.nextpage=!1,void 0===f.nextpage_urls&&(f.nextpage_urls="true"),void 0===f.nextpage_scroll&&(f.nextpage_scroll="250:30"),void 0===f.nextpage_pageviews&&(f.nextpage_pageviews="true"),void 0===f.nextpage_post_id&&(f.nextpage=!1,f.nextpage_post_id=null),void 0===f.nextpage_startpage&&(f.nextpage_startpage=1),1<f.nextpage_startpage&&(f.isPaged=!0),f.acf="true"===f.acf,void 0!==f.acf_field_type&&void 0!==f.acf_field_name&&void 0!==f.acf_post_id||(f.acf=!1),"true"===f.previous_post?(f.previous_post=!0,f.previous_post_permalink="",f.previous_post_title="",f.previous_post_slug=""):f.previous_post=!1,void 0===f.previous_post_id&&(f.previous_post_id=""),void 0===f.previous_post_taxonomy&&(f.previous_post_taxonomy=""),void 0===f.previous_post_excluded_terms&&(f.previous_post_excluded_terms=""),f.previous_post_title_template=f.content.attr("data-previous-post-title-template"),f.siteTitle=f.content.attr("data-previous-post-site-title"),f.siteTagline=f.content.attr("data-previous-post-site-tagline"),f.previous_post_pageview=f.content.attr("data-previous-post-pageview"),f.previous_post_scroll=f.content.attr("data-previous-post-scroll"),f.previous_post_scroll_speed=f.content.attr("data-previous-post-scroll-speed"),f.previous_post_scroll_top=f.content.attr("data-previous-post-scrolltop"),f.previous_post_controls=f.content.attr("data-previous-post-controls"),f.offset=void 0===f.offset?0:f.offset,(void 0===f.pause||f.seo&&1<f.start_page)&&(f.pause=!1),"true"===f.preloaded&&f.seo&&0<f.start_page&&(f.pause=!1),"true"===f.preloaded&&f.paging&&(f.pause=!0),void 0===f.repeater&&(f.repeater="default"),f.theme_repeater=void 0!==f.theme_repeater&&f.theme_repeater,f.max_pages=void 0===f.max_pages||0===f.max_pages?1e4:f.max_pages,f.scroll_distance=void 0===f.scroll_distance?150:f.scroll_distance,f.scroll_container=void 0===f.scroll_container?"":f.scroll_container,f.transition=void 0===f.transition?"fade":f.transition,f.tcc=void 0===f.tcc?"":f.tcc,f.is_masonry_preloaded=!1,"masonry"===f.transition&&(f.masonry_init=!0,f.masonry_selector=f.content.attr("data-masonry-selector"),f.masonry_columnwidth=f.content.attr("data-masonry-columnwidth"),f.masonry_animation=f.content.attr("data-masonry-animation"),f.masonry_horizontalorder=f.content.attr("data-masonry-horizontalorder"),void 0===f.masonry_animation&&(f.masonry_animation="standard"),void 0===f.masonry_horizontalorder&&(f.masonry_horizontalorder="true"),f.masonry_wrap=f.content,f.transition_container=!1,document.body.contains(f.content_preloaded.get(0))&&(f.masonry_wrap=f.content_preloaded,f.is_masonry_preloaded=!0)),void 0===f.content.attr("data-scroll")?f.scroll=!0:"false"===f.content.attr("data-scroll")?f.scroll=!1:f.scroll=!0,f.transition_container=void 0===f.transition_container||"true"===f.transition_container,f.images_loaded=void 0===f.images_loaded?"false":f.images_loaded,f.button_label=void 0===f.button_label?"Older Posts":f.button_label,f.button_loading_label=void 0!==f.button_loading_label&&f.button_loading_label,f.paging?f.content.parent().addClass("loading"):f.button=y(".alm-load-more-btn",f.container),f.AjaxLoadMore.loadPosts=function(){if(!f.disable_ajax)if(f.paging||(f.button.addClass("loading"),!1!==f.button_loading_label&&f.button.html(f.button_loading_label)),f.container.addClass("alm-loading"),f.loading=!0,"true"!==f.cache||f.cache_logged_in)f.AjaxLoadMore.ajax("standard");else{var t;if(f.init&&f.seo&&f.isPaged){t=f.cache_path+f.cache_id+"/page-1-"+f.start_page+".html"}else if(f.nextpage){var a;f.paging?a=parseInt(f.page)+1:(a=parseInt(f.page)+2,f.isPaged&&(a=parseInt(f.page)+parseInt(f.nextpage_startpage)+1)),t=f.cache_path+f.cache_id+"/page-"+a+".html"}else t=f.previous_post?f.cache_path+f.cache_id+"/"+f.previous_post_id+".html":f.cache_path+f.cache_id+"/page-"+(f.page+1)+".html";y.get(t,function(t){f.AjaxLoadMore.success(t,!0)}).fail(function(){f.AjaxLoadMore.ajax("standard")})}},f.AjaxLoadMore.ajax=function(a){var t="alm_query_posts";if(f.acf_array="",f.acf&&("relationship"!==f.acf_field_type&&(t="alm_acf_query"),f.acf_array={acf:"true",post_id:f.acf_post_id,field_type:f.acf_field_type,field_name:f.acf_field_name}),f.nextpage_array="",f.nextpage&&(t="alm_nextpage_query",f.nextpage_array={nextpage:"true",urls:f.nextpage_urls,scroll:f.nextpage_scroll,pageviews:f.nextpage_pageviews,post_id:f.nextpage_post_id,startpage:f.nextpage_startpage}),f.previous_post_array="",f.previous_post&&(f.previous_post_array={previous_post:"true",id:f.previous_post_id,slug:f.previous_post_slug}),f.comments_array="","true"===f.comments&&(t="alm_comments_query",f.posts_per_page=f.comments_per_page,f.comments_array={comments:"true",post_id:f.comments_post_id,per_page:f.comments_per_page,type:f.comments_type,style:f.comments_style,template:f.comments_template,callback:f.comments_callback}),f.users_array="",f.users&&(t="alm_users_query",f.users_array={users:"true",role:f.content.attr("data-users-role"),include:f.content.attr("data-users-include"),exclude:f.content.attr("data-users-exclude"),per_page:f.posts_per_page,order:f.content.attr("data-users-order"),orderby:f.content.attr("data-users-orderby")}),f.cta_array="","true"===f.cta&&(f.cta_array={cta:"true",cta_position:f.cta_position,cta_repeater:f.cta_repeater,cta_theme_repeater:f.cta_theme_repeater}),f.restapi){var i=wp.template(f.restapi_template_id),e=f.restapi_base_url+"/"+f.restapi_namespace+"/"+f.restapi_endpoint,o=almGetRestParams(f);y.ajax({type:"GET",url:e,data:o,dataType:"JSON",beforeSend:function(){1==f.page||f.paging||f.button.addClass("loading")},success:function(t){var e="",o=t.html,a=t.meta,n=a.postcount,r=a.totalposts;y.each(o,function(t){var a=o[t];"true"===f.restapi_debug&&console.log(a),e+=i(a)});var s={html:e,meta:{postcount:n,totalposts:r}};f.AjaxLoadMore.success(s,!1)}})}else{var n=almGetAjaxParams(f,t,a);y.ajax({type:"GET",url:alm_localize.ajaxurl,dataType:"JSON",data:n,beforeSend:function(){1==f.page||f.paging||f.button.addClass("loading")},success:function(t){"standard"===a?f.AjaxLoadMore.success(t,!1):"totalpages"===a&&f.paging&&f.nextpage?y.isFunction(y.fn.almBuildPagination)&&y.fn.almBuildPagination(t,f):"totalposts"===a&&f.paging&&y.isFunction(y.fn.almBuildPagination)&&y.fn.almBuildPagination(t,f)},error:function(t,a,e){f.AjaxLoadMore.error(t,a,e)}})}},f.paging&&(f.nextpage?f.AjaxLoadMore.ajax("totalpages"):f.AjaxLoadMore.ajax("totalposts")),f.AjaxLoadMore.success=function(t,a){f.previous_post&&f.AjaxLoadMore.getPreviousPost();var e,o,n,r='style="opacity: 0; height: 0;"';if(a?e=t:(e=t.html,o=t.meta,f.posts=f.posts+o.postcount,n=o.postcount,f.totalposts=o.totalposts,"true"===f.preloaded&&(f.totalposts=f.totalposts-f.preloaded_amount)),f.data=y(e),a&&(n=f.data.length),f.init&&(o&&o.totalposts&&f.el.attr("data-total-posts",o.totalposts),f.paging?0<n&&(f.el=y('<div class="alm-reveal'+f.tcc+'" '+r+"/>"),f.el.append('<div class="alm-paging-content'+f.tcc+'"></div><div class="alm-paging-loading"></div>'),y(".alm-paging-content",f.el).append(f.data),f.content.append(f.el),f.AjaxLoadMore.fadeIn(f.el.get(0),f.speed),f.content.parent().removeClass("loading"),f.AjaxLoadMore.resetBtnText(),setTimeout(function(){y(".alm-paging-content",f.el).fadeIn(f.speed,"alm_easeInOutQuad",function(){var t=parseInt(f.content.css("padding-top")),a=parseInt(f.content.css("padding-bottom"));f.content.css("height",f.el.height()+t+a+"px"),y.isFunction(y.fn.almFadePageControls)&&y.fn.almFadePageControls(f.btnWrap)})},f.speed)):f.button.html(f.button_label),0===n&&(f.paging&&y.isFunction(y.fn.almPagingEmpty)&&y.fn.almPagingEmpty(f),y.isFunction(y.fn.almEmpty)&&y.fn.almEmpty(f)),f.isPaged&&(f.posts_per_page=f.users?f.content.attr("data-users-per-page"):f.content.attr("data-posts-per-page"),f.start_page&&(f.page=f.start_page-1),f.filters&&f.filters_startpage&&(f.page=f.filters_startpage-1,f.posts_per_page=f.content.attr("data-posts-per-page")))),0<n){if(f.paging)f.init?(f.container.removeClass("alm-loading"),f.AjaxLoadMore.triggerAddons(f)):y(".alm-paging-content",f.el).html("").append(f.data).almWaitForImages().done(function(){y(".alm-paging-loading",f.el).fadeOut(f.speed),y.isFunction(y.fn.almOnPagingComplete)&&y.fn.almOnPagingComplete(f),f.container.removeClass("alm-loading"),f.AjaxLoadMore.triggerAddons(f)});else{if(f.previous_post)f.el=y('<div class="alm-reveal alm-previous-post post-'+f.previous_post_id+'" '+r+' data-id="'+f.previous_post_id+'" data-title="'+f.previous_post_title+'" data-url="'+f.previous_post_permalink+'" data-page="'+f.page+'"/>'),f.el.append(f.data);else if(f.transition_container){var s=void 0,i=window.location.search;if(f.init&&1<f.start_page){var l=[],d=parseInt(f.posts_per_page);"true"===f.cta&&(d+=1);Math.ceil(n/d);for(var p=0;p<n;p+=d)l.push(f.data.slice(p,d+p));f.el=f.content;for(var c=0;c<l.length;c++){var _="true"===f.preloaded?1:0,g=void 0;0<c||"true"===f.preloaded?(s=c+1+_,g="default"===f.permalink?y('<div class="alm-reveal alm-seo'+f.tcc+'" data-url="'+f.canonical_url+f.search_value+"&paged="+s+'" data-page="'+s+'" />'):y('<div class="alm-reveal alm-seo'+f.tcc+'" data-url="'+f.canonical_url+f.seo_leading_slash+"page/"+s+f.seo_trailing_slash+f.search_value+'" data-page="'+s+'" />')):g=y('<div class="alm-reveal alm-seo'+f.tcc+'" data-url="'+f.canonical_url+f.search_value+'" data-page="1" />'),g.append(l[c]),g=y(g),f.el.append(g)}}else{if(f.seo&&0<f.page||"true"===f.preloaded){var m="true"===f.preloaded?1:0;s=f.page+1+m,f.seo?"default"===f.permalink?f.el=y('<div class="alm-reveal alm-seo'+f.tcc+'" '+r+' data-url="'+f.canonical_url+f.search_value+"&paged="+s+'" data-page="'+s+'" />'):f.el=y('<div class="alm-reveal alm-seo'+f.tcc+'" '+r+' data-url="'+f.canonical_url+f.seo_leading_slash+"page/"+s+f.seo_trailing_slash+f.search_value+'" data-page="'+s+'" />'):f.filters?f.el=y('<div class="alm-reveal alm-filters'+f.tcc+'" '+r+' data-url="'+f.canonical_url+i+'" data-page="'+s+'" />'):f.el=y('<div class="alm-reveal'+f.tcc+'" '+r+" />")}else f.filters?f.el=y('<div class="alm-reveal alm-filters'+f.tcc+'" '+r+' data-url="'+f.canonical_url+i+'" data-page="'+(f.page+1)+'" />'):f.seo?f.el=y('<div class="alm-reveal alm-seo'+f.tcc+'" '+r+' data-url="'+f.canonical_url+f.search_value+'" data-page="1" />'):f.el=y('<div class="alm-reveal'+f.tcc+'" '+r+" />");f.el.append(f.data)}}else f.el=f.data;("masonry"!==f.transition||f.init&&!f.is_masonry_preloaded)&&f.content.append(f.el),"masonry"===f.transition?(almMasonry(f.masonry_wrap,f.el,f.masonry_selector,f.masonry_columnwidth,f.masonry_animation,f.masonry_horizontalorder,f.speed,f.masonry_init,f.init,alm_is_filtering),f.masonry_init=!1,f.AjaxLoadMore.transitionEnd()):"none"===f.transition?(f.AjaxLoadMore.fadeIn(f.el.get(0),0),f.AjaxLoadMore.transitionEnd()):"true"===f.images_loaded?f.el.almWaitForImages().done(function(){f.transition_container&&f.AjaxLoadMore.fadeIn(f.el.get(0),f.speed),f.AjaxLoadMore.transitionEnd()}):(f.transition_container&&f.AjaxLoadMore.fadeIn(f.el.get(0),f.speed),f.AjaxLoadMore.transitionEnd())}y.isFunction(y.fn.almComplete)&&("true"===f.images_loaded?f.el.almWaitForImages().done(function(){y.fn.almComplete(f)}):y.fn.almComplete(f)),f.cache?n<f.posts_per_page&&f.AjaxLoadMore.triggerDone():f.posts>=f.totalposts&&!f.previous_post&&f.AjaxLoadMore.triggerDone()}else f.paging||(f.button.delay(f.speed).removeClass("loading").addClass("done"),f.AjaxLoadMore.resetBtnText()),f.AjaxLoadMore.triggerDone();if(void 0!==f.destroy_after&&""!==f.destroy_after){var u=f.page+1;"true"===f.preloaded&&u++,u==f.destroy_after&&f.AjaxLoadMore.destroyed()}alm_is_filtering=!1,f.init=!1},f.AjaxLoadMore.pagingPreloadedInit=function(t){t=null==t?"":t,f.el=y('<div class="alm-reveal'+f.tcc+'"/>'),f.el.append('<div class="alm-paging-content">'+t+'</div><div class="alm-paging-loading"></div>'),f.content.append(f.el),f.content.parent().removeClass("loading"),f.AjaxLoadMore.resetBtnText();var a=parseInt(f.content.css("padding-top")),e=parseInt(f.content.css("padding-bottom"));f.content.css("height",f.el.height()+a+e+"px"),""===t&&(y.isFunction(y.fn.almPagingEmpty)&&y.fn.almPagingEmpty(f),y.isFunction(y.fn.almEmpty)&&y.fn.almEmpty(f)),setTimeout(function(){y.isFunction(y.fn.almFadePageControls)&&y.fn.almFadePageControls(f.btnWrap)},f.speed)},f.AjaxLoadMore.pagingNextpageInit=function(t){f.el=y('<div class="alm-reveal alm-nextpage"/>'),f.el.append('<div class="alm-paging-content">'+t+'</div><div class="alm-paging-loading"></div>'),f.el.appendTo(f.content),f.content.parent().removeClass("loading"),f.AjaxLoadMore.resetBtnText();var a=parseInt(f.content.css("padding-top")),e=parseInt(f.content.css("padding-bottom"));f.content.css("height",f.el.height()+a+e+"px"),y.isFunction(y.fn.almSetNextPageVars)&&y.fn.almSetNextPageVars(f),setTimeout(function(){y.isFunction(y.fn.almFadePageControls)&&y.fn.almFadePageControls(f.btnWrap),y.isFunction(y.fn.almOnWindowResize)&&y.fn.almOnWindowResize(f)},f.speed)},f.fetchingPreviousPost=!1,f.AjaxLoadMore.getPreviousPost=function(){f.fetchingPreviousPost=!0;var t={action:"alm_query_previous_post",id:f.previous_post_id,taxonomy:f.previous_post_taxonomy,excluded_terms:f.previous_post_excluded_terms};y.ajax({type:"GET",dataType:"JSON",url:alm_localize.ajaxurl,data:t,success:function(t){t.has_previous_post?(f.content.attr("data-previous-post-id",t.prev_id),f.previous_post_id=t.prev_id,f.previous_post_permalink=t.prev_permalink,f.previous_post_title=t.prev_title,f.previous_post_slug=t.prev_slug):t.has_previous_post||f.AjaxLoadMore.triggerDone(),y.isFunction(y.fn.almSetPreviousPost)&&y.fn.almSetPreviousPost(f,t.current_id,t.permalink,t.title),f.fetchingPreviousPost=!1},error:function(t,a,e){f.AjaxLoadMore.error(t,a,e),f.fetchingPreviousPost=!1}})},f.AjaxLoadMore.triggerAddons=function(t){y.isFunction(y.fn.almSEO)&&t.seo&&y.fn.almSEO(t,!1),y.isFunction(y.fn.almSetNextPage)&&y.fn.almSetNextPage(t)},f.AjaxLoadMore.triggerDone=function(){f.loading=!1,f.finished=!0,f.paging||f.button.addClass("done"),y.isFunction(y.fn.almDone)&&setTimeout(function(){y.fn.almDone(f)},f.speed+10)},f.AjaxLoadMore.resetBtnText=function(){!1===f.button_loading_label||f.paging||f.button.html(f.button_label)},f.AjaxLoadMore.error=function(t,a,e){f.loading=!1,f.paging||(f.button.removeClass("loading"),f.AjaxLoadMore.resetBtnText()),console.log(e)},f.paging||f.fetchingPreviousPost||(f.button.unbind("click"),f.button.on("click",function(t){t.preventDefault(),"true"===f.pause&&(f.pause=!1,f.pause_override=!1,f.AjaxLoadMore.loadPosts()),f.loading||f.finished||y(this).hasClass("done")||(f.loading=!0,f.page++,f.AjaxLoadMore.loadPosts()),f.filters&&"function"==typeof almFiltersPaged&&almFiltersPaged(f)})),f.paging&&(f.window.unbind("resizeEnd"),f.window.bind("resizeEnd",function(){y.isFunction(y.fn.almOnWindowResize)&&y.fn.almOnWindowResize(f)}),f.window.unbind("resize"),f.window.bind("resize",function(){this.resizeTO&&clearTimeout(this.resizeTO),this.resizeTO=setTimeout(function(){y(this).trigger("resizeEnd")},f.speed)})),f.AjaxLoadMore.isVisible=function(){return f.visible=!1,f.el.is(":visible")&&(f.visible=!0),f.visible},f.scroll&&!f.paging&&(""!==f.scroll_container&&y(f.scroll_container).length&&(f.window=y(f.scroll_container)),f.window.bind("scroll touchstart",function(){if(f.AjaxLoadMore.isVisible()&&!f.fetchingPreviousPost){var t=f.button.offset().top,a=Math.round(t-(f.window.height()-f.scroll_distance)),e=f.window.scrollTop()>=a;""!==f.scroll_container&&(e=f.button.offset().top-(f.window.height()-f.scroll_distance)<f.window.offset().top),!f.loading&&!f.finished&&e&&f.page<f.max_pages-1&&f.proceed&&"true"===f.pause&&"true"===f.pause_override?f.button.trigger("click"):!f.loading&&!f.finished&&e&&f.page<f.max_pages-1&&f.proceed&&"true"!==f.pause&&f.button.trigger("click")}})),f.AjaxLoadMore.destroyed=function(){f.disable_ajax=!0,f.paging||(f.button.delay(f.speed).fadeOut(f.speed),y.isFunction(y.fn.almDestroyed)&&y.fn.almDestroyed(f))},f.AjaxLoadMore.fadeIn=function(t,a){if(0==a)t.style.opacity=1,t.style.height="auto";else{a/=10;var e=0,o=setInterval(function(){.9<e&&(t.style.opacity=1,clearInterval(o)),t.style.opacity=e,e+=.1},a);t.style.height="auto"}},f.AjaxLoadMore.transitionEnd=function(){setTimeout(function(){f.loading=!1,f.container.removeClass("alm-loading"),f.AjaxLoadMore.triggerAddons(f),f.paging||(f.button.delay(f.speed).removeClass("loading"),f.AjaxLoadMore.resetBtnText())},f.speed)},f.AjaxLoadMore.init=function(){("true"===f.preloaded&&1==f.destroy_after&&f.AjaxLoadMore.destroyed(),f.paging||f.previous_post||(f.disable_ajax?(f.finished=!0,f.button.addClass("done")):"true"===f.pause?(f.button.html(f.button_label),f.loading=!1):f.AjaxLoadMore.loadPosts()),f.previous_post&&(f.AjaxLoadMore.getPreviousPost(),f.loading=!1),"true"===f.preloaded&&f.seo&&!f.paging&&setTimeout(function(){y.isFunction(y.fn.almSEO)&&f.start_page<1&&y.fn.almSEO(f,!0)},f.speed),"true"!==f.preloaded||f.paging||setTimeout(function(){f.preloaded_total_posts<=parseInt(f.preloaded_amount)&&f.AjaxLoadMore.triggerDone(),0==f.preloaded_total_posts&&y.isFunction(y.fn.almEmpty)&&y.fn.almEmpty(f)},f.speed),f.nextpage)&&(1<y(".alm-nextpage").length&&y(".alm-nextpage").length==y(".alm-nextpage").eq(0).data("total-pages")&&f.AjaxLoadMore.triggerDone());f.window.bind("load",function(){f.is_masonry_preloaded&&(almMasonry(f.masonry_wrap,f.el,f.masonry_selector,f.masonry_columnwidth,f.masonry_animation,f.masonry_horizontalorder,f.speed,f.masonry_init,!0,!1),f.masonry_init=!1)})},f.AjaxLoadMore.init(),setTimeout(function(){f.proceed=!0},150),y.fn.almUpdateCurrentPage=function(t,a,e){e.page=t,e.nextpage&&!e.paging&&(e.page=e.page-1);var o="";e.paging_init&&"true"===e.preloaded?(o=y(".alm-preloaded .alm-reveal",e.el).html(),y(".alm-preloaded",e.el).remove(),e.preloaded_amount=0,e.AjaxLoadMore.pagingPreloadedInit(o),e.paging_init=!1,e.init=!1):e.paging_init&&e.nextpage?(o=y(".alm-nextpage",e.el).html(),y(".alm-nextpage",e.el).remove(),e.AjaxLoadMore.pagingNextpageInit(o),e.paging_init=!1,e.init=!1):e.AjaxLoadMore.loadPosts()},y.fn.almGetParentContainer=function(){return f.el.closest("#ajax-load-more")},y.fn.almGetObj=function(){return f},y.fn.almTriggerClick=function(){f.button.trigger("click")},y.easing.alm_easeInOutQuad=function(t,a,e,o,n){return(a/=n/2)<1?o/2*a*a+e:-o/2*(--a*(a-2)-1)+e}},y.fn.ajaxloadmore=function(){return this.each(function(t){new y.ajaxloadmore(y(this),t)})};var t=document.querySelectorAll(".ajax-load-more-wrap");t.length&&[].concat(_toConsumableArray(t)).forEach(function(t,a){new y.ajaxloadmore(y(t),a)})}(jQuery);var _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t};!function(t){"function"==typeof define&&define.amd?define(["jquery"],t):"object"===("undefined"==typeof exports?"undefined":_typeof(exports))?module.exports=t(require("jquery")):t(jQuery)}(function(g){var m="almWaitForImages";g.almWaitForImages={hasImageProperties:["backgroundImage","listStyleImage","borderImage","borderCornerImage","cursor"],hasImageAttributes:["srcset"]},g.expr[":"]["has-src"]=function(t){return g(t).is('img[src][src!=""]')},g.expr[":"].uncached=function(t){return!!g(t).is(":has-src")&&!t.complete},g.fn.almWaitForImages=function(){var l,d,e,p=0,c=0,_=g.Deferred();if(g.isPlainObject(arguments[0])?(e=arguments[0].waitForAll,d=arguments[0].each,l=arguments[0].finished):1===arguments.length&&"boolean"===g.type(arguments[0])?e=arguments[0]:(l=arguments[0],d=arguments[1],e=arguments[2]),l=l||g.noop,d=d||g.noop,e=!!e,!g.isFunction(l)||!g.isFunction(d))throw new TypeError("An invalid callback was supplied.");return this.each(function(){var r=g(this),s=[],t=g.almWaitForImages.hasImageProperties||[],a=g.almWaitForImages.hasImageAttributes||[],i=/url\(\s*(['"]?)(.*?)\1\s*\)/g;e?r.find("*").addBack().each(function(){var n=g(this);n.is("img:has-src")&&s.push({src:n.attr("src"),element:n[0]}),g.each(t,function(t,a){var e,o=n.css(a);if(!o)return!0;for(;e=i.exec(o);)s.push({src:e[2],element:n[0]})}),g.each(a,function(t,a){var e,o=n.attr(a);if(!o)return!0;e=o.split(","),g.each(e,function(t,a){a=g.trim(a).split(" ")[0],s.push({src:a,element:n[0]})})})}):r.find("img:has-src").each(function(){s.push({src:this.src,element:this})}),p=s.length,(c=0)===p&&(l.call(r[0]),_.resolveWith(r[0])),g.each(s,function(t,o){var a=new Image,n="load."+m+" error."+m;g(a).one(n,function t(a){var e=[c,p,"load"==a.type];if(c++,d.apply(o.element,e),_.notifyWith(o.element,e),g(this).off(n,t),c==p)return l.call(r[0]),_.resolveWith(r[0]),!1}),a.src=o.src})}),_.promise()}});
core/src/js/ajax-load-more.js CHANGED
@@ -713,7 +713,8 @@
713
  meta = data.meta;
714
  alm.posts = alm.posts + meta.postcount;
715
  total = meta.postcount;
716
- alm.totalposts = meta.totalposts;
 
717
  if(alm.preloaded === 'true'){
718
  alm.totalposts = alm.totalposts - alm.preloaded_amount;
719
  }
@@ -727,6 +728,12 @@
727
 
728
  // First Run
729
  if (alm.init) {
 
 
 
 
 
 
730
 
731
  if(!alm.paging){
732
 
713
  meta = data.meta;
714
  alm.posts = alm.posts + meta.postcount;
715
  total = meta.postcount;
716
+ alm.totalposts = meta.totalposts;
717
+
718
  if(alm.preloaded === 'true'){
719
  alm.totalposts = alm.totalposts - alm.preloaded_amount;
720
  }
728
 
729
  // First Run
730
  if (alm.init) {
731
+
732
+ if(meta){
733
+ if(meta.totalposts){
734
+ alm.el.attr('data-total-posts', meta.totalposts);
735
+ }
736
+ }
737
 
738
  if(!alm.paging){
739
 
core/src/js/modules/masonry.js CHANGED
@@ -86,9 +86,7 @@ let almMasonry = (container, items, selector, columnWidth, animation, horizontal
86
  }
87
 
88
  // Trigger Masonry()
89
- container.masonry({
90
- defaults
91
- });
92
 
93
  // Fade in
94
  almMasonryFadeIn(container[0].parentNode, speed);
86
  }
87
 
88
  // Trigger Masonry()
89
+ container.masonry(defaults);
 
 
90
 
91
  // Fade in
92
  almMasonryFadeIn(container[0].parentNode, speed);
lang/ajax-load-more.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Ajax Load More\n"
5
- "POT-Creation-Date: 2018-06-20 13:09-0400\n"
6
  "PO-Revision-Date: 2018-06-20 13:05-0500\n"
7
  "Last-Translator: Darren Cooney <darren@connekthq.com>\n"
8
  "Language-Team: \n"
@@ -18,400 +18,271 @@ msgstr ""
18
  "X-Poedit-SearchPathExcluded-0: core/src\n"
19
  "X-Poedit-SearchPathExcluded-1: admin/src\n"
20
 
21
- #: admin/admin-functions.php:32 admin/admin.php:443 admin/admin.php:444
22
- #: admin/shortcode-builder/components/cache.php:3 admin/views/settings.php:60
23
- msgid "Cache"
24
- msgstr ""
25
-
26
- #: admin/admin-functions.php:33
27
- msgid "Improve performance with the Ajax Load More caching engine."
28
- msgstr ""
29
-
30
- #: admin/admin-functions.php:34
31
- msgid ""
32
- "The Cache add-on creates static HTML files of Ajax Load More requests then "
33
- "delivers those static files to your visitors."
34
- msgstr ""
35
-
36
- #: admin/admin-functions.php:44 admin/shortcode-builder/components/cta.php:3
37
- msgid "Call to Actions"
38
- msgstr ""
39
-
40
- #: admin/admin-functions.php:45
41
- msgid ""
42
- "Ajax Load More extension for displaying advertisements and call to actions."
43
- msgstr ""
44
-
45
- #: admin/admin-functions.php:46
46
- msgid ""
47
- "The Call to Actions add-on will provide the ability to inject a custom CTA "
48
- "template within each Ajax Load More loop."
49
- msgstr ""
50
-
51
- #: admin/admin-functions.php:56
52
- #: admin/shortcode-builder/components/comments.php:3
53
- msgid "Comments"
54
- msgstr ""
55
-
56
- #: admin/admin-functions.php:57
57
- msgid "Load blog comments on demand with Ajax Load More."
58
- msgstr ""
59
-
60
- #: admin/admin-functions.php:58
61
- msgid ""
62
- "The Comments add-on will display your blog comments with Ajax Load More's "
63
- "infinite scroll functionality."
64
- msgstr ""
65
-
66
- #: admin/admin-functions.php:68
67
- msgid "Custom Repeaters"
68
- msgstr ""
69
-
70
- #: admin/admin-functions.php:69
71
- msgid "Extend Ajax Load More with unlimited repeater templates."
72
- msgstr ""
73
-
74
- #: admin/admin-functions.php:70
75
  msgid ""
76
- "Create, delete and modify repeater templates as you need them with "
77
- "absolutely zero restrictions."
 
 
 
78
  msgstr ""
79
 
80
- #: admin/admin-functions.php:80 admin/admin.php:462 admin/admin.php:463
81
- #: admin/shortcode-builder/components/filters.php:3 admin/views/settings.php:62
82
- msgid "Filters"
83
- msgstr ""
84
-
85
- #: admin/admin-functions.php:81
86
- msgid "Create custom Ajax Load More filters in seconds."
87
- msgstr ""
88
-
89
- #: admin/admin-functions.php:82
90
- msgid ""
91
- "The Filters add-on provides front-end and admin functionality for building "
92
- "and managing Ajax filters."
93
- msgstr ""
94
-
95
- #: admin/admin-functions.php:92 admin/includes/components/layout-list.php:3
96
- #: admin/views/settings.php:64
97
- msgid "Layouts"
98
- msgstr ""
99
-
100
- #: admin/admin-functions.php:93
101
- msgid "Predefined layouts for repeater templates."
102
- msgstr ""
103
-
104
- #: admin/admin-functions.php:94
105
- msgid ""
106
- "The Layouts add-on provides a collection of unique, well designed and fully "
107
- "responsive templates."
108
- msgstr ""
109
-
110
- #: admin/admin-functions.php:104
111
- #: admin/shortcode-builder/components/nextpage.php:3
112
- msgid "Next Page"
113
- msgstr ""
114
-
115
- #: admin/admin-functions.php:105
116
- msgid "Load and display multipage WordPress content."
117
- msgstr ""
118
-
119
- #: admin/admin-functions.php:106
120
- msgid ""
121
- "The Next Page add-on will provide functionality for infinite scrolling "
122
- "paginated posts and pages."
123
- msgstr ""
124
-
125
- #: admin/admin-functions.php:116
126
- #: admin/shortcode-builder/components/paging.php:3 admin/views/settings.php:66
127
- msgid "Paging"
128
- msgstr ""
129
-
130
- #: admin/admin-functions.php:117
131
- msgid "Extend Ajax Load More with a numbered navigation."
132
- msgstr ""
133
-
134
- #: admin/admin-functions.php:118
135
- msgid ""
136
- "The Paging add-on will transform the default infinite scroll functionality "
137
- "into a robust ajax powered navigation system."
138
- msgstr ""
139
-
140
- #: admin/admin-functions.php:128
141
- #: admin/shortcode-builder/components/preloaded.php:3
142
- msgid "Preloaded"
143
- msgstr ""
144
-
145
- #: admin/admin-functions.php:129
146
- msgid "Load an initial set of posts before making Ajax requests to the server."
147
- msgstr ""
148
-
149
- #: admin/admin-functions.php:130
150
- msgid ""
151
- "The Preloaded add-on will display content quicker and allow caching of the "
152
- "initial query which can reduce stress on your server."
153
- msgstr ""
154
-
155
- #: admin/admin-functions.php:140
156
- #: admin/shortcode-builder/components/previous-post.php:3
157
- #: admin/views/settings.php:68
158
- msgid "Previous Post"
159
- msgstr ""
160
-
161
- #: admin/admin-functions.php:141
162
- msgid "An add-on to enable infinite scrolling of single posts."
163
- msgstr ""
164
-
165
- #: admin/admin-functions.php:142
166
- msgid ""
167
- "The Previous Post add-on will load single posts as you scroll and update the "
168
- "browser URL to the current post."
169
- msgstr ""
170
-
171
- #: admin/admin-functions.php:152
172
- msgid "Search Engine Optimization"
173
- msgstr ""
174
-
175
- #: admin/admin-functions.php:153
176
- msgid "Generate unique paging URLs with every Ajax Load More query."
177
- msgstr ""
178
-
179
- #: admin/admin-functions.php:154
180
- msgid ""
181
- "The SEO add-on will optimize your ajax loaded content for search engines by "
182
- "generating unique URLs with every query."
183
- msgstr ""
184
-
185
- #: admin/admin-functions.php:164 admin/views/repeater-templates.php:31
186
- #: admin/views/settings.php:74
187
- msgid "Theme Repeaters"
188
- msgstr ""
189
-
190
- #: admin/admin-functions.php:165
191
- msgid "Manage repeater templates within your current theme directory."
192
- msgstr ""
193
-
194
- #: admin/admin-functions.php:166
195
- msgid ""
196
- "The Theme Repeater add-on will allow you load, edit and maintain templates "
197
- "from your current theme directory."
198
- msgstr ""
199
-
200
- #: admin/admin-functions.php:176 admin/shortcode-builder/components/users.php:3
201
- msgid "Users"
202
- msgstr ""
203
-
204
- #: admin/admin-functions.php:177
205
- msgid "Enable infinite scrolling of WordPress users."
206
- msgstr ""
207
-
208
- #: admin/admin-functions.php:178
209
- msgid ""
210
- "The Users add-on will allow lazy loading of users by role using a "
211
- "WP_User_Query."
212
- msgstr ""
213
-
214
- #: admin/admin.php:47
215
  msgid ""
216
  "You have invalid <a href=\"admin.php?page=ajax-load-more\"><b>Ajax Load "
217
  "More</b></a> license keys - please visit the <a href=\"admin.php?page=ajax-"
218
- "load-more-licenses\">Licenses</a> section and input your license keys."
219
  msgstr ""
220
 
221
- #: admin/admin.php:125 admin/admin.php:185 admin/admin.php:807
222
- #: admin/admin.php:852 admin/admin.php:902
223
  msgid "You don't belong here."
224
  msgstr ""
225
 
226
- #: admin/admin.php:214
227
  msgid "Ajax Load More"
228
  msgstr ""
229
 
230
- #: admin/admin.php:215 admin/editor/editor-build.php:69
231
- #: admin/views/licenses.php:64
232
  msgid "Active"
233
  msgstr ""
234
 
235
- #: admin/admin.php:216 admin/editor/editor-build.php:70
236
- #: admin/views/licenses.php:68
237
  msgid "Inactive"
238
  msgstr ""
239
 
240
- #: admin/admin.php:217 admin/editor/editor-build.php:71
241
  msgid "Applying layout"
242
  msgstr ""
243
 
244
- #: admin/admin.php:218 admin/editor/editor-build.php:72
245
- #: admin/views/repeater-templates.php:376
246
  msgid "Template Updated"
247
  msgstr ""
248
 
249
- #: admin/admin.php:220 admin/editor/editor-build.php:74
250
  msgid "Select Author(s)"
251
  msgstr ""
252
 
253
- #: admin/admin.php:221 admin/editor/editor-build.php:75
254
  msgid "Select Categories"
255
  msgstr ""
256
 
257
- #: admin/admin.php:222 admin/editor/editor-build.php:76
258
  msgid "Select Tags"
259
  msgstr ""
260
 
261
- #: admin/admin.php:223 admin/editor/editor-build.php:41
262
  #: admin/editor/editor-build.php:77
263
  msgid "Jump to Option"
264
  msgstr ""
265
 
266
- #: admin/admin.php:224 admin/editor/editor-build.php:78
267
  msgid "Jump to Template"
268
  msgstr ""
269
 
270
- #: admin/admin.php:225
271
  msgid "Are you sure you want to install this Ajax Load More extension?"
272
  msgstr ""
273
 
274
- #: admin/admin.php:226
275
  #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:51
276
  #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:379
277
  msgid "Install Now"
278
  msgstr ""
279
 
280
- #: admin/admin.php:227
281
  #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:90
282
  #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:380
283
  msgid "Activate"
284
  msgstr ""
285
 
286
- #: admin/admin.php:228
287
  msgid "Saving Settings"
288
  msgstr ""
289
 
290
- #: admin/admin.php:229
291
  msgid "Settings Saved Successfully"
292
  msgstr ""
293
 
294
- #: admin/admin.php:230
295
  msgid "Error Saving Settings"
296
  msgstr ""
297
 
298
- #: admin/admin.php:330
299
  msgid ""
300
  "[Ajax Load More] Error opening default repeater template - Please check your "
301
  "file path and ensure your server is configured to allow Ajax Load More to "
302
  "read and write files within the /ajax-load-more/core/repeater directory"
303
  msgstr ""
304
 
305
- #: admin/admin.php:334
306
  msgid ""
307
  "[Ajax Load More] Error updating default repeater template - Please check "
308
  "your file path and ensure your server is configured to allow Ajax Load More "
309
  "to read and write files within the /ajax-load-more/core/repeater directory."
310
  msgstr ""
311
 
312
- #: admin/admin.php:763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  msgid "[Ajax Load More] Unable to open repeater template - "
314
  msgstr ""
315
 
316
- #: admin/admin.php:767
317
  msgid "[Ajax Load More] Error saving repeater template - "
318
  msgstr ""
319
 
320
- #: admin/admin.php:799
321
  msgid "Template Saved Successfully"
322
  msgstr ""
323
 
324
- #: admin/admin.php:801
325
  msgid "Error Writing File"
326
  msgstr ""
327
 
328
- #: admin/admin.php:801 admin/views/repeater-templates.php:317
329
  msgid "Something went wrong and the data could not be saved."
330
  msgstr ""
331
 
332
- #: admin/admin.php:1006 admin/shortcode-builder/shortcode-builder.php:113
 
 
 
 
 
 
333
  msgid "Container Type"
334
  msgstr ""
335
 
336
- #: admin/admin.php:1014 admin/shortcode-builder/shortcode-builder.php:144
337
  msgid "Container Classes"
338
  msgstr ""
339
 
340
- #: admin/admin.php:1022
341
  msgid "Disable CSS"
342
  msgstr ""
343
 
344
- #: admin/admin.php:1030
345
  msgid "Button/Loading Style"
346
  msgstr ""
347
 
348
- #: admin/admin.php:1038
349
  msgid "Button Classes"
350
  msgstr ""
351
 
352
- #: admin/admin.php:1046
353
  msgid "Load CSS Inline"
354
  msgstr ""
355
 
356
- #: admin/admin.php:1054
357
  msgid "Top of Page"
358
  msgstr ""
359
 
360
- #: admin/admin.php:1062
361
  msgid "Dynamic Content"
362
  msgstr ""
363
 
364
- #: admin/admin.php:1070
365
  msgid "Editor Button"
366
  msgstr ""
367
 
368
- #: admin/admin.php:1078
369
  msgid "Error Notices"
370
  msgstr ""
371
 
372
- #: admin/admin.php:1155
373
  msgid ""
374
  "Customize the user experience of Ajax Load More by updating the fields below."
375
  msgstr ""
376
 
377
- #: admin/admin.php:1168
378
  msgid "The following settings affect the WordPress admin area only."
379
  msgstr ""
380
 
381
- #: admin/admin.php:1199
382
  msgid "I want to use my own CSS styles."
383
  msgstr ""
384
 
385
- #: admin/admin.php:1199
386
  msgid "View Ajax Load More CSS"
387
  msgstr ""
388
 
389
- #: admin/admin.php:1219
390
  msgid "Hide shortcode button in WYSIWYG editor."
391
  msgstr ""
392
 
393
- #: admin/admin.php:1240
394
  msgid ""
395
  "Display error messaging regarding repeater template updates in the browser "
396
  "console."
397
  msgstr ""
398
 
399
- #: admin/admin.php:1261
400
  msgid ""
401
  "Disable dynamic population of categories, tags and authors in the Shortcode "
402
  "Builder.<span style=\"display:block\">Recommended if you have a large number "
403
  "of categories, tags and/or authors."
404
  msgstr ""
405
 
406
- #: admin/admin.php:1282 admin/admin.php:1285
407
  msgid "Ajax Posts Here"
408
  msgstr ""
409
 
410
- #: admin/admin.php:1287
411
  msgid "You can modify the container type when building a shortcode."
412
  msgstr ""
413
 
414
- #: admin/admin.php:1304
415
  msgid ""
416
  "Add custom classes to the <i>.alm-listing</i> container - classes are "
417
  "applied globally and will appear with every instance of Ajax Load More. "
@@ -419,45 +290,45 @@ msgid ""
419
  "shortcode.</span>"
420
  msgstr ""
421
 
422
- #: admin/admin.php:1366
423
  msgid ""
424
  "Select an Ajax loading style - you can choose between a <strong>Button</"
425
  "strong> or <strong>Infinite Scroll</strong>"
426
  msgstr ""
427
 
428
- #: admin/admin.php:1371
429
  msgid "Button"
430
  msgstr ""
431
 
432
- #: admin/admin.php:1379
433
  msgid "Infinite Scroll (No Button)"
434
  msgstr ""
435
 
436
- #: admin/admin.php:1392
437
  msgid "Preview"
438
  msgstr ""
439
 
440
- #: admin/admin.php:1392 admin/shortcode-builder/shortcode-builder.php:168
441
  #: core/classes/class.alm-shortcode.php:152
442
  msgid "Older Posts"
443
  msgstr ""
444
 
445
- #: admin/admin.php:1413
446
  msgid "Improve site performance by loading Ajax Load More CSS inline"
447
  msgstr ""
448
 
449
- #: admin/admin.php:1433
450
  msgid "Add classes to your <strong>Load More</strong> button"
451
  msgstr ""
452
 
453
- #: admin/admin.php:1478
454
  msgid ""
455
  "On initial page load, move the user's browser window to the top of the "
456
  "screen.<span style=\"display:block\">This <u>may</u> help prevent the "
457
  "loading of unnecessary posts.</span>"
458
  msgstr ""
459
 
460
- #: admin/admin.php:1499
461
  msgid ""
462
  "Enable <a href=\"https://codex.wordpress.org/WordPress_Nonces\" target="
463
  "\"_blank\">WP nonce</a> verification to help protect URLs against certain "
@@ -483,15 +354,15 @@ msgstr ""
483
 
484
  #: admin/includes/components/example-list.php:2
485
  #: admin/shortcode-builder/shortcode-builder.php:3
486
- #: admin/views/repeater-templates.php:104
487
- #: admin/views/repeater-templates.php:134
488
  msgid "Collapse All"
489
  msgstr ""
490
 
491
  #: admin/includes/components/example-list.php:2
492
  #: admin/shortcode-builder/shortcode-builder.php:4
493
- #: admin/views/repeater-templates.php:105
494
- #: admin/views/repeater-templates.php:135
495
  msgid "Expand All"
496
  msgstr ""
497
 
@@ -543,34 +414,43 @@ msgstr ""
543
  msgid "Shortcode for use on tag archive pages."
544
  msgstr ""
545
 
546
- #: admin/includes/components/layout-list.php:16
 
 
 
 
547
  msgid "Default Layout"
548
  msgstr ""
549
 
550
- #: admin/includes/components/layout-list.php:25
551
  msgid ""
552
- "Unlock additional layout templates with the <strong>Layouts add-on</strong>"
553
  msgstr ""
554
 
555
- #: admin/includes/components/repeater-options.php:2
556
- #: admin/shortcode-builder/shortcode-builder.php:91
557
  msgid "Options"
558
  msgstr ""
559
 
560
- #: admin/includes/components/repeater-options.php:6
561
  msgid "Update Template from Database"
562
  msgstr ""
563
 
564
- #: admin/includes/components/repeater-options.php:6
565
  msgid "Update from Database"
566
  msgstr ""
567
 
568
- #: admin/includes/components/repeater-options.php:7
 
 
 
 
 
569
  msgid "Copy Template Data"
570
  msgstr ""
571
 
572
  #: admin/includes/cta/about.php:2
573
- msgid "Other Plugins"
574
  msgstr ""
575
 
576
  #: admin/includes/cta/add-ons.php:2
@@ -593,7 +473,7 @@ msgstr ""
593
  msgid "Did You Know?"
594
  msgstr ""
595
 
596
- #: admin/includes/cta/extend.php:1
597
  msgid ""
598
  "Unlock additional templates with the <a href=\"https://connekthq.com/plugins/"
599
  "ajax-load-more/add-ons/custom-repeaters/?utm_source=WP"
@@ -601,7 +481,7 @@ msgid ""
601
  "\" target=\"_parent\">Custom Repeaters add-on</a>"
602
  msgstr ""
603
 
604
- #: admin/includes/cta/extend.php:1
605
  msgid "More Info"
606
  msgstr ""
607
 
@@ -713,12 +593,12 @@ msgstr ""
713
  #: admin/shortcode-builder/components/rest-api.php:108
714
  #: admin/shortcode-builder/components/seo.php:14
715
  #: admin/shortcode-builder/components/users.php:13
716
- #: admin/shortcode-builder/shortcode-builder.php:202
717
- #: admin/shortcode-builder/shortcode-builder.php:262
718
- #: admin/shortcode-builder/shortcode-builder.php:393
719
- #: admin/shortcode-builder/shortcode-builder.php:460
720
- #: admin/shortcode-builder/shortcode-builder.php:488
721
- #: admin/shortcode-builder/shortcode-builder.php:536
722
  msgid "True"
723
  msgstr ""
724
 
@@ -738,12 +618,12 @@ msgstr ""
738
  #: admin/shortcode-builder/components/rest-api.php:112
739
  #: admin/shortcode-builder/components/seo.php:18
740
  #: admin/shortcode-builder/components/users.php:17
741
- #: admin/shortcode-builder/shortcode-builder.php:206
742
- #: admin/shortcode-builder/shortcode-builder.php:266
743
- #: admin/shortcode-builder/shortcode-builder.php:397
744
- #: admin/shortcode-builder/shortcode-builder.php:464
745
- #: admin/shortcode-builder/shortcode-builder.php:492
746
- #: admin/shortcode-builder/shortcode-builder.php:540
747
  msgid "False"
748
  msgstr ""
749
 
@@ -821,6 +701,10 @@ msgstr ""
821
  msgid "Generate Cache ID"
822
  msgstr ""
823
 
 
 
 
 
824
  #: admin/shortcode-builder/components/comments.php:6
825
  msgid "Enable Ajax Load More to display blog comments."
826
  msgstr ""
@@ -888,8 +772,8 @@ msgid "Select a repeater template that will display comment data."
888
  msgstr ""
889
 
890
  #: admin/shortcode-builder/components/comments.php:106
891
- #: admin/shortcode-builder/shortcode-builder.php:288
892
- #: admin/shortcode-builder/shortcode-builder.php:373
893
  msgid "None"
894
  msgstr ""
895
 
@@ -934,6 +818,10 @@ msgid ""
934
  "\"_blank\">View documentation</a>"
935
  msgstr ""
936
 
 
 
 
 
937
  #: admin/shortcode-builder/components/cta.php:7
938
  msgid "Insert call to action block."
939
  msgstr ""
@@ -966,7 +854,6 @@ msgid "Post #"
966
  msgstr ""
967
 
968
  #: admin/shortcode-builder/components/cta.php:55
969
- #: admin/shortcode-builder/shortcode-builder.php:51
970
  msgid "Template"
971
  msgstr ""
972
 
@@ -1038,6 +925,10 @@ msgid ""
1038
  "Enable debugging of the Ajax Load More filter object in the browser console"
1039
  msgstr ""
1040
 
 
 
 
 
1041
  #: admin/shortcode-builder/components/nextpage.php:6
1042
  msgid "Enable the infinite scrolling of multipage WordPress content using the"
1043
  msgstr ""
@@ -1115,6 +1006,11 @@ msgid ""
1115
  "\"_blank\">View documentation</a>"
1116
  msgstr ""
1117
 
 
 
 
 
 
1118
  #: admin/shortcode-builder/components/paging.php:5
1119
  msgid "Replace infinite scrolling with a paged ajax navigation system."
1120
  msgstr ""
@@ -1144,6 +1040,10 @@ msgid ""
1144
  "The maximum amount of page menu items to show at a time. <br/.>0 = no maximum"
1145
  msgstr ""
1146
 
 
 
 
 
1147
  #: admin/shortcode-builder/components/preloaded.php:6
1148
  msgid "Preload posts prior to making Ajax requests."
1149
  msgstr ""
@@ -1156,12 +1056,17 @@ msgstr ""
1156
  msgid "Enter the number of posts to preload."
1157
  msgstr ""
1158
 
 
 
 
 
 
1159
  #: admin/shortcode-builder/components/previous-post.php:6
1160
  msgid "Enable the infinite scrolling of single posts."
1161
  msgstr ""
1162
 
1163
  #: admin/shortcode-builder/components/previous-post.php:38
1164
- #: admin/shortcode-builder/shortcode-builder.php:809
1165
  msgid "Taxonomy"
1166
  msgstr ""
1167
 
@@ -1184,12 +1089,12 @@ msgid "Select Taxonomy"
1184
  msgstr ""
1185
 
1186
  #: admin/shortcode-builder/components/previous-post.php:53
1187
- #: admin/shortcode-builder/shortcode-builder.php:690
1188
  msgid "Category"
1189
  msgstr ""
1190
 
1191
  #: admin/shortcode-builder/components/previous-post.php:54
1192
- #: admin/shortcode-builder/shortcode-builder.php:750
1193
  msgid "Tag"
1194
  msgstr ""
1195
 
@@ -1215,7 +1120,7 @@ msgid ""
1215
  msgstr ""
1216
 
1217
  #: admin/shortcode-builder/components/rest-api.php:18
1218
- #: admin/views/settings.php:70
1219
  msgid "REST API"
1220
  msgstr ""
1221
 
@@ -1276,10 +1181,10 @@ msgid ""
1276
  msgstr ""
1277
 
1278
  #: admin/shortcode-builder/components/rest-api.php:88
1279
- #: admin/shortcode-builder/shortcode-builder.php:479
1280
- #: admin/shortcode-builder/shortcode-builder.php:695
1281
- #: admin/shortcode-builder/shortcode-builder.php:754
1282
- #: admin/shortcode-builder/shortcode-builder.php:954
1283
  msgid "View Example"
1284
  msgstr ""
1285
 
@@ -1305,6 +1210,10 @@ msgid ""
1305
  "Enable address bar URL rewrites as users page through ajax loaded content."
1306
  msgstr ""
1307
 
 
 
 
 
1308
  #: admin/shortcode-builder/components/users.php:6
1309
  msgid "Infinite scroll WordPress users"
1310
  msgstr ""
@@ -1326,8 +1235,8 @@ msgid "All Roles"
1326
  msgstr ""
1327
 
1328
  #: admin/shortcode-builder/components/users.php:55
1329
- #: admin/shortcode-builder/shortcode-builder.php:753
1330
- #: admin/shortcode-builder/shortcode-builder.php:942
1331
  msgid "Include"
1332
  msgstr ""
1333
 
@@ -1336,9 +1245,9 @@ msgid "A comma separated list of users to be included by ID"
1336
  msgstr ""
1337
 
1338
  #: admin/shortcode-builder/components/users.php:69
1339
- #: admin/shortcode-builder/shortcode-builder.php:717
1340
- #: admin/shortcode-builder/shortcode-builder.php:775
1341
- #: admin/shortcode-builder/shortcode-builder.php:953
1342
  msgid "Exclude"
1343
  msgstr ""
1344
 
@@ -1363,12 +1272,12 @@ msgid "Sort users by Order and Orderby parameters"
1363
  msgstr ""
1364
 
1365
  #: admin/shortcode-builder/components/users.php:100
1366
- #: admin/shortcode-builder/shortcode-builder.php:994
1367
  msgid "Order"
1368
  msgstr ""
1369
 
1370
  #: admin/shortcode-builder/components/users.php:107
1371
- #: admin/shortcode-builder/shortcode-builder.php:1001
1372
  msgid "Order By"
1373
  msgstr ""
1374
 
@@ -1421,7 +1330,7 @@ msgid "Taxonomy Operator:"
1421
  msgstr ""
1422
 
1423
  #: admin/shortcode-builder/includes/tax-query-options.php:36
1424
- #: admin/shortcode-builder/shortcode-builder.php:869
1425
  msgid "Relation:"
1426
  msgstr ""
1427
 
@@ -1438,565 +1347,565 @@ msgstr ""
1438
  msgid "Display Settings"
1439
  msgstr ""
1440
 
1441
- #: admin/shortcode-builder/shortcode-builder.php:55
1442
- msgid "Repeater Template"
1443
- msgstr ""
1444
-
1445
- #: admin/shortcode-builder/shortcode-builder.php:57
1446
- msgid ""
1447
- "Select which <a href=\"admin.php?page=ajax-load-more-repeaters\" target="
1448
- "\"_parent\">repeater template</a> you would like to use."
1449
- msgstr ""
1450
-
1451
- #: admin/shortcode-builder/shortcode-builder.php:96
1452
  msgid "ID"
1453
  msgstr ""
1454
 
1455
- #: admin/shortcode-builder/shortcode-builder.php:96
1456
  msgid ""
1457
  "Adding a unique ID will allow you target this specific Ajax Load More "
1458
  "instance with the alm_query_args_id() filter"
1459
  msgstr ""
1460
 
1461
- #: admin/shortcode-builder/shortcode-builder.php:97
1462
  msgid "Set a unique ID for this Ajax Load More instance."
1463
  msgstr ""
1464
 
1465
- #: admin/shortcode-builder/shortcode-builder.php:104
1466
  msgid "Generate Unique ID"
1467
  msgstr ""
1468
 
1469
- #: admin/shortcode-builder/shortcode-builder.php:113
1470
  msgid ""
1471
  "You can define a global container type on the Ajax Load More settings screen"
1472
  msgstr ""
1473
 
1474
- #: admin/shortcode-builder/shortcode-builder.php:114
1475
  msgid ""
1476
  "Override the global Container Type set on the <a href=\"admin.php?page=ajax-"
1477
  "load-more\">ALM Settings page</a>."
1478
  msgstr ""
1479
 
1480
- #: admin/shortcode-builder/shortcode-builder.php:144
1481
  msgid ""
1482
  "You can define global container classes on the Ajax Load More settings screen"
1483
  msgstr ""
1484
 
1485
- #: admin/shortcode-builder/shortcode-builder.php:145
1486
  msgid ""
1487
  "Add custom CSS classes to the <span>.alm-listing</span> container. <br/><br/"
1488
  "> e.g. portfolio-listing large-12 etc"
1489
  msgstr ""
1490
 
1491
- #: admin/shortcode-builder/shortcode-builder.php:158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1492
  msgid "Button Labels"
1493
  msgstr ""
1494
 
1495
- #: admin/shortcode-builder/shortcode-builder.php:163
1496
  msgid "Label"
1497
  msgstr ""
1498
 
1499
- #: admin/shortcode-builder/shortcode-builder.php:164
1500
  msgid "Customize the text of the <em>Load More</em> button."
1501
  msgstr ""
1502
 
1503
- #: admin/shortcode-builder/shortcode-builder.php:176
1504
  msgid "Loading Label"
1505
  msgstr ""
1506
 
1507
- #: admin/shortcode-builder/shortcode-builder.php:176
1508
  msgid "Leave field empty to not update text while loading content"
1509
  msgstr ""
1510
 
1511
- #: admin/shortcode-builder/shortcode-builder.php:177
1512
  msgid ""
1513
  "Update the text of the <em>Load More</em> button while content is loading."
1514
  msgstr ""
1515
 
1516
- #: admin/shortcode-builder/shortcode-builder.php:181
1517
  msgid "Loading Posts..."
1518
  msgstr ""
1519
 
1520
- #: admin/shortcode-builder/shortcode-builder.php:191
1521
  msgid "Scrolling"
1522
  msgstr ""
1523
 
1524
- #: admin/shortcode-builder/shortcode-builder.php:194
1525
  msgid "Enable Scrolling"
1526
  msgstr ""
1527
 
1528
- #: admin/shortcode-builder/shortcode-builder.php:195
1529
  msgid "Load more posts as the user scrolls the page."
1530
  msgstr ""
1531
 
1532
- #: admin/shortcode-builder/shortcode-builder.php:216
1533
  msgid "Scroll Distance"
1534
  msgstr ""
1535
 
1536
- #: admin/shortcode-builder/shortcode-builder.php:216
1537
  msgid ""
1538
  "Distance is based on the position of the loading button from the bottom of "
1539
  "the screen"
1540
  msgstr ""
1541
 
1542
- #: admin/shortcode-builder/shortcode-builder.php:217
1543
  msgid ""
1544
  "The distance from the bottom of the screen to trigger loading of posts. "
1545
  "(Default = 150)"
1546
  msgstr ""
1547
 
1548
- #: admin/shortcode-builder/shortcode-builder.php:229
1549
  msgid "Scroll Container"
1550
  msgstr ""
1551
 
1552
- #: admin/shortcode-builder/shortcode-builder.php:229
1553
  msgid "Confine Ajax Load More scrolling to a parent container"
1554
  msgstr ""
1555
 
1556
- #: admin/shortcode-builder/shortcode-builder.php:230
1557
  msgid "Enter the ID or classname of the parent container"
1558
  msgstr ""
1559
 
1560
- #: admin/shortcode-builder/shortcode-builder.php:242
1561
  msgid "Maximum Pages"
1562
  msgstr ""
1563
 
1564
- #: admin/shortcode-builder/shortcode-builder.php:242
1565
  msgid "If using an Infinite Scroll button style you should set this to 0"
1566
  msgstr ""
1567
 
1568
- #: admin/shortcode-builder/shortcode-builder.php:243
1569
  msgid "Maximum number of pages to load while scrolling. (0 = unlimited)"
1570
  msgstr ""
1571
 
1572
- #: admin/shortcode-builder/shortcode-builder.php:255
1573
  msgid "Pause Override"
1574
  msgstr ""
1575
 
1576
- #: admin/shortcode-builder/shortcode-builder.php:256
1577
  msgid ""
1578
  "Allow scrolling to override the Pause parameter and trigger the loading of "
1579
  "posts on scroll."
1580
  msgstr ""
1581
 
1582
- #: admin/shortcode-builder/shortcode-builder.php:277
1583
  msgid "Transition"
1584
  msgstr ""
1585
 
1586
- #: admin/shortcode-builder/shortcode-builder.php:280
1587
  msgid "Type"
1588
  msgstr ""
1589
 
1590
- #: admin/shortcode-builder/shortcode-builder.php:281
1591
  msgid "Select a loading transition style."
1592
  msgstr ""
1593
 
1594
- #: admin/shortcode-builder/shortcode-builder.php:286
1595
  msgid "Fade In"
1596
  msgstr ""
1597
 
1598
- #: admin/shortcode-builder/shortcode-builder.php:287
1599
  msgid "Masonry"
1600
  msgstr ""
1601
 
1602
- #: admin/shortcode-builder/shortcode-builder.php:300
1603
  msgid "Masonry Options"
1604
  msgstr ""
1605
 
1606
- #: admin/shortcode-builder/shortcode-builder.php:300
1607
  msgid "Ajax Load More does not support all available Masonry options"
1608
  msgstr ""
1609
 
1610
- #: admin/shortcode-builder/shortcode-builder.php:301
1611
  msgid ""
1612
  "The following Masonry <a href=\"https://masonry.desandro.com/options.html\" "
1613
  "target=\"_blank\">options</a> are supported by Ajax Load More"
1614
  msgstr ""
1615
 
1616
- #: admin/shortcode-builder/shortcode-builder.php:306
1617
  msgid "Item Selector"
1618
  msgstr ""
1619
 
1620
- #: admin/shortcode-builder/shortcode-builder.php:306
1621
  msgid ""
1622
  "Item Selector is required for Masonry to target each element loaded with Ajax"
1623
  msgstr ""
1624
 
1625
- #: admin/shortcode-builder/shortcode-builder.php:307
1626
  msgid "Enter the target classname of each masonry item"
1627
  msgstr ""
1628
 
1629
- #: admin/shortcode-builder/shortcode-builder.php:321
1630
  msgid "Column Width"
1631
  msgstr ""
1632
 
1633
- #: admin/shortcode-builder/shortcode-builder.php:321
1634
  msgid ""
1635
  "If columnWidth is not set, Masonry will use the outer width of the first "
1636
  "Item Selector"
1637
  msgstr ""
1638
 
1639
- #: admin/shortcode-builder/shortcode-builder.php:322
1640
  msgid ""
1641
  "Enter the <a href=\"https://masonry.desandro.com/options.html#columnwidth\" "
1642
  "target=\"_blank\">columnWidth</a> of the masonry items"
1643
  msgstr ""
1644
 
1645
- #: admin/shortcode-builder/shortcode-builder.php:336
1646
  msgid "Animation Type"
1647
  msgstr ""
1648
 
1649
- #: admin/shortcode-builder/shortcode-builder.php:336
1650
  msgid "All Masonry animations include a fade-in effect as items are loaded"
1651
  msgstr ""
1652
 
1653
- #: admin/shortcode-builder/shortcode-builder.php:337
1654
  msgid "Select a loading transition for Masonry items"
1655
  msgstr ""
1656
 
1657
- #: admin/shortcode-builder/shortcode-builder.php:345
1658
  msgid "Default (Zoom)"
1659
  msgstr ""
1660
 
1661
- #: admin/shortcode-builder/shortcode-builder.php:346
1662
  msgid "Items scale up from 50% to 100% size on load"
1663
  msgstr ""
1664
 
1665
- #: admin/shortcode-builder/shortcode-builder.php:352
1666
  msgid "Zoom Out"
1667
  msgstr ""
1668
 
1669
- #: admin/shortcode-builder/shortcode-builder.php:353
1670
  msgid "Items scale down from 125% to 100% size on load"
1671
  msgstr ""
1672
 
1673
- #: admin/shortcode-builder/shortcode-builder.php:359
1674
  msgid "Slide Up"
1675
  msgstr ""
1676
 
1677
- #: admin/shortcode-builder/shortcode-builder.php:360
1678
  msgid "Items animate up as they are loaded into view."
1679
  msgstr ""
1680
 
1681
- #: admin/shortcode-builder/shortcode-builder.php:366
1682
  msgid "Slide Down"
1683
  msgstr ""
1684
 
1685
- #: admin/shortcode-builder/shortcode-builder.php:367
1686
  msgid "Items animate down when loaded into view."
1687
  msgstr ""
1688
 
1689
- #: admin/shortcode-builder/shortcode-builder.php:384
1690
  msgid "Horizontal Order"
1691
  msgstr ""
1692
 
1693
- #: admin/shortcode-builder/shortcode-builder.php:385
1694
  msgid "Lays out items to maintain left-to-right order"
1695
  msgstr ""
1696
 
1697
- #: admin/shortcode-builder/shortcode-builder.php:412
1698
  msgid "Transition Container"
1699
  msgstr ""
1700
 
1701
- #: admin/shortcode-builder/shortcode-builder.php:412
1702
  msgid ""
1703
  "Removing the transition container may have undesired results and is not "
1704
  "recommended"
1705
  msgstr ""
1706
 
1707
- #: admin/shortcode-builder/shortcode-builder.php:413
1708
  msgid ""
1709
  "Remove the <span>.alm-reveal</span> loading container from Ajax Load More"
1710
  msgstr ""
1711
 
1712
- #: admin/shortcode-builder/shortcode-builder.php:420
1713
  msgid "Remove Container"
1714
  msgstr ""
1715
 
1716
- #: admin/shortcode-builder/shortcode-builder.php:431
1717
  msgid "Transition Container Classes"
1718
  msgstr ""
1719
 
1720
- #: admin/shortcode-builder/shortcode-builder.php:431
1721
  msgid ""
1722
  "This setting is not available with the Previous Post or Next Page add-ons"
1723
  msgstr ""
1724
 
1725
- #: admin/shortcode-builder/shortcode-builder.php:432
1726
  msgid "Add custom classes to the <span>.alm-reveal</span> loading container"
1727
  msgstr ""
1728
 
1729
- #: admin/shortcode-builder/shortcode-builder.php:450
1730
  msgid "Pause"
1731
  msgstr ""
1732
 
1733
- #: admin/shortcode-builder/shortcode-builder.php:453
1734
  msgid ""
1735
  "Do <u>NOT</u> load any posts until user clicks the <em>Load More</em> button."
1736
  msgstr ""
1737
 
1738
- #: admin/shortcode-builder/shortcode-builder.php:475
1739
  msgid "Progress Bar"
1740
  msgstr ""
1741
 
1742
- #: admin/shortcode-builder/shortcode-builder.php:478
1743
  msgid ""
1744
  "Display progress bar indicator at the top of the window while loading Ajax "
1745
  "content"
1746
  msgstr ""
1747
 
1748
- #: admin/shortcode-builder/shortcode-builder.php:507
1749
  msgid "Color"
1750
  msgstr ""
1751
 
1752
- #: admin/shortcode-builder/shortcode-builder.php:508
1753
  msgid "Enter the hex color of the progress bar"
1754
  msgstr ""
1755
 
1756
- #: admin/shortcode-builder/shortcode-builder.php:526
1757
  msgid "Images Loaded"
1758
  msgstr ""
1759
 
1760
- #: admin/shortcode-builder/shortcode-builder.php:529
1761
  msgid "Wait for all images to load before displaying ajax loaded content"
1762
  msgstr ""
1763
 
1764
- #: admin/shortcode-builder/shortcode-builder.php:529
1765
  msgid "Background images are not supported"
1766
  msgstr ""
1767
 
1768
- #: admin/shortcode-builder/shortcode-builder.php:551
1769
  msgid "Destroy After"
1770
  msgstr ""
1771
 
1772
- #: admin/shortcode-builder/shortcode-builder.php:555
1773
  msgid ""
1774
  "Remove Ajax Load More functionality after {<em>n</em>} number of pages have "
1775
  "been loaded."
1776
  msgstr ""
1777
 
1778
- #: admin/shortcode-builder/shortcode-builder.php:574
1779
  msgid "Query Parameters"
1780
  msgstr ""
1781
 
1782
- #: admin/shortcode-builder/shortcode-builder.php:578
1783
  msgid "Posts Per Page"
1784
  msgstr ""
1785
 
1786
- #: admin/shortcode-builder/shortcode-builder.php:581
1787
  msgid "Select the number of posts to load with each request."
1788
  msgstr ""
1789
 
1790
- #: admin/shortcode-builder/shortcode-builder.php:600
1791
  msgid "Post Type"
1792
  msgstr ""
1793
 
1794
- #: admin/shortcode-builder/shortcode-builder.php:605
1795
  msgid "Select the Post Types to include in this Ajax Load More query."
1796
  msgstr ""
1797
 
1798
- #: admin/shortcode-builder/shortcode-builder.php:619
1799
  msgid "Any"
1800
  msgstr ""
1801
 
1802
- #: admin/shortcode-builder/shortcode-builder.php:631
1803
  msgid "Sticky Posts"
1804
  msgstr ""
1805
 
1806
- #: admin/shortcode-builder/shortcode-builder.php:631
1807
  msgid "Sticky posts are only available for Posts"
1808
  msgstr ""
1809
 
1810
- #: admin/shortcode-builder/shortcode-builder.php:632
1811
  msgid ""
1812
  "Preserve the ordering of sticky posts by having them appear first in the "
1813
  "Ajax listing."
1814
  msgstr ""
1815
 
1816
- #: admin/shortcode-builder/shortcode-builder.php:639
1817
  msgid "Enable Sticky Posts"
1818
  msgstr ""
1819
 
1820
- #: admin/shortcode-builder/shortcode-builder.php:661
1821
  msgid "Post Format"
1822
  msgstr ""
1823
 
1824
- #: admin/shortcode-builder/shortcode-builder.php:664
1825
  msgid ""
1826
  "Select a <a href=\"http://codex.wordpress.org/Post_Formats\" target=\"_blank"
1827
  "\">Post Format</a> to query."
1828
  msgstr ""
1829
 
1830
- #: admin/shortcode-builder/shortcode-builder.php:667
1831
  msgid "Select Post Format"
1832
  msgstr ""
1833
 
1834
- #: admin/shortcode-builder/shortcode-builder.php:668
1835
  msgid "Standard"
1836
  msgstr ""
1837
 
1838
- #: admin/shortcode-builder/shortcode-builder.php:694
1839
  msgid ""
1840
  "A comma separated list of categories to include by slug. (design, research "
1841
  "etc...)"
1842
  msgstr ""
1843
 
1844
- #: admin/shortcode-builder/shortcode-builder.php:718
1845
  msgid ""
1846
  "A comma separated list of categories to exclude by ID. (3, 12, 35 etc..)"
1847
  msgstr ""
1848
 
1849
- #: admin/shortcode-builder/shortcode-builder.php:754
1850
  msgid ""
1851
  "A comma separated list of tags to include by slug. (toronto, canada etc...)"
1852
  msgstr ""
1853
 
1854
- #: admin/shortcode-builder/shortcode-builder.php:776
1855
  msgid "A comma separated list of tags to exclude by ID. (30, 12, 99 etc..)"
1856
  msgstr ""
1857
 
1858
- #: admin/shortcode-builder/shortcode-builder.php:812
1859
  msgid "Select a taxonomy then select the terms and an operator."
1860
  msgstr ""
1861
 
1862
- #: admin/shortcode-builder/shortcode-builder.php:817
1863
- #: admin/shortcode-builder/shortcode-builder.php:883
1864
  msgid "Add Another"
1865
  msgstr ""
1866
 
1867
- #: admin/shortcode-builder/shortcode-builder.php:827
1868
  msgid "Date"
1869
  msgstr ""
1870
 
1871
- #: admin/shortcode-builder/shortcode-builder.php:830
1872
  msgid ""
1873
  "Enter a year, month(number) and day to query by date archive.<br/>&raquo; <a "
1874
  "href=\"admin.php?page=ajax-load-more-help&section=examples#example-date\" "
1875
  "target=\"_blank\">View Example</a>"
1876
  msgstr ""
1877
 
1878
- #: admin/shortcode-builder/shortcode-builder.php:836
1879
  msgid "Year:"
1880
  msgstr ""
1881
 
1882
- #: admin/shortcode-builder/shortcode-builder.php:840
1883
  msgid "Month:"
1884
  msgstr ""
1885
 
1886
- #: admin/shortcode-builder/shortcode-builder.php:844
1887
  msgid "Day:"
1888
  msgstr ""
1889
 
1890
- #: admin/shortcode-builder/shortcode-builder.php:855
1891
  msgid "Custom Fields (Meta_Query)"
1892
  msgstr ""
1893
 
1894
- #: admin/shortcode-builder/shortcode-builder.php:858
1895
  msgid ""
1896
  "Query for <a href=\"http://codex.wordpress.org/Class_Reference/WP_Meta_Query"
1897
  "\" target=\"_blank\">custom field</a> by entering a custom field key, value "
1898
  "and operator."
1899
  msgstr ""
1900
 
1901
- #: admin/shortcode-builder/shortcode-builder.php:869
1902
  msgid ""
1903
  "The logical relationship between each custom field when there is more than "
1904
  "one"
1905
  msgstr ""
1906
 
1907
- #: admin/shortcode-builder/shortcode-builder.php:899
1908
  msgid "Author"
1909
  msgstr ""
1910
 
1911
- #: admin/shortcode-builder/shortcode-builder.php:902
1912
  msgid "Select an Author to query(by ID)."
1913
  msgstr ""
1914
 
1915
- #: admin/shortcode-builder/shortcode-builder.php:923
1916
  msgid "Search Term"
1917
  msgstr ""
1918
 
1919
- #: admin/shortcode-builder/shortcode-builder.php:926
1920
  msgid "Enter a search term to query."
1921
  msgstr ""
1922
 
1923
- #: admin/shortcode-builder/shortcode-builder.php:930
1924
  msgid "Enter search term"
1925
  msgstr ""
1926
 
1927
- #: admin/shortcode-builder/shortcode-builder.php:939
1928
  msgid "Post Parameters"
1929
  msgstr ""
1930
 
1931
- #: admin/shortcode-builder/shortcode-builder.php:943
1932
  msgid "A comma separated list of post ID's to query."
1933
  msgstr ""
1934
 
1935
- #: admin/shortcode-builder/shortcode-builder.php:947
1936
  msgid "225, 340, 818, etc..."
1937
  msgstr ""
1938
 
1939
- #: admin/shortcode-builder/shortcode-builder.php:954
1940
  msgid "A comma separated list of post ID's to exclude from query."
1941
  msgstr ""
1942
 
1943
- #: admin/shortcode-builder/shortcode-builder.php:964
1944
  msgid "Post Status"
1945
  msgstr ""
1946
 
1947
- #: admin/shortcode-builder/shortcode-builder.php:964
1948
  msgid ""
1949
  "Post Status parameters are only available for logged in (admin) users. Non "
1950
  "logged in users will only have access to view content in a 'publish' or "
1951
  "'inherit' state."
1952
  msgstr ""
1953
 
1954
- #: admin/shortcode-builder/shortcode-builder.php:965
1955
  msgid "Select status of the post."
1956
  msgstr ""
1957
 
1958
- #: admin/shortcode-builder/shortcode-builder.php:970
1959
  msgid "Published"
1960
  msgstr ""
1961
 
1962
- #: admin/shortcode-builder/shortcode-builder.php:987
1963
  msgid "Ordering"
1964
  msgstr ""
1965
 
1966
- #: admin/shortcode-builder/shortcode-builder.php:990
1967
  msgid "Sort posts by Order and Orderby parameters."
1968
  msgstr ""
1969
 
1970
- #: admin/shortcode-builder/shortcode-builder.php:1022
1971
  msgid "Offset"
1972
  msgstr ""
1973
 
1974
- #: admin/shortcode-builder/shortcode-builder.php:1025
1975
  msgid "Offset the initial query by <em>'n'</em> number of posts"
1976
  msgstr ""
1977
 
1978
- #: admin/shortcode-builder/shortcode-builder.php:1038
1979
  msgid "Custom Arguments"
1980
  msgstr ""
1981
 
1982
- #: admin/shortcode-builder/shortcode-builder.php:1041
1983
  msgid "A semicolon separated list of custom value:pair arguments."
1984
  msgstr ""
1985
 
1986
- #: admin/shortcode-builder/shortcode-builder.php:1041
1987
  msgid ""
1988
  "Custom Arguments can be used to query by parameters not available in the "
1989
  "Shortcode Builder"
1990
  msgstr ""
1991
 
1992
- #: admin/shortcode-builder/shortcode-builder.php:1045
1993
  msgid "event_display:upcoming"
1994
  msgstr ""
1995
 
1996
- #: admin/views/add-ons.php:6
1997
- msgid "Add-ons"
1998
- msgstr ""
1999
-
2000
  #: admin/views/add-ons.php:7
2001
  msgid ""
2002
  "Add-ons are available to extend and enhance the core functionality of Ajax "
@@ -2018,10 +1927,6 @@ msgid ""
2018
  "\"plugins.php\">WordPress plugin dashboard</a>."
2019
  msgstr ""
2020
 
2021
- #: admin/views/extensions.php:5
2022
- msgid "Extensions"
2023
- msgstr ""
2024
-
2025
  #: admin/views/extensions.php:6
2026
  msgid ""
2027
  "Free extensions that provide compatibility with popular plugins and core "
@@ -2042,10 +1947,6 @@ msgstr ""
2042
  msgid "A collection of everyday shortcode usages and implementation examples"
2043
  msgstr ""
2044
 
2045
- #: admin/views/help.php:18
2046
- msgid "Help"
2047
- msgstr ""
2048
-
2049
  #: admin/views/help.php:30
2050
  msgid "Implementation Guide"
2051
  msgstr ""
@@ -2069,123 +1970,139 @@ msgstr ""
2069
  msgid "View All Examples"
2070
  msgstr ""
2071
 
2072
- #: admin/views/licenses.php:5
2073
- msgid "Licenses"
 
 
 
 
2074
  msgstr ""
2075
 
2076
- #: admin/views/licenses.php:6
2077
  msgid ""
2078
- "Enter your license keys to enable <a href=\"admin.php?page=ajax-load-more-"
2079
- "add-ons\">add-on</a> updates from the plugins dashboard"
2080
  msgstr ""
2081
 
2082
- #: admin/views/licenses.php:14
 
 
 
 
2083
  msgid "License Keys"
2084
  msgstr ""
2085
 
2086
- #: admin/views/licenses.php:16
2087
  msgid ""
2088
- "Manage your Ajax Load More license key's below - enter a key for each of "
2089
- "your add-ons to receive plugin update notifications directly within the <a "
2090
- "href=\"plugins.php\">WP Plugins dashboard</a>."
2091
  msgstr ""
2092
 
2093
- #: admin/views/licenses.php:52
 
 
 
 
 
 
 
2094
  msgid "Don't have a license?"
2095
  msgstr ""
2096
 
2097
- #: admin/views/licenses.php:53
2098
  msgid ""
2099
  "A valid license is required to activate and receive plugin updates directly "
2100
  "in your WordPress dashboard"
2101
  msgstr ""
2102
 
2103
- #: admin/views/licenses.php:53
2104
  msgid "Purchase Now"
2105
  msgstr ""
2106
 
2107
- #: admin/views/licenses.php:59 admin/views/licenses.php:61
2108
  msgid "Enter License Key"
2109
  msgstr ""
2110
 
2111
- #: admin/views/licenses.php:85
2112
  msgid "Activate License"
2113
  msgstr ""
2114
 
2115
- #: admin/views/licenses.php:88
2116
  msgid "Deactivate License"
2117
  msgstr ""
2118
 
2119
- #: admin/views/licenses.php:105
2120
  msgid "You do not have any Ajax Load More add-ons installed"
2121
  msgstr ""
2122
 
2123
- #: admin/views/licenses.php:105
2124
  msgid "Browse Add-ons"
2125
  msgstr ""
2126
 
2127
- #: admin/views/licenses.php:115
2128
  msgid "About Licenses"
2129
  msgstr ""
2130
 
2131
- #: admin/views/licenses.php:118
2132
  msgid ""
2133
  "License keys are found in the purchase receipt email that was sent "
2134
- "immediately after your successful purchase and in the <a target=\"_blank\" "
2135
- "href=\"https://connekthq.com/account/\">Account</a> section on our website"
2136
  msgstr ""
2137
 
2138
- #: admin/views/licenses.php:119
2139
  msgid ""
2140
  "If you cannot locate your key please open a support ticket by filling out "
2141
- "the <a href=\"https://connekthq.com/contact/\">form</a> on our website and "
2142
  "reference the email address used when you completed the purchase."
2143
  msgstr ""
2144
 
2145
- #: admin/views/licenses.php:124
2146
  msgid "Your Account"
2147
  msgstr ""
2148
 
2149
- #: admin/views/repeater-templates.php:19 admin/views/repeater-templates.php:30
2150
- msgid "Repeater Templates"
2151
  msgstr ""
2152
 
2153
- #: admin/views/repeater-templates.php:20
2154
- msgid "The library of editable templates for use within your theme"
 
2155
  msgstr ""
2156
 
2157
- #: admin/views/repeater-templates.php:91 admin/views/repeater-templates.php:211
2158
- msgid "File Location"
2159
  msgstr ""
2160
 
2161
- #: admin/views/repeater-templates.php:113
2162
  msgid "Templates Not Found"
2163
  msgstr ""
2164
 
2165
- #: admin/views/repeater-templates.php:115
2166
  msgid ""
2167
  "Oh no - looks like you haven't added any Theme Repeater templates - you need "
2168
  "to create and upload templates to your theme directory before you can access "
2169
  "them in Ajax Load More"
2170
  msgstr ""
2171
 
2172
- #: admin/views/repeater-templates.php:118
2173
  msgid "Learn More About Theme Repeaters"
2174
  msgstr ""
2175
 
2176
- #: admin/views/repeater-templates.php:172
2177
  msgid "Default Template"
2178
  msgstr ""
2179
 
2180
- #: admin/views/repeater-templates.php:179
2181
  msgid "Enter the HTML and PHP code for the default template"
2182
  msgstr ""
2183
 
2184
- #: admin/views/repeater-templates.php:202
2185
  msgid "Save Template"
2186
  msgstr ""
2187
 
2188
- #: admin/views/repeater-templates.php:210
2189
  msgid ""
2190
  "It appears you are loading the <a href=\"https://connekthq.com/plugins/ajax-"
2191
  "load-more/docs/repeater-templates/#default-template\" target=\"_blank"
@@ -2194,19 +2111,19 @@ msgid ""
2194
  "your server."
2195
  msgstr ""
2196
 
2197
- #: admin/views/repeater-templates.php:284
2198
  msgid "Saving template..."
2199
  msgstr ""
2200
 
2201
- #: admin/views/repeater-templates.php:355
2202
  msgid "Updating template..."
2203
  msgstr ""
2204
 
2205
- #: admin/views/repeater-templates.php:427
2206
  msgid "What's a Repeater Template?"
2207
  msgstr ""
2208
 
2209
- #: admin/views/repeater-templates.php:429
2210
  msgid ""
2211
  "A <a href=\"https://connekthq.com/plugins/ajax-load-more/docs/repeater-"
2212
  "templates/\" target=\"_blank\">Repeater Template</a> is a snippet of code "
@@ -2214,7 +2131,7 @@ msgid ""
2214
  "org/The_Loop\" target=\"_blank\">WordPress loop</a>"
2215
  msgstr ""
2216
 
2217
- #: admin/views/repeater-templates.php:432
2218
  msgid "Learn More"
2219
  msgstr ""
2220
 
@@ -2222,32 +2139,28 @@ msgstr ""
2222
  msgid "A powerful plugin to add infinite scroll functionality to your website."
2223
  msgstr ""
2224
 
2225
- #: admin/views/settings.php:24
2226
- msgid "Thanks for installing Ajax Load More 3.0!"
2227
- msgstr ""
2228
-
2229
- #: admin/views/settings.php:41
2230
  msgid "Don't show me this again!"
2231
  msgstr ""
2232
 
2233
- #: admin/views/settings.php:52 admin/views/settings.php:55
2234
  msgid "Jump to Setting"
2235
  msgstr ""
2236
 
2237
- #: admin/views/settings.php:56
2238
  msgid "Global Settings"
2239
  msgstr ""
2240
 
2241
- #: admin/views/settings.php:57
2242
  msgid "Admin"
2243
  msgstr ""
2244
 
2245
- #: admin/views/settings.php:72
2246
- msgid "SEO"
2247
  msgstr ""
2248
 
2249
- #: admin/views/shortcode-builder.php:6
2250
- msgid "Shortcode Builder"
2251
  msgstr ""
2252
 
2253
  #: admin/views/shortcode-builder.php:7
@@ -2278,36 +2191,175 @@ msgstr ""
2278
  msgid "Copy Shortcode"
2279
  msgstr ""
2280
 
2281
- #: ajax-load-more.php:169
2282
  msgid "Error creating repeater template directory"
2283
  msgstr ""
2284
 
2285
- #: ajax-load-more.php:244
2286
- msgid "Settings"
2287
  msgstr ""
2288
 
2289
- #: core/functions.php:738
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2290
  msgid "Pages:"
2291
  msgstr ""
2292
 
2293
- #: vendor/EDD_SL_Plugin_Updater.php:201
2294
  #, php-format
2295
  msgid ""
2296
  "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
2297
  msgstr ""
2298
 
2299
- #: vendor/EDD_SL_Plugin_Updater.php:209
2300
  #, php-format
2301
  msgid ""
2302
  "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
2303
  "or %5$supdate now%6$s."
2304
  msgstr ""
2305
 
2306
- #: vendor/EDD_SL_Plugin_Updater.php:396
2307
  msgid "You do not have permission to install plugin updates"
2308
  msgstr ""
2309
 
2310
- #: vendor/EDD_SL_Plugin_Updater.php:396
2311
  msgid "Error"
2312
  msgstr ""
2313
 
@@ -2328,11 +2380,6 @@ msgstr ""
2328
  msgid "Sorry, you are not allowed to install plugins on this site."
2329
  msgstr ""
2330
 
2331
- #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:170
2332
- #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:241
2333
- msgid "Error - unable to verify nonce, please try again."
2334
- msgstr ""
2335
-
2336
  #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:234
2337
  msgid "Sorry, you are not allowed to activate plugins on this site."
2338
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Ajax Load More\n"
5
+ "POT-Creation-Date: 2018-08-29 12:30-0400\n"
6
  "PO-Revision-Date: 2018-06-20 13:05-0500\n"
7
  "Last-Translator: Darren Cooney <darren@connekthq.com>\n"
8
  "Language-Team: \n"
18
  "X-Poedit-SearchPathExcluded-0: core/src\n"
19
  "X-Poedit-SearchPathExcluded-1: admin/src\n"
20
 
21
+ #: admin/admin.php:60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  msgid ""
23
+ "You have an invalid <a href=\"admin.php?page=ajax-load-more\"><b>Ajax Load "
24
+ "More Pro</b></a> license key - please visit the <a href=\"admin.php?"
25
+ "page=ajax-load-more-licenses\">License</a> section to input your key or <a "
26
+ "href=\"https://connekthq.com/plugins/ajax-load-more/pro/\" target=\"_blank"
27
+ "\">purchase</a> one now."
28
  msgstr ""
29
 
30
+ #: admin/admin.php:64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  msgid ""
32
  "You have invalid <a href=\"admin.php?page=ajax-load-more\"><b>Ajax Load "
33
  "More</b></a> license keys - please visit the <a href=\"admin.php?page=ajax-"
34
+ "load-more-licenses\">Licenses</a> section and input your keys."
35
  msgstr ""
36
 
37
+ #: admin/admin.php:162 admin/admin.php:221 admin/admin.php:893
38
+ #: admin/admin.php:938 admin/admin.php:988
39
  msgid "You don't belong here."
40
  msgstr ""
41
 
42
+ #: admin/admin.php:252
43
  msgid "Ajax Load More"
44
  msgstr ""
45
 
46
+ #: admin/admin.php:253 admin/editor/editor-build.php:69
47
+ #: admin/views/licenses.php:83
48
  msgid "Active"
49
  msgstr ""
50
 
51
+ #: admin/admin.php:254 admin/editor/editor-build.php:70
52
+ #: admin/views/licenses.php:87
53
  msgid "Inactive"
54
  msgstr ""
55
 
56
+ #: admin/admin.php:255 admin/editor/editor-build.php:71
57
  msgid "Applying layout"
58
  msgstr ""
59
 
60
+ #: admin/admin.php:256 admin/editor/editor-build.php:72
61
+ #: admin/views/repeater-templates.php:421
62
  msgid "Template Updated"
63
  msgstr ""
64
 
65
+ #: admin/admin.php:258 admin/editor/editor-build.php:74
66
  msgid "Select Author(s)"
67
  msgstr ""
68
 
69
+ #: admin/admin.php:259 admin/editor/editor-build.php:75
70
  msgid "Select Categories"
71
  msgstr ""
72
 
73
+ #: admin/admin.php:260 admin/editor/editor-build.php:76
74
  msgid "Select Tags"
75
  msgstr ""
76
 
77
+ #: admin/admin.php:261 admin/editor/editor-build.php:41
78
  #: admin/editor/editor-build.php:77
79
  msgid "Jump to Option"
80
  msgstr ""
81
 
82
+ #: admin/admin.php:262 admin/editor/editor-build.php:78
83
  msgid "Jump to Template"
84
  msgstr ""
85
 
86
+ #: admin/admin.php:263
87
  msgid "Are you sure you want to install this Ajax Load More extension?"
88
  msgstr ""
89
 
90
+ #: admin/admin.php:264
91
  #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:51
92
  #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:379
93
  msgid "Install Now"
94
  msgstr ""
95
 
96
+ #: admin/admin.php:265
97
  #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:90
98
  #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:380
99
  msgid "Activate"
100
  msgstr ""
101
 
102
+ #: admin/admin.php:266
103
  msgid "Saving Settings"
104
  msgstr ""
105
 
106
+ #: admin/admin.php:267
107
  msgid "Settings Saved Successfully"
108
  msgstr ""
109
 
110
+ #: admin/admin.php:268
111
  msgid "Error Saving Settings"
112
  msgstr ""
113
 
114
+ #: admin/admin.php:368
115
  msgid ""
116
  "[Ajax Load More] Error opening default repeater template - Please check your "
117
  "file path and ensure your server is configured to allow Ajax Load More to "
118
  "read and write files within the /ajax-load-more/core/repeater directory"
119
  msgstr ""
120
 
121
+ #: admin/admin.php:372
122
  msgid ""
123
  "[Ajax Load More] Error updating default repeater template - Please check "
124
  "your file path and ensure your server is configured to allow Ajax Load More "
125
  "to read and write files within the /ajax-load-more/core/repeater directory."
126
  msgstr ""
127
 
128
+ #: admin/admin.php:412 admin/admin.php:413 ajax-load-more.php:241
129
+ msgid "Settings"
130
+ msgstr ""
131
+
132
+ #: admin/admin.php:421 admin/admin.php:422
133
+ #: admin/views/repeater-templates.php:14 admin/views/repeater-templates.php:25
134
+ msgid "Repeater Templates"
135
+ msgstr ""
136
+
137
+ #: admin/admin.php:430 admin/admin.php:431 admin/views/shortcode-builder.php:6
138
+ msgid "Shortcode Builder"
139
+ msgstr ""
140
+
141
+ #: admin/admin.php:440 admin/admin.php:441 admin/views/add-ons.php:6
142
+ msgid "Add-ons"
143
+ msgstr ""
144
+
145
+ #: admin/admin.php:450 admin/admin.php:451 admin/views/extensions.php:5
146
+ msgid "Extensions"
147
+ msgstr ""
148
+
149
+ #: admin/admin.php:459 admin/admin.php:460 admin/views/help.php:18
150
+ msgid "Help"
151
+ msgstr ""
152
+
153
+ #: admin/admin.php:466
154
+ msgid "License"
155
+ msgstr ""
156
+
157
+ #: admin/admin.php:466 admin/views/licenses.php:2
158
+ msgid "Licenses"
159
+ msgstr ""
160
+
161
+ #: admin/admin.php:486 admin/admin.php:487
162
+ msgid "Pro"
163
+ msgstr ""
164
+
165
+ #: admin/admin.php:499 admin/admin.php:500
166
+ #: admin/shortcode-builder/components/cache.php:3 admin/views/settings.php:57
167
+ #: core/functions.php:47
168
+ msgid "Cache"
169
+ msgstr ""
170
+
171
+ #: admin/admin.php:520 admin/admin.php:521
172
+ #: admin/shortcode-builder/components/filters.php:3 admin/views/settings.php:59
173
+ #: core/functions.php:103
174
+ msgid "Filters"
175
+ msgstr ""
176
+
177
+ #: admin/admin.php:849
178
  msgid "[Ajax Load More] Unable to open repeater template - "
179
  msgstr ""
180
 
181
+ #: admin/admin.php:853
182
  msgid "[Ajax Load More] Error saving repeater template - "
183
  msgstr ""
184
 
185
+ #: admin/admin.php:885
186
  msgid "Template Saved Successfully"
187
  msgstr ""
188
 
189
+ #: admin/admin.php:887
190
  msgid "Error Writing File"
191
  msgstr ""
192
 
193
+ #: admin/admin.php:887 admin/views/repeater-templates.php:362
194
  msgid "Something went wrong and the data could not be saved."
195
  msgstr ""
196
 
197
+ #: admin/admin.php:1032
198
+ #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:170
199
+ #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:241
200
+ msgid "Error - unable to verify nonce, please try again."
201
+ msgstr ""
202
+
203
+ #: admin/admin.php:1093 admin/shortcode-builder/shortcode-builder.php:73
204
  msgid "Container Type"
205
  msgstr ""
206
 
207
+ #: admin/admin.php:1101 admin/shortcode-builder/shortcode-builder.php:104
208
  msgid "Container Classes"
209
  msgstr ""
210
 
211
+ #: admin/admin.php:1109
212
  msgid "Disable CSS"
213
  msgstr ""
214
 
215
+ #: admin/admin.php:1117
216
  msgid "Button/Loading Style"
217
  msgstr ""
218
 
219
+ #: admin/admin.php:1125
220
  msgid "Button Classes"
221
  msgstr ""
222
 
223
+ #: admin/admin.php:1133
224
  msgid "Load CSS Inline"
225
  msgstr ""
226
 
227
+ #: admin/admin.php:1141
228
  msgid "Top of Page"
229
  msgstr ""
230
 
231
+ #: admin/admin.php:1149
232
  msgid "Dynamic Content"
233
  msgstr ""
234
 
235
+ #: admin/admin.php:1157
236
  msgid "Editor Button"
237
  msgstr ""
238
 
239
+ #: admin/admin.php:1165
240
  msgid "Error Notices"
241
  msgstr ""
242
 
243
+ #: admin/admin.php:1242
244
  msgid ""
245
  "Customize the user experience of Ajax Load More by updating the fields below."
246
  msgstr ""
247
 
248
+ #: admin/admin.php:1255
249
  msgid "The following settings affect the WordPress admin area only."
250
  msgstr ""
251
 
252
+ #: admin/admin.php:1286
253
  msgid "I want to use my own CSS styles."
254
  msgstr ""
255
 
256
+ #: admin/admin.php:1286
257
  msgid "View Ajax Load More CSS"
258
  msgstr ""
259
 
260
+ #: admin/admin.php:1306
261
  msgid "Hide shortcode button in WYSIWYG editor."
262
  msgstr ""
263
 
264
+ #: admin/admin.php:1327
265
  msgid ""
266
  "Display error messaging regarding repeater template updates in the browser "
267
  "console."
268
  msgstr ""
269
 
270
+ #: admin/admin.php:1348
271
  msgid ""
272
  "Disable dynamic population of categories, tags and authors in the Shortcode "
273
  "Builder.<span style=\"display:block\">Recommended if you have a large number "
274
  "of categories, tags and/or authors."
275
  msgstr ""
276
 
277
+ #: admin/admin.php:1369 admin/admin.php:1372
278
  msgid "Ajax Posts Here"
279
  msgstr ""
280
 
281
+ #: admin/admin.php:1374
282
  msgid "You can modify the container type when building a shortcode."
283
  msgstr ""
284
 
285
+ #: admin/admin.php:1391
286
  msgid ""
287
  "Add custom classes to the <i>.alm-listing</i> container - classes are "
288
  "applied globally and will appear with every instance of Ajax Load More. "
290
  "shortcode.</span>"
291
  msgstr ""
292
 
293
+ #: admin/admin.php:1453
294
  msgid ""
295
  "Select an Ajax loading style - you can choose between a <strong>Button</"
296
  "strong> or <strong>Infinite Scroll</strong>"
297
  msgstr ""
298
 
299
+ #: admin/admin.php:1458
300
  msgid "Button"
301
  msgstr ""
302
 
303
+ #: admin/admin.php:1466
304
  msgid "Infinite Scroll (No Button)"
305
  msgstr ""
306
 
307
+ #: admin/admin.php:1479
308
  msgid "Preview"
309
  msgstr ""
310
 
311
+ #: admin/admin.php:1479 admin/shortcode-builder/shortcode-builder.php:171
312
  #: core/classes/class.alm-shortcode.php:152
313
  msgid "Older Posts"
314
  msgstr ""
315
 
316
+ #: admin/admin.php:1500
317
  msgid "Improve site performance by loading Ajax Load More CSS inline"
318
  msgstr ""
319
 
320
+ #: admin/admin.php:1520
321
  msgid "Add classes to your <strong>Load More</strong> button"
322
  msgstr ""
323
 
324
+ #: admin/admin.php:1565
325
  msgid ""
326
  "On initial page load, move the user's browser window to the top of the "
327
  "screen.<span style=\"display:block\">This <u>may</u> help prevent the "
328
  "loading of unnecessary posts.</span>"
329
  msgstr ""
330
 
331
+ #: admin/admin.php:1586
332
  msgid ""
333
  "Enable <a href=\"https://codex.wordpress.org/WordPress_Nonces\" target="
334
  "\"_blank\">WP nonce</a> verification to help protect URLs against certain "
354
 
355
  #: admin/includes/components/example-list.php:2
356
  #: admin/shortcode-builder/shortcode-builder.php:3
357
+ #: admin/views/repeater-templates.php:126
358
+ #: admin/views/repeater-templates.php:156
359
  msgid "Collapse All"
360
  msgstr ""
361
 
362
  #: admin/includes/components/example-list.php:2
363
  #: admin/shortcode-builder/shortcode-builder.php:4
364
+ #: admin/views/repeater-templates.php:127
365
+ #: admin/views/repeater-templates.php:157
366
  msgid "Expand All"
367
  msgstr ""
368
 
414
  msgid "Shortcode for use on tag archive pages."
415
  msgstr ""
416
 
417
+ #: admin/includes/components/layout-list.php:2
418
+ msgid "Apply Layout"
419
+ msgstr ""
420
+
421
+ #: admin/includes/components/layout-list.php:15
422
  msgid "Default Layout"
423
  msgstr ""
424
 
425
+ #: admin/includes/components/layout-list.php:23
426
  msgid ""
427
+ "Get predefined responsive layouts with the <strong>Layouts add-on</strong>"
428
  msgstr ""
429
 
430
+ #: admin/includes/components/repeater-options.php:5
431
+ #: admin/shortcode-builder/shortcode-builder.php:51
432
  msgid "Options"
433
  msgstr ""
434
 
435
+ #: admin/includes/components/repeater-options.php:13
436
  msgid "Update Template from Database"
437
  msgstr ""
438
 
439
+ #: admin/includes/components/repeater-options.php:13
440
  msgid "Update from Database"
441
  msgstr ""
442
 
443
+ #: admin/includes/components/repeater-options.php:23
444
+ #: admin/includes/components/repeater-options.php:24
445
+ msgid "Download Template"
446
+ msgstr ""
447
+
448
+ #: admin/includes/components/repeater-options.php:31
449
  msgid "Copy Template Data"
450
  msgstr ""
451
 
452
  #: admin/includes/cta/about.php:2
453
+ msgid "Our Other Plugins"
454
  msgstr ""
455
 
456
  #: admin/includes/cta/add-ons.php:2
473
  msgid "Did You Know?"
474
  msgstr ""
475
 
476
+ #: admin/includes/cta/extend.php:3
477
  msgid ""
478
  "Unlock additional templates with the <a href=\"https://connekthq.com/plugins/"
479
  "ajax-load-more/add-ons/custom-repeaters/?utm_source=WP"
481
  "\" target=\"_parent\">Custom Repeaters add-on</a>"
482
  msgstr ""
483
 
484
+ #: admin/includes/cta/extend.php:5
485
  msgid "More Info"
486
  msgstr ""
487
 
593
  #: admin/shortcode-builder/components/rest-api.php:108
594
  #: admin/shortcode-builder/components/seo.php:14
595
  #: admin/shortcode-builder/components/users.php:13
596
+ #: admin/shortcode-builder/shortcode-builder.php:205
597
+ #: admin/shortcode-builder/shortcode-builder.php:265
598
+ #: admin/shortcode-builder/shortcode-builder.php:396
599
+ #: admin/shortcode-builder/shortcode-builder.php:463
600
+ #: admin/shortcode-builder/shortcode-builder.php:491
601
+ #: admin/shortcode-builder/shortcode-builder.php:539
602
  msgid "True"
603
  msgstr ""
604
 
618
  #: admin/shortcode-builder/components/rest-api.php:112
619
  #: admin/shortcode-builder/components/seo.php:18
620
  #: admin/shortcode-builder/components/users.php:17
621
+ #: admin/shortcode-builder/shortcode-builder.php:209
622
+ #: admin/shortcode-builder/shortcode-builder.php:269
623
+ #: admin/shortcode-builder/shortcode-builder.php:400
624
+ #: admin/shortcode-builder/shortcode-builder.php:467
625
+ #: admin/shortcode-builder/shortcode-builder.php:495
626
+ #: admin/shortcode-builder/shortcode-builder.php:543
627
  msgid "False"
628
  msgstr ""
629
 
701
  msgid "Generate Cache ID"
702
  msgstr ""
703
 
704
+ #: admin/shortcode-builder/components/comments.php:3 core/functions.php:75
705
+ msgid "Comments"
706
+ msgstr ""
707
+
708
  #: admin/shortcode-builder/components/comments.php:6
709
  msgid "Enable Ajax Load More to display blog comments."
710
  msgstr ""
772
  msgstr ""
773
 
774
  #: admin/shortcode-builder/components/comments.php:106
775
+ #: admin/shortcode-builder/shortcode-builder.php:291
776
+ #: admin/shortcode-builder/shortcode-builder.php:376
777
  msgid "None"
778
  msgstr ""
779
 
818
  "\"_blank\">View documentation</a>"
819
  msgstr ""
820
 
821
+ #: admin/shortcode-builder/components/cta.php:3 core/functions.php:61
822
+ msgid "Call to Actions"
823
+ msgstr ""
824
+
825
  #: admin/shortcode-builder/components/cta.php:7
826
  msgid "Insert call to action block."
827
  msgstr ""
854
  msgstr ""
855
 
856
  #: admin/shortcode-builder/components/cta.php:55
 
857
  msgid "Template"
858
  msgstr ""
859
 
925
  "Enable debugging of the Ajax Load More filter object in the browser console"
926
  msgstr ""
927
 
928
+ #: admin/shortcode-builder/components/nextpage.php:3 core/functions.php:131
929
+ msgid "Next Page"
930
+ msgstr ""
931
+
932
  #: admin/shortcode-builder/components/nextpage.php:6
933
  msgid "Enable the infinite scrolling of multipage WordPress content using the"
934
  msgstr ""
1006
  "\"_blank\">View documentation</a>"
1007
  msgstr ""
1008
 
1009
+ #: admin/shortcode-builder/components/paging.php:3 admin/views/settings.php:63
1010
+ #: core/functions.php:145
1011
+ msgid "Paging"
1012
+ msgstr ""
1013
+
1014
  #: admin/shortcode-builder/components/paging.php:5
1015
  msgid "Replace infinite scrolling with a paged ajax navigation system."
1016
  msgstr ""
1040
  "The maximum amount of page menu items to show at a time. <br/.>0 = no maximum"
1041
  msgstr ""
1042
 
1043
+ #: admin/shortcode-builder/components/preloaded.php:3 core/functions.php:159
1044
+ msgid "Preloaded"
1045
+ msgstr ""
1046
+
1047
  #: admin/shortcode-builder/components/preloaded.php:6
1048
  msgid "Preload posts prior to making Ajax requests."
1049
  msgstr ""
1056
  msgid "Enter the number of posts to preload."
1057
  msgstr ""
1058
 
1059
+ #: admin/shortcode-builder/components/previous-post.php:3
1060
+ #: admin/views/settings.php:65 core/functions.php:173
1061
+ msgid "Previous Post"
1062
+ msgstr ""
1063
+
1064
  #: admin/shortcode-builder/components/previous-post.php:6
1065
  msgid "Enable the infinite scrolling of single posts."
1066
  msgstr ""
1067
 
1068
  #: admin/shortcode-builder/components/previous-post.php:38
1069
+ #: admin/shortcode-builder/shortcode-builder.php:813
1070
  msgid "Taxonomy"
1071
  msgstr ""
1072
 
1089
  msgstr ""
1090
 
1091
  #: admin/shortcode-builder/components/previous-post.php:53
1092
+ #: admin/shortcode-builder/shortcode-builder.php:694
1093
  msgid "Category"
1094
  msgstr ""
1095
 
1096
  #: admin/shortcode-builder/components/previous-post.php:54
1097
+ #: admin/shortcode-builder/shortcode-builder.php:754
1098
  msgid "Tag"
1099
  msgstr ""
1100
 
1120
  msgstr ""
1121
 
1122
  #: admin/shortcode-builder/components/rest-api.php:18
1123
+ #: admin/views/settings.php:67
1124
  msgid "REST API"
1125
  msgstr ""
1126
 
1181
  msgstr ""
1182
 
1183
  #: admin/shortcode-builder/components/rest-api.php:88
1184
+ #: admin/shortcode-builder/shortcode-builder.php:482
1185
+ #: admin/shortcode-builder/shortcode-builder.php:699
1186
+ #: admin/shortcode-builder/shortcode-builder.php:758
1187
+ #: admin/shortcode-builder/shortcode-builder.php:958
1188
  msgid "View Example"
1189
  msgstr ""
1190
 
1210
  "Enable address bar URL rewrites as users page through ajax loaded content."
1211
  msgstr ""
1212
 
1213
+ #: admin/shortcode-builder/components/users.php:3 core/functions.php:215
1214
+ msgid "Users"
1215
+ msgstr ""
1216
+
1217
  #: admin/shortcode-builder/components/users.php:6
1218
  msgid "Infinite scroll WordPress users"
1219
  msgstr ""
1235
  msgstr ""
1236
 
1237
  #: admin/shortcode-builder/components/users.php:55
1238
+ #: admin/shortcode-builder/shortcode-builder.php:757
1239
+ #: admin/shortcode-builder/shortcode-builder.php:946
1240
  msgid "Include"
1241
  msgstr ""
1242
 
1245
  msgstr ""
1246
 
1247
  #: admin/shortcode-builder/components/users.php:69
1248
+ #: admin/shortcode-builder/shortcode-builder.php:721
1249
+ #: admin/shortcode-builder/shortcode-builder.php:779
1250
+ #: admin/shortcode-builder/shortcode-builder.php:957
1251
  msgid "Exclude"
1252
  msgstr ""
1253
 
1272
  msgstr ""
1273
 
1274
  #: admin/shortcode-builder/components/users.php:100
1275
+ #: admin/shortcode-builder/shortcode-builder.php:998
1276
  msgid "Order"
1277
  msgstr ""
1278
 
1279
  #: admin/shortcode-builder/components/users.php:107
1280
+ #: admin/shortcode-builder/shortcode-builder.php:1005
1281
  msgid "Order By"
1282
  msgstr ""
1283
 
1330
  msgstr ""
1331
 
1332
  #: admin/shortcode-builder/includes/tax-query-options.php:36
1333
+ #: admin/shortcode-builder/shortcode-builder.php:873
1334
  msgid "Relation:"
1335
  msgstr ""
1336
 
1347
  msgid "Display Settings"
1348
  msgstr ""
1349
 
1350
+ #: admin/shortcode-builder/shortcode-builder.php:56
 
 
 
 
 
 
 
 
 
 
1351
  msgid "ID"
1352
  msgstr ""
1353
 
1354
+ #: admin/shortcode-builder/shortcode-builder.php:56
1355
  msgid ""
1356
  "Adding a unique ID will allow you target this specific Ajax Load More "
1357
  "instance with the alm_query_args_id() filter"
1358
  msgstr ""
1359
 
1360
+ #: admin/shortcode-builder/shortcode-builder.php:57
1361
  msgid "Set a unique ID for this Ajax Load More instance."
1362
  msgstr ""
1363
 
1364
+ #: admin/shortcode-builder/shortcode-builder.php:64
1365
  msgid "Generate Unique ID"
1366
  msgstr ""
1367
 
1368
+ #: admin/shortcode-builder/shortcode-builder.php:73
1369
  msgid ""
1370
  "You can define a global container type on the Ajax Load More settings screen"
1371
  msgstr ""
1372
 
1373
+ #: admin/shortcode-builder/shortcode-builder.php:74
1374
  msgid ""
1375
  "Override the global Container Type set on the <a href=\"admin.php?page=ajax-"
1376
  "load-more\">ALM Settings page</a>."
1377
  msgstr ""
1378
 
1379
+ #: admin/shortcode-builder/shortcode-builder.php:104
1380
  msgid ""
1381
  "You can define global container classes on the Ajax Load More settings screen"
1382
  msgstr ""
1383
 
1384
+ #: admin/shortcode-builder/shortcode-builder.php:105
1385
  msgid ""
1386
  "Add custom CSS classes to the <span>.alm-listing</span> container. <br/><br/"
1387
  "> e.g. portfolio-listing large-12 etc"
1388
  msgstr ""
1389
 
1390
+ #: admin/shortcode-builder/shortcode-builder.php:120
1391
+ msgid "Template Selection"
1392
+ msgstr ""
1393
+
1394
+ #: admin/shortcode-builder/shortcode-builder.php:124
1395
+ msgid "Repeater Template"
1396
+ msgstr ""
1397
+
1398
+ #: admin/shortcode-builder/shortcode-builder.php:126
1399
+ msgid ""
1400
+ "Select which <a href=\"admin.php?page=ajax-load-more-repeaters\" target="
1401
+ "\"_parent\">repeater template</a> you would like to use."
1402
+ msgstr ""
1403
+
1404
+ #: admin/shortcode-builder/shortcode-builder.php:161
1405
  msgid "Button Labels"
1406
  msgstr ""
1407
 
1408
+ #: admin/shortcode-builder/shortcode-builder.php:166
1409
  msgid "Label"
1410
  msgstr ""
1411
 
1412
+ #: admin/shortcode-builder/shortcode-builder.php:167
1413
  msgid "Customize the text of the <em>Load More</em> button."
1414
  msgstr ""
1415
 
1416
+ #: admin/shortcode-builder/shortcode-builder.php:179
1417
  msgid "Loading Label"
1418
  msgstr ""
1419
 
1420
+ #: admin/shortcode-builder/shortcode-builder.php:179
1421
  msgid "Leave field empty to not update text while loading content"
1422
  msgstr ""
1423
 
1424
+ #: admin/shortcode-builder/shortcode-builder.php:180
1425
  msgid ""
1426
  "Update the text of the <em>Load More</em> button while content is loading."
1427
  msgstr ""
1428
 
1429
+ #: admin/shortcode-builder/shortcode-builder.php:184
1430
  msgid "Loading Posts..."
1431
  msgstr ""
1432
 
1433
+ #: admin/shortcode-builder/shortcode-builder.php:194
1434
  msgid "Scrolling"
1435
  msgstr ""
1436
 
1437
+ #: admin/shortcode-builder/shortcode-builder.php:197
1438
  msgid "Enable Scrolling"
1439
  msgstr ""
1440
 
1441
+ #: admin/shortcode-builder/shortcode-builder.php:198
1442
  msgid "Load more posts as the user scrolls the page."
1443
  msgstr ""
1444
 
1445
+ #: admin/shortcode-builder/shortcode-builder.php:219
1446
  msgid "Scroll Distance"
1447
  msgstr ""
1448
 
1449
+ #: admin/shortcode-builder/shortcode-builder.php:219
1450
  msgid ""
1451
  "Distance is based on the position of the loading button from the bottom of "
1452
  "the screen"
1453
  msgstr ""
1454
 
1455
+ #: admin/shortcode-builder/shortcode-builder.php:220
1456
  msgid ""
1457
  "The distance from the bottom of the screen to trigger loading of posts. "
1458
  "(Default = 150)"
1459
  msgstr ""
1460
 
1461
+ #: admin/shortcode-builder/shortcode-builder.php:232
1462
  msgid "Scroll Container"
1463
  msgstr ""
1464
 
1465
+ #: admin/shortcode-builder/shortcode-builder.php:232
1466
  msgid "Confine Ajax Load More scrolling to a parent container"
1467
  msgstr ""
1468
 
1469
+ #: admin/shortcode-builder/shortcode-builder.php:233
1470
  msgid "Enter the ID or classname of the parent container"
1471
  msgstr ""
1472
 
1473
+ #: admin/shortcode-builder/shortcode-builder.php:245
1474
  msgid "Maximum Pages"
1475
  msgstr ""
1476
 
1477
+ #: admin/shortcode-builder/shortcode-builder.php:245
1478
  msgid "If using an Infinite Scroll button style you should set this to 0"
1479
  msgstr ""
1480
 
1481
+ #: admin/shortcode-builder/shortcode-builder.php:246
1482
  msgid "Maximum number of pages to load while scrolling. (0 = unlimited)"
1483
  msgstr ""
1484
 
1485
+ #: admin/shortcode-builder/shortcode-builder.php:258
1486
  msgid "Pause Override"
1487
  msgstr ""
1488
 
1489
+ #: admin/shortcode-builder/shortcode-builder.php:259
1490
  msgid ""
1491
  "Allow scrolling to override the Pause parameter and trigger the loading of "
1492
  "posts on scroll."
1493
  msgstr ""
1494
 
1495
+ #: admin/shortcode-builder/shortcode-builder.php:280
1496
  msgid "Transition"
1497
  msgstr ""
1498
 
1499
+ #: admin/shortcode-builder/shortcode-builder.php:283
1500
  msgid "Type"
1501
  msgstr ""
1502
 
1503
+ #: admin/shortcode-builder/shortcode-builder.php:284
1504
  msgid "Select a loading transition style."
1505
  msgstr ""
1506
 
1507
+ #: admin/shortcode-builder/shortcode-builder.php:289
1508
  msgid "Fade In"
1509
  msgstr ""
1510
 
1511
+ #: admin/shortcode-builder/shortcode-builder.php:290
1512
  msgid "Masonry"
1513
  msgstr ""
1514
 
1515
+ #: admin/shortcode-builder/shortcode-builder.php:303
1516
  msgid "Masonry Options"
1517
  msgstr ""
1518
 
1519
+ #: admin/shortcode-builder/shortcode-builder.php:303
1520
  msgid "Ajax Load More does not support all available Masonry options"
1521
  msgstr ""
1522
 
1523
+ #: admin/shortcode-builder/shortcode-builder.php:304
1524
  msgid ""
1525
  "The following Masonry <a href=\"https://masonry.desandro.com/options.html\" "
1526
  "target=\"_blank\">options</a> are supported by Ajax Load More"
1527
  msgstr ""
1528
 
1529
+ #: admin/shortcode-builder/shortcode-builder.php:309
1530
  msgid "Item Selector"
1531
  msgstr ""
1532
 
1533
+ #: admin/shortcode-builder/shortcode-builder.php:309
1534
  msgid ""
1535
  "Item Selector is required for Masonry to target each element loaded with Ajax"
1536
  msgstr ""
1537
 
1538
+ #: admin/shortcode-builder/shortcode-builder.php:310
1539
  msgid "Enter the target classname of each masonry item"
1540
  msgstr ""
1541
 
1542
+ #: admin/shortcode-builder/shortcode-builder.php:324
1543
  msgid "Column Width"
1544
  msgstr ""
1545
 
1546
+ #: admin/shortcode-builder/shortcode-builder.php:324
1547
  msgid ""
1548
  "If columnWidth is not set, Masonry will use the outer width of the first "
1549
  "Item Selector"
1550
  msgstr ""
1551
 
1552
+ #: admin/shortcode-builder/shortcode-builder.php:325
1553
  msgid ""
1554
  "Enter the <a href=\"https://masonry.desandro.com/options.html#columnwidth\" "
1555
  "target=\"_blank\">columnWidth</a> of the masonry items"
1556
  msgstr ""
1557
 
1558
+ #: admin/shortcode-builder/shortcode-builder.php:339
1559
  msgid "Animation Type"
1560
  msgstr ""
1561
 
1562
+ #: admin/shortcode-builder/shortcode-builder.php:339
1563
  msgid "All Masonry animations include a fade-in effect as items are loaded"
1564
  msgstr ""
1565
 
1566
+ #: admin/shortcode-builder/shortcode-builder.php:340
1567
  msgid "Select a loading transition for Masonry items"
1568
  msgstr ""
1569
 
1570
+ #: admin/shortcode-builder/shortcode-builder.php:348
1571
  msgid "Default (Zoom)"
1572
  msgstr ""
1573
 
1574
+ #: admin/shortcode-builder/shortcode-builder.php:349
1575
  msgid "Items scale up from 50% to 100% size on load"
1576
  msgstr ""
1577
 
1578
+ #: admin/shortcode-builder/shortcode-builder.php:355
1579
  msgid "Zoom Out"
1580
  msgstr ""
1581
 
1582
+ #: admin/shortcode-builder/shortcode-builder.php:356
1583
  msgid "Items scale down from 125% to 100% size on load"
1584
  msgstr ""
1585
 
1586
+ #: admin/shortcode-builder/shortcode-builder.php:362
1587
  msgid "Slide Up"
1588
  msgstr ""
1589
 
1590
+ #: admin/shortcode-builder/shortcode-builder.php:363
1591
  msgid "Items animate up as they are loaded into view."
1592
  msgstr ""
1593
 
1594
+ #: admin/shortcode-builder/shortcode-builder.php:369
1595
  msgid "Slide Down"
1596
  msgstr ""
1597
 
1598
+ #: admin/shortcode-builder/shortcode-builder.php:370
1599
  msgid "Items animate down when loaded into view."
1600
  msgstr ""
1601
 
1602
+ #: admin/shortcode-builder/shortcode-builder.php:387
1603
  msgid "Horizontal Order"
1604
  msgstr ""
1605
 
1606
+ #: admin/shortcode-builder/shortcode-builder.php:388
1607
  msgid "Lays out items to maintain left-to-right order"
1608
  msgstr ""
1609
 
1610
+ #: admin/shortcode-builder/shortcode-builder.php:415
1611
  msgid "Transition Container"
1612
  msgstr ""
1613
 
1614
+ #: admin/shortcode-builder/shortcode-builder.php:415
1615
  msgid ""
1616
  "Removing the transition container may have undesired results and is not "
1617
  "recommended"
1618
  msgstr ""
1619
 
1620
+ #: admin/shortcode-builder/shortcode-builder.php:416
1621
  msgid ""
1622
  "Remove the <span>.alm-reveal</span> loading container from Ajax Load More"
1623
  msgstr ""
1624
 
1625
+ #: admin/shortcode-builder/shortcode-builder.php:423
1626
  msgid "Remove Container"
1627
  msgstr ""
1628
 
1629
+ #: admin/shortcode-builder/shortcode-builder.php:434
1630
  msgid "Transition Container Classes"
1631
  msgstr ""
1632
 
1633
+ #: admin/shortcode-builder/shortcode-builder.php:434
1634
  msgid ""
1635
  "This setting is not available with the Previous Post or Next Page add-ons"
1636
  msgstr ""
1637
 
1638
+ #: admin/shortcode-builder/shortcode-builder.php:435
1639
  msgid "Add custom classes to the <span>.alm-reveal</span> loading container"
1640
  msgstr ""
1641
 
1642
+ #: admin/shortcode-builder/shortcode-builder.php:453
1643
  msgid "Pause"
1644
  msgstr ""
1645
 
1646
+ #: admin/shortcode-builder/shortcode-builder.php:456
1647
  msgid ""
1648
  "Do <u>NOT</u> load any posts until user clicks the <em>Load More</em> button."
1649
  msgstr ""
1650
 
1651
+ #: admin/shortcode-builder/shortcode-builder.php:478
1652
  msgid "Progress Bar"
1653
  msgstr ""
1654
 
1655
+ #: admin/shortcode-builder/shortcode-builder.php:481
1656
  msgid ""
1657
  "Display progress bar indicator at the top of the window while loading Ajax "
1658
  "content"
1659
  msgstr ""
1660
 
1661
+ #: admin/shortcode-builder/shortcode-builder.php:510
1662
  msgid "Color"
1663
  msgstr ""
1664
 
1665
+ #: admin/shortcode-builder/shortcode-builder.php:511
1666
  msgid "Enter the hex color of the progress bar"
1667
  msgstr ""
1668
 
1669
+ #: admin/shortcode-builder/shortcode-builder.php:529
1670
  msgid "Images Loaded"
1671
  msgstr ""
1672
 
1673
+ #: admin/shortcode-builder/shortcode-builder.php:532
1674
  msgid "Wait for all images to load before displaying ajax loaded content"
1675
  msgstr ""
1676
 
1677
+ #: admin/shortcode-builder/shortcode-builder.php:532
1678
  msgid "Background images are not supported"
1679
  msgstr ""
1680
 
1681
+ #: admin/shortcode-builder/shortcode-builder.php:554
1682
  msgid "Destroy After"
1683
  msgstr ""
1684
 
1685
+ #: admin/shortcode-builder/shortcode-builder.php:558
1686
  msgid ""
1687
  "Remove Ajax Load More functionality after {<em>n</em>} number of pages have "
1688
  "been loaded."
1689
  msgstr ""
1690
 
1691
+ #: admin/shortcode-builder/shortcode-builder.php:577
1692
  msgid "Query Parameters"
1693
  msgstr ""
1694
 
1695
+ #: admin/shortcode-builder/shortcode-builder.php:582
1696
  msgid "Posts Per Page"
1697
  msgstr ""
1698
 
1699
+ #: admin/shortcode-builder/shortcode-builder.php:585
1700
  msgid "Select the number of posts to load with each request."
1701
  msgstr ""
1702
 
1703
+ #: admin/shortcode-builder/shortcode-builder.php:604
1704
  msgid "Post Type"
1705
  msgstr ""
1706
 
1707
+ #: admin/shortcode-builder/shortcode-builder.php:609
1708
  msgid "Select the Post Types to include in this Ajax Load More query."
1709
  msgstr ""
1710
 
1711
+ #: admin/shortcode-builder/shortcode-builder.php:623
1712
  msgid "Any"
1713
  msgstr ""
1714
 
1715
+ #: admin/shortcode-builder/shortcode-builder.php:635
1716
  msgid "Sticky Posts"
1717
  msgstr ""
1718
 
1719
+ #: admin/shortcode-builder/shortcode-builder.php:635
1720
  msgid "Sticky posts are only available for Posts"
1721
  msgstr ""
1722
 
1723
+ #: admin/shortcode-builder/shortcode-builder.php:636
1724
  msgid ""
1725
  "Preserve the ordering of sticky posts by having them appear first in the "
1726
  "Ajax listing."
1727
  msgstr ""
1728
 
1729
+ #: admin/shortcode-builder/shortcode-builder.php:643
1730
  msgid "Enable Sticky Posts"
1731
  msgstr ""
1732
 
1733
+ #: admin/shortcode-builder/shortcode-builder.php:665
1734
  msgid "Post Format"
1735
  msgstr ""
1736
 
1737
+ #: admin/shortcode-builder/shortcode-builder.php:668
1738
  msgid ""
1739
  "Select a <a href=\"http://codex.wordpress.org/Post_Formats\" target=\"_blank"
1740
  "\">Post Format</a> to query."
1741
  msgstr ""
1742
 
1743
+ #: admin/shortcode-builder/shortcode-builder.php:671
1744
  msgid "Select Post Format"
1745
  msgstr ""
1746
 
1747
+ #: admin/shortcode-builder/shortcode-builder.php:672
1748
  msgid "Standard"
1749
  msgstr ""
1750
 
1751
+ #: admin/shortcode-builder/shortcode-builder.php:698
1752
  msgid ""
1753
  "A comma separated list of categories to include by slug. (design, research "
1754
  "etc...)"
1755
  msgstr ""
1756
 
1757
+ #: admin/shortcode-builder/shortcode-builder.php:722
1758
  msgid ""
1759
  "A comma separated list of categories to exclude by ID. (3, 12, 35 etc..)"
1760
  msgstr ""
1761
 
1762
+ #: admin/shortcode-builder/shortcode-builder.php:758
1763
  msgid ""
1764
  "A comma separated list of tags to include by slug. (toronto, canada etc...)"
1765
  msgstr ""
1766
 
1767
+ #: admin/shortcode-builder/shortcode-builder.php:780
1768
  msgid "A comma separated list of tags to exclude by ID. (30, 12, 99 etc..)"
1769
  msgstr ""
1770
 
1771
+ #: admin/shortcode-builder/shortcode-builder.php:816
1772
  msgid "Select a taxonomy then select the terms and an operator."
1773
  msgstr ""
1774
 
1775
+ #: admin/shortcode-builder/shortcode-builder.php:821
1776
+ #: admin/shortcode-builder/shortcode-builder.php:887
1777
  msgid "Add Another"
1778
  msgstr ""
1779
 
1780
+ #: admin/shortcode-builder/shortcode-builder.php:831
1781
  msgid "Date"
1782
  msgstr ""
1783
 
1784
+ #: admin/shortcode-builder/shortcode-builder.php:834
1785
  msgid ""
1786
  "Enter a year, month(number) and day to query by date archive.<br/>&raquo; <a "
1787
  "href=\"admin.php?page=ajax-load-more-help&section=examples#example-date\" "
1788
  "target=\"_blank\">View Example</a>"
1789
  msgstr ""
1790
 
1791
+ #: admin/shortcode-builder/shortcode-builder.php:840
1792
  msgid "Year:"
1793
  msgstr ""
1794
 
1795
+ #: admin/shortcode-builder/shortcode-builder.php:844
1796
  msgid "Month:"
1797
  msgstr ""
1798
 
1799
+ #: admin/shortcode-builder/shortcode-builder.php:848
1800
  msgid "Day:"
1801
  msgstr ""
1802
 
1803
+ #: admin/shortcode-builder/shortcode-builder.php:859
1804
  msgid "Custom Fields (Meta_Query)"
1805
  msgstr ""
1806
 
1807
+ #: admin/shortcode-builder/shortcode-builder.php:862
1808
  msgid ""
1809
  "Query for <a href=\"http://codex.wordpress.org/Class_Reference/WP_Meta_Query"
1810
  "\" target=\"_blank\">custom field</a> by entering a custom field key, value "
1811
  "and operator."
1812
  msgstr ""
1813
 
1814
+ #: admin/shortcode-builder/shortcode-builder.php:873
1815
  msgid ""
1816
  "The logical relationship between each custom field when there is more than "
1817
  "one"
1818
  msgstr ""
1819
 
1820
+ #: admin/shortcode-builder/shortcode-builder.php:903
1821
  msgid "Author"
1822
  msgstr ""
1823
 
1824
+ #: admin/shortcode-builder/shortcode-builder.php:906
1825
  msgid "Select an Author to query(by ID)."
1826
  msgstr ""
1827
 
1828
+ #: admin/shortcode-builder/shortcode-builder.php:927
1829
  msgid "Search Term"
1830
  msgstr ""
1831
 
1832
+ #: admin/shortcode-builder/shortcode-builder.php:930
1833
  msgid "Enter a search term to query."
1834
  msgstr ""
1835
 
1836
+ #: admin/shortcode-builder/shortcode-builder.php:934
1837
  msgid "Enter search term"
1838
  msgstr ""
1839
 
1840
+ #: admin/shortcode-builder/shortcode-builder.php:943
1841
  msgid "Post Parameters"
1842
  msgstr ""
1843
 
1844
+ #: admin/shortcode-builder/shortcode-builder.php:947
1845
  msgid "A comma separated list of post ID's to query."
1846
  msgstr ""
1847
 
1848
+ #: admin/shortcode-builder/shortcode-builder.php:951
1849
  msgid "225, 340, 818, etc..."
1850
  msgstr ""
1851
 
1852
+ #: admin/shortcode-builder/shortcode-builder.php:958
1853
  msgid "A comma separated list of post ID's to exclude from query."
1854
  msgstr ""
1855
 
1856
+ #: admin/shortcode-builder/shortcode-builder.php:968
1857
  msgid "Post Status"
1858
  msgstr ""
1859
 
1860
+ #: admin/shortcode-builder/shortcode-builder.php:968
1861
  msgid ""
1862
  "Post Status parameters are only available for logged in (admin) users. Non "
1863
  "logged in users will only have access to view content in a 'publish' or "
1864
  "'inherit' state."
1865
  msgstr ""
1866
 
1867
+ #: admin/shortcode-builder/shortcode-builder.php:969
1868
  msgid "Select status of the post."
1869
  msgstr ""
1870
 
1871
+ #: admin/shortcode-builder/shortcode-builder.php:974
1872
  msgid "Published"
1873
  msgstr ""
1874
 
1875
+ #: admin/shortcode-builder/shortcode-builder.php:991
1876
  msgid "Ordering"
1877
  msgstr ""
1878
 
1879
+ #: admin/shortcode-builder/shortcode-builder.php:994
1880
  msgid "Sort posts by Order and Orderby parameters."
1881
  msgstr ""
1882
 
1883
+ #: admin/shortcode-builder/shortcode-builder.php:1026
1884
  msgid "Offset"
1885
  msgstr ""
1886
 
1887
+ #: admin/shortcode-builder/shortcode-builder.php:1029
1888
  msgid "Offset the initial query by <em>'n'</em> number of posts"
1889
  msgstr ""
1890
 
1891
+ #: admin/shortcode-builder/shortcode-builder.php:1042
1892
  msgid "Custom Arguments"
1893
  msgstr ""
1894
 
1895
+ #: admin/shortcode-builder/shortcode-builder.php:1045
1896
  msgid "A semicolon separated list of custom value:pair arguments."
1897
  msgstr ""
1898
 
1899
+ #: admin/shortcode-builder/shortcode-builder.php:1045
1900
  msgid ""
1901
  "Custom Arguments can be used to query by parameters not available in the "
1902
  "Shortcode Builder"
1903
  msgstr ""
1904
 
1905
+ #: admin/shortcode-builder/shortcode-builder.php:1049
1906
  msgid "event_display:upcoming"
1907
  msgstr ""
1908
 
 
 
 
 
1909
  #: admin/views/add-ons.php:7
1910
  msgid ""
1911
  "Add-ons are available to extend and enhance the core functionality of Ajax "
1927
  "\"plugins.php\">WordPress plugin dashboard</a>."
1928
  msgstr ""
1929
 
 
 
 
 
1930
  #: admin/views/extensions.php:6
1931
  msgid ""
1932
  "Free extensions that provide compatibility with popular plugins and core "
1947
  msgid "A collection of everyday shortcode usages and implementation examples"
1948
  msgstr ""
1949
 
 
 
 
 
1950
  #: admin/views/help.php:30
1951
  msgid "Implementation Guide"
1952
  msgstr ""
1970
  msgid "View All Examples"
1971
  msgstr ""
1972
 
1973
+ #: admin/views/licenses.php:2
1974
+ msgid "Pro License"
1975
+ msgstr ""
1976
+
1977
+ #: admin/views/licenses.php:3
1978
+ msgid "Enter your Pro license key to enable updates from the plugins dashboard"
1979
  msgstr ""
1980
 
1981
+ #: admin/views/licenses.php:3
1982
  msgid ""
1983
+ "Enter your license keys below to enable <a href=\"admin.php?page=ajax-load-"
1984
+ "more-add-ons\">add-on</a> updates from the plugins dashboard"
1985
  msgstr ""
1986
 
1987
+ #: admin/views/licenses.php:20
1988
+ msgid "License Key"
1989
+ msgstr ""
1990
+
1991
+ #: admin/views/licenses.php:22
1992
  msgid "License Keys"
1993
  msgstr ""
1994
 
1995
+ #: admin/views/licenses.php:29
1996
  msgid ""
1997
+ "Enter your Ajax Load More Pro license key to receive plugin update "
1998
+ "notifications directly within the <a href=\"plugins.php\">WP Plugins "
1999
+ "dashboard</a>."
2000
  msgstr ""
2001
 
2002
+ #: admin/views/licenses.php:31
2003
+ msgid ""
2004
+ "Enter a key for each of your Ajax Load More add-ons to receive plugin update "
2005
+ "notifications directly within the <a href=\"plugins.php\">WP Plugins "
2006
+ "dashboard</a>."
2007
+ msgstr ""
2008
+
2009
+ #: admin/views/licenses.php:71
2010
  msgid "Don't have a license?"
2011
  msgstr ""
2012
 
2013
+ #: admin/views/licenses.php:72
2014
  msgid ""
2015
  "A valid license is required to activate and receive plugin updates directly "
2016
  "in your WordPress dashboard"
2017
  msgstr ""
2018
 
2019
+ #: admin/views/licenses.php:72
2020
  msgid "Purchase Now"
2021
  msgstr ""
2022
 
2023
+ #: admin/views/licenses.php:78 admin/views/licenses.php:80
2024
  msgid "Enter License Key"
2025
  msgstr ""
2026
 
2027
+ #: admin/views/licenses.php:104
2028
  msgid "Activate License"
2029
  msgstr ""
2030
 
2031
+ #: admin/views/licenses.php:107
2032
  msgid "Deactivate License"
2033
  msgstr ""
2034
 
2035
+ #: admin/views/licenses.php:124
2036
  msgid "You do not have any Ajax Load More add-ons installed"
2037
  msgstr ""
2038
 
2039
+ #: admin/views/licenses.php:124
2040
  msgid "Browse Add-ons"
2041
  msgstr ""
2042
 
2043
+ #: admin/views/licenses.php:134
2044
  msgid "About Licenses"
2045
  msgstr ""
2046
 
2047
+ #: admin/views/licenses.php:137
2048
  msgid ""
2049
  "License keys are found in the purchase receipt email that was sent "
2050
+ "immediately after purchase and in the <a target=\"_blank\" href=\"https://"
2051
+ "connekthq.com/account/\">Account</a> section on our website"
2052
  msgstr ""
2053
 
2054
+ #: admin/views/licenses.php:138
2055
  msgid ""
2056
  "If you cannot locate your key please open a support ticket by filling out "
2057
+ "the <a href=\"https://connekthq.com/contact/\">support form</a> and "
2058
  "reference the email address used when you completed the purchase."
2059
  msgstr ""
2060
 
2061
+ #: admin/views/licenses.php:143
2062
  msgid "Your Account"
2063
  msgstr ""
2064
 
2065
+ #: admin/views/repeater-templates.php:15
2066
+ msgid "The library of editable templates for use within your theme"
2067
  msgstr ""
2068
 
2069
+ #: admin/views/repeater-templates.php:26 admin/views/settings.php:71
2070
+ #: core/functions.php:201
2071
+ msgid "Theme Repeaters"
2072
  msgstr ""
2073
 
2074
+ #: admin/views/repeater-templates.php:99 admin/views/repeater-templates.php:249
2075
+ msgid "Location"
2076
  msgstr ""
2077
 
2078
+ #: admin/views/repeater-templates.php:135
2079
  msgid "Templates Not Found"
2080
  msgstr ""
2081
 
2082
+ #: admin/views/repeater-templates.php:137
2083
  msgid ""
2084
  "Oh no - looks like you haven't added any Theme Repeater templates - you need "
2085
  "to create and upload templates to your theme directory before you can access "
2086
  "them in Ajax Load More"
2087
  msgstr ""
2088
 
2089
+ #: admin/views/repeater-templates.php:140
2090
  msgid "Learn More About Theme Repeaters"
2091
  msgstr ""
2092
 
2093
+ #: admin/views/repeater-templates.php:194
2094
  msgid "Default Template"
2095
  msgstr ""
2096
 
2097
+ #: admin/views/repeater-templates.php:203
2098
  msgid "Enter the HTML and PHP code for the default template"
2099
  msgstr ""
2100
 
2101
+ #: admin/views/repeater-templates.php:233
2102
  msgid "Save Template"
2103
  msgstr ""
2104
 
2105
+ #: admin/views/repeater-templates.php:247
2106
  msgid ""
2107
  "It appears you are loading the <a href=\"https://connekthq.com/plugins/ajax-"
2108
  "load-more/docs/repeater-templates/#default-template\" target=\"_blank"
2111
  "your server."
2112
  msgstr ""
2113
 
2114
+ #: admin/views/repeater-templates.php:329
2115
  msgid "Saving template..."
2116
  msgstr ""
2117
 
2118
+ #: admin/views/repeater-templates.php:400
2119
  msgid "Updating template..."
2120
  msgstr ""
2121
 
2122
+ #: admin/views/repeater-templates.php:472
2123
  msgid "What's a Repeater Template?"
2124
  msgstr ""
2125
 
2126
+ #: admin/views/repeater-templates.php:474
2127
  msgid ""
2128
  "A <a href=\"https://connekthq.com/plugins/ajax-load-more/docs/repeater-"
2129
  "templates/\" target=\"_blank\">Repeater Template</a> is a snippet of code "
2131
  "org/The_Loop\" target=\"_blank\">WordPress loop</a>"
2132
  msgstr ""
2133
 
2134
+ #: admin/views/repeater-templates.php:477
2135
  msgid "Learn More"
2136
  msgstr ""
2137
 
2139
  msgid "A powerful plugin to add infinite scroll functionality to your website."
2140
  msgstr ""
2141
 
2142
+ #: admin/views/settings.php:38
 
 
 
 
2143
  msgid "Don't show me this again!"
2144
  msgstr ""
2145
 
2146
+ #: admin/views/settings.php:49 admin/views/settings.php:52
2147
  msgid "Jump to Setting"
2148
  msgstr ""
2149
 
2150
+ #: admin/views/settings.php:53
2151
  msgid "Global Settings"
2152
  msgstr ""
2153
 
2154
+ #: admin/views/settings.php:54
2155
  msgid "Admin"
2156
  msgstr ""
2157
 
2158
+ #: admin/views/settings.php:61 core/functions.php:117
2159
+ msgid "Layouts"
2160
  msgstr ""
2161
 
2162
+ #: admin/views/settings.php:69
2163
+ msgid "SEO"
2164
  msgstr ""
2165
 
2166
  #: admin/views/shortcode-builder.php:7
2191
  msgid "Copy Shortcode"
2192
  msgstr ""
2193
 
2194
+ #: ajax-load-more.php:152
2195
  msgid "Error creating repeater template directory"
2196
  msgstr ""
2197
 
2198
+ #: core/functions.php:16
2199
+ msgid "Ajax Load More Pro"
2200
  msgstr ""
2201
 
2202
+ #: core/functions.php:17 core/functions.php:48
2203
+ msgid "Improve performance with the Ajax Load More caching engine."
2204
+ msgstr ""
2205
+
2206
+ #: core/functions.php:18 core/functions.php:49
2207
+ msgid ""
2208
+ "The Cache add-on creates static HTML files of Ajax Load More requests then "
2209
+ "delivers those static files to your visitors."
2210
+ msgstr ""
2211
+
2212
+ #: core/functions.php:62
2213
+ msgid ""
2214
+ "Ajax Load More extension for displaying advertisements and call to actions."
2215
+ msgstr ""
2216
+
2217
+ #: core/functions.php:63
2218
+ msgid ""
2219
+ "The Call to Actions add-on will provide the ability to inject a custom CTA "
2220
+ "template within each Ajax Load More loop."
2221
+ msgstr ""
2222
+
2223
+ #: core/functions.php:76
2224
+ msgid "Load blog comments on demand with Ajax Load More."
2225
+ msgstr ""
2226
+
2227
+ #: core/functions.php:77
2228
+ msgid ""
2229
+ "The Comments add-on will display your blog comments with Ajax Load More's "
2230
+ "infinite scroll functionality."
2231
+ msgstr ""
2232
+
2233
+ #: core/functions.php:89
2234
+ msgid "Custom Repeaters"
2235
+ msgstr ""
2236
+
2237
+ #: core/functions.php:90
2238
+ msgid "Extend Ajax Load More with unlimited repeater templates."
2239
+ msgstr ""
2240
+
2241
+ #: core/functions.php:91
2242
+ msgid ""
2243
+ "Create, delete and modify repeater templates as you need them with "
2244
+ "absolutely zero restrictions."
2245
+ msgstr ""
2246
+
2247
+ #: core/functions.php:104
2248
+ msgid "Create custom Ajax Load More filters in seconds."
2249
+ msgstr ""
2250
+
2251
+ #: core/functions.php:105
2252
+ msgid ""
2253
+ "The Filters add-on provides front-end and admin functionality for building "
2254
+ "and managing Ajax filters."
2255
+ msgstr ""
2256
+
2257
+ #: core/functions.php:118
2258
+ msgid "Predefined layouts for repeater templates."
2259
+ msgstr ""
2260
+
2261
+ #: core/functions.php:119
2262
+ msgid ""
2263
+ "The Layouts add-on provides a collection of unique, well designed and fully "
2264
+ "responsive templates."
2265
+ msgstr ""
2266
+
2267
+ #: core/functions.php:132
2268
+ msgid "Load and display multipage WordPress content."
2269
+ msgstr ""
2270
+
2271
+ #: core/functions.php:133
2272
+ msgid ""
2273
+ "The Next Page add-on will provide functionality for infinite scrolling "
2274
+ "paginated posts and pages."
2275
+ msgstr ""
2276
+
2277
+ #: core/functions.php:146
2278
+ msgid "Extend Ajax Load More with a numbered navigation."
2279
+ msgstr ""
2280
+
2281
+ #: core/functions.php:147
2282
+ msgid ""
2283
+ "The Paging add-on will transform the default infinite scroll functionality "
2284
+ "into a robust ajax powered navigation system."
2285
+ msgstr ""
2286
+
2287
+ #: core/functions.php:160
2288
+ msgid "Load an initial set of posts before making Ajax requests to the server."
2289
+ msgstr ""
2290
+
2291
+ #: core/functions.php:161
2292
+ msgid ""
2293
+ "The Preloaded add-on will display content quicker and allow caching of the "
2294
+ "initial query which can reduce stress on your server."
2295
+ msgstr ""
2296
+
2297
+ #: core/functions.php:174
2298
+ msgid "An add-on to enable infinite scrolling of single posts."
2299
+ msgstr ""
2300
+
2301
+ #: core/functions.php:175
2302
+ msgid ""
2303
+ "The Previous Post add-on will load single posts as you scroll and update the "
2304
+ "browser URL to the current post."
2305
+ msgstr ""
2306
+
2307
+ #: core/functions.php:187
2308
+ msgid "Search Engine Optimization"
2309
+ msgstr ""
2310
+
2311
+ #: core/functions.php:188
2312
+ msgid "Generate unique paging URLs with every Ajax Load More query."
2313
+ msgstr ""
2314
+
2315
+ #: core/functions.php:189
2316
+ msgid ""
2317
+ "The SEO add-on will optimize your ajax loaded content for search engines by "
2318
+ "generating unique URLs with every query."
2319
+ msgstr ""
2320
+
2321
+ #: core/functions.php:202
2322
+ msgid "Manage repeater templates within your current theme directory."
2323
+ msgstr ""
2324
+
2325
+ #: core/functions.php:203
2326
+ msgid ""
2327
+ "The Theme Repeater add-on will allow you load, edit and maintain templates "
2328
+ "from your current theme directory."
2329
+ msgstr ""
2330
+
2331
+ #: core/functions.php:216
2332
+ msgid "Enable infinite scrolling of WordPress users."
2333
+ msgstr ""
2334
+
2335
+ #: core/functions.php:217
2336
+ msgid ""
2337
+ "The Users add-on will allow lazy loading of users by role using a "
2338
+ "WP_User_Query."
2339
+ msgstr ""
2340
+
2341
+ #: core/functions.php:973
2342
  msgid "Pages:"
2343
  msgstr ""
2344
 
2345
+ #: vendor/EDD_SL_Plugin_Updater.php:210
2346
  #, php-format
2347
  msgid ""
2348
  "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
2349
  msgstr ""
2350
 
2351
+ #: vendor/EDD_SL_Plugin_Updater.php:218
2352
  #, php-format
2353
  msgid ""
2354
  "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
2355
  "or %5$supdate now%6$s."
2356
  msgstr ""
2357
 
2358
+ #: vendor/EDD_SL_Plugin_Updater.php:408
2359
  msgid "You do not have permission to install plugin updates"
2360
  msgstr ""
2361
 
2362
+ #: vendor/EDD_SL_Plugin_Updater.php:408
2363
  msgid "Error"
2364
  msgstr ""
2365
 
2380
  msgid "Sorry, you are not allowed to install plugins on this site."
2381
  msgstr ""
2382
 
 
 
 
 
 
2383
  #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:234
2384
  msgid "Sorry, you are not allowed to activate plugins on this site."
2385
  msgstr ""