WordPress Infinite Scroll – Ajax Load More - Version 3.5.1

Version Description

  • June 20, 2018 =
  • NEW - Adding columnWidth support for Masonry.
  • NEW - Adding support and backwards compatibility for Custom Repeaters < v2.5
  • UPDATE - Added transition_container_classes parameter option to .alm-paging-content div for paging add-on.
  • FIX - Added fix for WPML taxonomy archive pages.
  • FIX - Fixed issue with transition_container="false" and new loading transition.
  • FIX - Updated ACF Relationship field function to return null if field is not present on the post ID page.
Download this release

Release Info

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

Code changes from version 3.5 to 3.5.1

README.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: dcooney, connekthq
3
  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.5
7
- Stable tag: 3.5.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -369,8 +369,17 @@ How to install Ajax Load More.
369
 
370
  == Changelog ==
371
 
372
- = 3.5.0 - April 17, 2018 =
373
 
 
 
 
 
 
 
 
 
 
 
374
  ### Notice
375
  This Ajax Load More update contains a major change to how the default repeater template is saved and displayed.
376
  On update, your default repeater template will be moved from `/plugins/ajax-load-more/core/repeater` to an `alm_templates` directory created within `/wp-content/uploads`.
3
  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.6
7
+ Stable tag: 3.5.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
369
 
370
  == Changelog ==
371
 
 
372
 
373
+ = 3.5.1 - June 20, 2018 =
374
+ * NEW - Adding `columnWidth` support for Masonry.
375
+ * NEW - Adding support and backwards compatibility for Custom Repeaters < v2.5
376
+ * UPDATE - Added `transition_container_classes` parameter option to .alm-paging-content div for paging add-on.
377
+ * FIX - Added fix for WPML taxonomy archive pages.
378
+ * FIX - Fixed issue with `transition_container="false"` and new loading transition.
379
+ * FIX - Updated ACF Relationship field function to return null if field is not present on the post ID page.
380
+
381
+
382
+ = 3.5.0 - April 17, 2018 =
383
  ### Notice
384
  This Ajax Load More update contains a major change to how the default repeater template is saved and displayed.
385
  On update, your default repeater template will be moved from `/plugins/ajax-load-more/core/repeater` to an `alm_templates` directory created within `/wp-content/uploads`.
admin/admin-functions.php CHANGED
@@ -145,7 +145,7 @@ function alm_get_addons(){
145
  'status' => 'alm_prev_post_license_status',
146
  'settings_field' => 'alm_prev_post_license',
147
  'img' => 'img/add-ons/prev-post-add-on.jpg',
148
- 'url' => 'https://connekthq.com/plugins/ajax-load-more/add-ons/preloaded/',
149
  'item_id' => ALM_PREV_POST_ITEM_NAME
150
  ),
151
  array(
145
  'status' => 'alm_prev_post_license_status',
146
  'settings_field' => 'alm_prev_post_license',
147
  'img' => 'img/add-ons/prev-post-add-on.jpg',
148
+ 'url' => 'https://connekthq.com/plugins/ajax-load-more/add-ons/previous-post/',
149
  'item_id' => ALM_PREV_POST_ITEM_NAME
150
  ),
151
  array(
admin/admin.php CHANGED
@@ -729,23 +729,30 @@ function alm_save_repeater(){
729
 
730
  }
731
 
732
- // Unlimited (Custom Repeaters v2)
733
  elseif($t === 'unlimited'){
734
- if($blog_id > 1){
735
- $dir = ALM_UNLIMITED_PATH. 'repeaters/'. $blog_id;
736
- if( !is_dir($dir) ){
737
- mkdir($dir);
738
- }
739
- $f = ALM_UNLIMITED_PATH. 'repeaters/'. $blog_id .'/'.$n .'.php';
740
- }else{
741
- $f = ALM_UNLIMITED_PATH. 'repeaters/'.$n .'.php';
742
- }
743
-
 
 
 
 
 
744
  }
745
 
746
  // Custom Repeaters v1
747
  else{
 
748
  $f = ALM_REPEATER_PATH. 'repeaters/'.$n .'.php';
 
749
  }
750
 
751
 
@@ -767,6 +774,7 @@ function alm_save_repeater(){
767
  echo '<script>console.log("' .$e->getMessage(). '");</script>';
768
  }
769
  }
 
770
 
771
  // Save to database
772
 
@@ -774,7 +782,7 @@ function alm_save_repeater(){
774
  $data_update = array('repeaterDefault' => "$c", 'pluginVersion' => ALM_VERSION);
775
  $data_where = array('name' => "default");
776
  }
777
- elseif($t === 'unlimited'){ // Unlimited Repeaters
778
  $table_name = $wpdb->prefix . "alm_unlimited";
779
  $data_update = array('repeaterDefault' => "$c", 'alias' => "$a", 'pluginVersion' => ALM_UNLIMITED_VERSION);
780
  $data_where = array('name' => $n);
@@ -793,7 +801,7 @@ function alm_save_repeater(){
793
  echo '<span class="saved-error"><b>'. __('Error Writing File', 'ajax-load-more') .'</b></span><br/>'. __('Something went wrong and the data could not be saved.', 'ajax-load-more');
794
  }
795
 
796
- die();
797
 
798
  }else {
799
  echo __('You don\'t belong here.', 'ajax-load-more');
729
 
730
  }
731
 
732
+ // Custom Repeaters v2
733
  elseif($t === 'unlimited'){
734
+
735
+ // Custom Repeaters 2.5+
736
+ if(ALM_UNLIMITED_VERSION >= '2.5'){
737
+
738
+ // Get path to repeater dir (alm_templates)
739
+ $base_dir = AjaxLoadMore::alm_get_repeater_path();
740
+ AjaxLoadMore::alm_mkdir($base_dir);
741
+ $f = $base_dir .'/'. $n .'.php';
742
+
743
+ } else {
744
+
745
+ $f = ($blog_id > 1) ? ALM_UNLIMITED_PATH. 'repeaters/'. $blog_id .'/'. $n .'.php' : ALM_UNLIMITED_PATH. 'repeaters/'. $n .'.php';
746
+
747
+ }
748
+
749
  }
750
 
751
  // Custom Repeaters v1
752
  else{
753
+
754
  $f = ALM_REPEATER_PATH. 'repeaters/'.$n .'.php';
755
+
756
  }
757
 
758
 
774
  echo '<script>console.log("' .$e->getMessage(). '");</script>';
775
  }
776
  }
777
+
778
 
779
  // Save to database
780
 
782
  $data_update = array('repeaterDefault' => "$c", 'pluginVersion' => ALM_VERSION);
783
  $data_where = array('name' => "default");
784
  }
785
+ elseif($t === 'unlimited'){ // Custom Repeaters v2
786
  $table_name = $wpdb->prefix . "alm_unlimited";
787
  $data_update = array('repeaterDefault' => "$c", 'alias' => "$a", 'pluginVersion' => ALM_UNLIMITED_VERSION);
788
  $data_where = array('name' => $n);
801
  echo '<span class="saved-error"><b>'. __('Error Writing File', 'ajax-load-more') .'</b></span><br/>'. __('Something went wrong and the data could not be saved.', 'ajax-load-more');
802
  }
803
 
804
+ wp_die();
805
 
806
  }else {
807
  echo __('You don\'t belong here.', 'ajax-load-more');
admin/dist/css/admin.css CHANGED
@@ -403,7 +403,7 @@
403
  position: relative;
404
  overflow-x: hidden;
405
  overflow-y: auto;
406
- -webkit-tap-highlight-color: transparent; }
407
 
408
  .select2-result-sub {
409
  margin: 0;
@@ -940,21 +940,21 @@ a.layout-hover:hover img {
940
 
941
  /* Expand Collapse Headings */
942
  .ajax-load-more h3.heading {
943
- font-weight: 700;
944
- padding: 15px 10px 15px 40px !important;
945
  line-height: normal !important;
946
  margin: 0 !important;
947
  color: #555;
948
  cursor: pointer;
949
  width: 100%;
950
  position: relative;
951
- font-size: 17px;
952
  background: #f7f7f7;
953
  border-bottom: 1px solid #e1e1e1; }
954
 
955
  .ajax-load-more h3.heading:hover:after,
956
  .ajax-load-more .add-on h3.heading:hover:after {
957
- color: #f05452; }
958
 
959
  .ajax-load-more h3.heading:hover {
960
  color: #222; }
@@ -962,11 +962,10 @@ a.layout-hover:hover img {
962
  .ajax-load-more h3.heading:after {
963
  font-family: 'FontAwesome';
964
  content: '\f056';
965
- color: #ccc;
966
- font-size: 18px;
967
  position: absolute;
968
  left: 13px;
969
- top: 17px;
970
  height: 20px;
971
  width: 20px; }
972
 
@@ -977,7 +976,7 @@ a.layout-hover:hover img {
977
  border-bottom-color: transparent; }
978
 
979
  .ajax-load-more .add-on h3.heading:after {
980
- color: #999; }
981
 
982
  .ajax-load-more .add-on h3.heading {
983
  background-color: #fefeed; }
@@ -1391,7 +1390,7 @@ a.layout-hover:hover img {
1391
  /* --------------------------------------------------------------------------- */
1392
  .ajax-load-more .row {
1393
  padding: 0 !important;
1394
- margin: 20px 0 0;
1395
  height: auto;
1396
  width: 100%;
1397
  display: block;
@@ -1483,26 +1482,27 @@ a.layout-hover:hover img {
1483
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
1484
 
1485
  hr.indented {
1486
- width: calc(100% - 72px);
1487
- margin-left: 36px; }
1488
 
1489
  .ajax-load-more .section-title {
1490
  float: left;
1491
- padding: 22px 0 20px 36px;
1492
- width: 40%; }
1493
 
1494
  .ajax-load-more .section-title.full {
1495
  width: 100%;
1496
  float: none; }
1497
 
1498
  .ajax-load-more .section-title h4 {
1499
- font-size: 16px;
1500
- margin-bottom: 13px; }
 
1501
 
1502
  .ajax-load-more .section-title p,
1503
  .ajax-load-more .wrap p.descriptor {
1504
- font-size: 13px;
1505
- line-height: 20px;
1506
  color: #999; }
1507
 
1508
  .ajax-load-more .wrap p.descriptor {
@@ -1576,10 +1576,10 @@ hr.indented {
1576
  display: none; }
1577
 
1578
  .ajax-load-more .row .wrap {
1579
- padding: 20px 0 0 5%;
1580
  margin: 0;
1581
  border: none;
1582
- width: 58%;
1583
  float: left;
1584
  position: relative; }
1585
 
@@ -2328,7 +2328,7 @@ span.cnkt-button.installed i,
2328
  .license-title {
2329
  border-radius: 3px 3px 0 0;
2330
  border: 1px solid #e1e1e1;
2331
- background-color: #efefef;
2332
  position: relative; }
2333
 
2334
  .license-title .status {
@@ -2422,7 +2422,7 @@ span.cnkt-button.installed i,
2422
  padding: 15px;
2423
  border: 1px solid #e1e1e1;
2424
  border-top: none;
2425
- background-color: #f7f7f7;
2426
  border-radius: 0 0 3px 3px; }
2427
 
2428
  .license-wrap label {
@@ -2433,7 +2433,7 @@ span.cnkt-button.installed i,
2433
  background-color: #fff;
2434
  margin: 0 0 15px;
2435
  width: 100% !important;
2436
- border-color: #ccc;
2437
  padding: 14px; }
2438
 
2439
  .license-wrap input[type=text]:focus {
@@ -2763,7 +2763,7 @@ span.cnkt-button.installed i,
2763
  overflow: visible; }
2764
 
2765
  .admin.ajax-load-more .row.unlimited:first-of-type {
2766
- margin-top: 15px; }
2767
 
2768
  .repeaters .row,
2769
  .shortcode-builder .row {
@@ -2820,7 +2820,7 @@ span.cnkt-button.installed i,
2820
 
2821
  .alm-add-template {
2822
  text-align: center;
2823
- margin: 15px 0 0 !important;
2824
  display: block;
2825
  font-size: 15px !important;
2826
  font-weight: 700;
@@ -2837,7 +2837,7 @@ span.cnkt-button.installed i,
2837
  border-radius: 3px;
2838
  text-decoration: none;
2839
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2840
- box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2841
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4); }
2842
 
2843
  .alm-add-template a.active {
@@ -2852,12 +2852,12 @@ span.cnkt-button.installed i,
2852
  border-color: #ff5a58;
2853
  color: #fff;
2854
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2855
- box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2856
  text-shadow: none; }
2857
 
2858
  .alm-add-template a:focus {
2859
  -webkit-box-shadow: none;
2860
- box-shadow: none;
2861
  text-shadow: none; }
2862
 
2863
  .alm-add-template a:active {
@@ -2865,7 +2865,7 @@ span.cnkt-button.installed i,
2865
  background: #ec4745;
2866
  border-color: #ec4745;
2867
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2868
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2869
  text-shadow: none; }
2870
 
2871
  .alm-add-template a i {
@@ -2887,7 +2887,6 @@ span.cnkt-button.installed i,
2887
 
2888
  /*
2889
  * Cache
2890
- *
2891
  * @since 2.6.0
2892
  */
2893
  .generate-id {
@@ -3192,7 +3191,7 @@ p.cache-stats {
3192
  border-bottom: 1px solid #e1e1e1;
3193
  background-color: #f7f7f7;
3194
  border-radius: 2px 2px 0 0;
3195
- color: #23282d;
3196
  position: relative; }
3197
  #alm-shortcode-builder-form .shortcode-parameter-wrap h2 i {
3198
  position: absolute;
@@ -3227,10 +3226,9 @@ p.cache-stats {
3227
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1); }
3228
 
3229
  /*
3230
- * Repeater Template options dropdown
3231
- *
3232
- * @since 2.4.1
3233
- */
3234
  .ajax-load-more .row.template {
3235
  position: relative; }
3236
 
@@ -3239,8 +3237,8 @@ p.cache-stats {
3239
 
3240
  .alm-drop-btn.alm-repeater-options {
3241
  position: absolute;
3242
- top: -43px;
3243
- right: 11px;
3244
  z-index: 99; }
3245
 
3246
  .alm-drop-btn a.target {
@@ -3248,7 +3246,7 @@ p.cache-stats {
3248
  position: relative;
3249
  color: #999;
3250
  text-decoration: none !important;
3251
- padding: 8px 12px 8px 32px;
3252
  border: 1px solid #e1e1e1;
3253
  border-radius: 3px;
3254
  font-size: 13px;
@@ -3259,7 +3257,7 @@ p.cache-stats {
3259
 
3260
  .alm-drop-btn a.target > i {
3261
  color: #999;
3262
- font-size: 16px;
3263
  position: absolute;
3264
  top: 9px;
3265
  left: 10px; }
@@ -3279,8 +3277,8 @@ p.cache-stats {
3279
  .alm-repeater-options.active a.target {
3280
  background-color: #fff;
3281
  border-color: #c9c9c9;
3282
- -webkit-box-shadow: inset 0 1px 1px #ccc !important;
3283
- box-shadow: inset 0 1px 1px #ccc !important; }
3284
 
3285
  .alm-repeater-options.active a.target,
3286
  .alm-repeater-options.active a.target i.fa-cog {
@@ -3320,7 +3318,7 @@ p.cache-stats {
3320
  .alm-drop-btn.alm-layout-selection li.type .col-select a {
3321
  width: 32px;
3322
  height: 30px;
3323
- margin: 3px 3px 0 0;
3324
  padding: 0;
3325
  float: left;
3326
  text-align: center;
@@ -3362,16 +3360,17 @@ p.cache-stats {
3362
  .alm-drop-btn.alm-layout-selection a.external,
3363
  .alm-drop-btn.alm-layout-selection a.add-on {
3364
  background-color: #f7f7f7;
3365
- padding: 13px 10px 13px 42px;
3366
  display: block; }
3367
 
3368
  .alm-drop-btn.alm-layout-selection a.external {
3369
- padding: 0 10px 0 42px; }
3370
 
3371
  .alm-drop-btn.alm-layout-selection a.external i {
3372
  color: #999;
3373
  border-color: #ccc;
3374
- top: 10px; }
 
3375
 
3376
  .alm-drop-btn.alm-layout-selection a.external:hover i {
3377
  color: #666; }
@@ -3413,8 +3412,8 @@ p.cache-stats {
3413
  color: #222;
3414
  background-color: #fff;
3415
  border-color: #ccc;
3416
- -webkit-box-shadow: 0 0 3px #efefef;
3417
- box-shadow: 0 0 3px #efefef;
3418
  opacity: 1; }
3419
 
3420
  .alm-drop-btn.alm-layout-selection.active a.target,
@@ -3489,10 +3488,10 @@ span.dismiss a {
3489
  -webkit-box-shadow: 0 0 4px #ccc;
3490
  box-shadow: 0 0 4px #ccc;
3491
  padding: 8px;
3492
- width: 260px; }
3493
 
3494
  .alm-layout-selection .alm-dropdown .alm-drop-inner {
3495
- width: 280px; }
3496
 
3497
  .alm-drop-inner:after,
3498
  .alm-drop-inner:before {
@@ -3523,8 +3522,6 @@ span.dismiss a {
3523
  .alm-dropdown ul {
3524
  padding: 0;
3525
  margin: 0;
3526
- border-radius: 2px;
3527
- border: 1px solid #efefef;
3528
  overflow: hidden; }
3529
 
3530
  .alm-dropdown ul li {
@@ -3543,7 +3540,7 @@ span.dismiss a {
3543
  border: none; }
3544
 
3545
  .alm-dropdown ul li a {
3546
- padding: 0 10px 0 42px;
3547
  line-height: 37px;
3548
  height: 36px;
3549
  display: block;
@@ -3568,7 +3565,6 @@ span.dismiss a {
3568
  width: 32px;
3569
  height: 16px;
3570
  line-height: 16px;
3571
- border-right: 1px solid #e1e1e1;
3572
  display: inline-block;
3573
  text-align: center; }
3574
 
@@ -3909,7 +3905,7 @@ span.dismiss a {
3909
 
3910
  .ajax-load-more .alm-toggle-switch li a {
3911
  display: block;
3912
- padding: 16px 26px;
3913
  line-height: 1;
3914
  border-radius: 2px;
3915
  text-decoration: none;
403
  position: relative;
404
  overflow-x: hidden;
405
  overflow-y: auto;
406
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
407
 
408
  .select2-result-sub {
409
  margin: 0;
940
 
941
  /* Expand Collapse Headings */
942
  .ajax-load-more h3.heading {
943
+ font-weight: 600;
944
+ padding: 15px 10px 15px 38px !important;
945
  line-height: normal !important;
946
  margin: 0 !important;
947
  color: #555;
948
  cursor: pointer;
949
  width: 100%;
950
  position: relative;
951
+ font-size: 16px;
952
  background: #f7f7f7;
953
  border-bottom: 1px solid #e1e1e1; }
954
 
955
  .ajax-load-more h3.heading:hover:after,
956
  .ajax-load-more .add-on h3.heading:hover:after {
957
+ color: #ccc; }
958
 
959
  .ajax-load-more h3.heading:hover {
960
  color: #222; }
962
  .ajax-load-more h3.heading:after {
963
  font-family: 'FontAwesome';
964
  content: '\f056';
965
+ color: #e1e1e1;
 
966
  position: absolute;
967
  left: 13px;
968
+ top: 16px;
969
  height: 20px;
970
  width: 20px; }
971
 
976
  border-bottom-color: transparent; }
977
 
978
  .ajax-load-more .add-on h3.heading:after {
979
+ color: #e8e8d3; }
980
 
981
  .ajax-load-more .add-on h3.heading {
982
  background-color: #fefeed; }
1390
  /* --------------------------------------------------------------------------- */
1391
  .ajax-load-more .row {
1392
  padding: 0 !important;
1393
+ margin: 10px 0 0;
1394
  height: auto;
1395
  width: 100%;
1396
  display: block;
1482
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
1483
 
1484
  hr.indented {
1485
+ width: calc(100% - 40px);
1486
+ margin-left: 20px; }
1487
 
1488
  .ajax-load-more .section-title {
1489
  float: left;
1490
+ padding: 20px 0 20px 20px;
1491
+ width: 35%; }
1492
 
1493
  .ajax-load-more .section-title.full {
1494
  width: 100%;
1495
  float: none; }
1496
 
1497
  .ajax-load-more .section-title h4 {
1498
+ font-size: 15px;
1499
+ font-weight: 600;
1500
+ margin-bottom: 15px; }
1501
 
1502
  .ajax-load-more .section-title p,
1503
  .ajax-load-more .wrap p.descriptor {
1504
+ font-size: 14px;
1505
+ line-height: 22px;
1506
  color: #999; }
1507
 
1508
  .ajax-load-more .wrap p.descriptor {
1576
  display: none; }
1577
 
1578
  .ajax-load-more .row .wrap {
1579
+ padding: 20px 20px 0 5%;
1580
  margin: 0;
1581
  border: none;
1582
+ width: 65%;
1583
  float: left;
1584
  position: relative; }
1585
 
2328
  .license-title {
2329
  border-radius: 3px 3px 0 0;
2330
  border: 1px solid #e1e1e1;
2331
+ background-color: #f7f7f7;
2332
  position: relative; }
2333
 
2334
  .license-title .status {
2422
  padding: 15px;
2423
  border: 1px solid #e1e1e1;
2424
  border-top: none;
2425
+ background-color: #fff;
2426
  border-radius: 0 0 3px 3px; }
2427
 
2428
  .license-wrap label {
2433
  background-color: #fff;
2434
  margin: 0 0 15px;
2435
  width: 100% !important;
2436
+ border-color: #e7e7e7;
2437
  padding: 14px; }
2438
 
2439
  .license-wrap input[type=text]:focus {
2763
  overflow: visible; }
2764
 
2765
  .admin.ajax-load-more .row.unlimited:first-of-type {
2766
+ margin-top: 10px; }
2767
 
2768
  .repeaters .row,
2769
  .shortcode-builder .row {
2820
 
2821
  .alm-add-template {
2822
  text-align: center;
2823
+ margin: 20px 0 5px !important;
2824
  display: block;
2825
  font-size: 15px !important;
2826
  font-weight: 700;
2837
  border-radius: 3px;
2838
  text-decoration: none;
2839
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2840
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2841
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4); }
2842
 
2843
  .alm-add-template a.active {
2852
  border-color: #ff5a58;
2853
  color: #fff;
2854
  -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2855
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2856
  text-shadow: none; }
2857
 
2858
  .alm-add-template a:focus {
2859
  -webkit-box-shadow: none;
2860
+ box-shadow: none;
2861
  text-shadow: none; }
2862
 
2863
  .alm-add-template a:active {
2865
  background: #ec4745;
2866
  border-color: #ec4745;
2867
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2868
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2869
  text-shadow: none; }
2870
 
2871
  .alm-add-template a i {
2887
 
2888
  /*
2889
  * Cache
 
2890
  * @since 2.6.0
2891
  */
2892
  .generate-id {
3191
  border-bottom: 1px solid #e1e1e1;
3192
  background-color: #f7f7f7;
3193
  border-radius: 2px 2px 0 0;
3194
+ color: #555;
3195
  position: relative; }
3196
  #alm-shortcode-builder-form .shortcode-parameter-wrap h2 i {
3197
  position: absolute;
3226
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1); }
3227
 
3228
  /*
3229
+ * Repeater Template options dropdown
3230
+ * @since 2.4.1
3231
+ */
 
3232
  .ajax-load-more .row.template {
3233
  position: relative; }
3234
 
3237
 
3238
  .alm-drop-btn.alm-repeater-options {
3239
  position: absolute;
3240
+ top: -42px;
3241
+ right: 7px;
3242
  z-index: 99; }
3243
 
3244
  .alm-drop-btn a.target {
3246
  position: relative;
3247
  color: #999;
3248
  text-decoration: none !important;
3249
+ padding: 8px 12px 8px 30px;
3250
  border: 1px solid #e1e1e1;
3251
  border-radius: 3px;
3252
  font-size: 13px;
3257
 
3258
  .alm-drop-btn a.target > i {
3259
  color: #999;
3260
+ font-size: 15px;
3261
  position: absolute;
3262
  top: 9px;
3263
  left: 10px; }
3277
  .alm-repeater-options.active a.target {
3278
  background-color: #fff;
3279
  border-color: #c9c9c9;
3280
+ -webkit-box-shadow: inset 0 1px 1px #efefef !important;
3281
+ box-shadow: inset 0 1px 1px #efefef !important; }
3282
 
3283
  .alm-repeater-options.active a.target,
3284
  .alm-repeater-options.active a.target i.fa-cog {
3318
  .alm-drop-btn.alm-layout-selection li.type .col-select a {
3319
  width: 32px;
3320
  height: 30px;
3321
+ margin: 3px 0 0 0;
3322
  padding: 0;
3323
  float: left;
3324
  text-align: center;
3360
  .alm-drop-btn.alm-layout-selection a.external,
3361
  .alm-drop-btn.alm-layout-selection a.add-on {
3362
  background-color: #f7f7f7;
3363
+ padding: 13px 10px 13px 38px;
3364
  display: block; }
3365
 
3366
  .alm-drop-btn.alm-layout-selection a.external {
3367
+ padding: 0 10px 0 38px; }
3368
 
3369
  .alm-drop-btn.alm-layout-selection a.external i {
3370
  color: #999;
3371
  border-color: #ccc;
3372
+ top: 11px;
3373
+ width: 38px; }
3374
 
3375
  .alm-drop-btn.alm-layout-selection a.external:hover i {
3376
  color: #666; }
3412
  color: #222;
3413
  background-color: #fff;
3414
  border-color: #ccc;
3415
+ -webkit-box-shadow: 0 0 3px #e7e7e7;
3416
+ box-shadow: 0 0 3px #e7e7e7;
3417
  opacity: 1; }
3418
 
3419
  .alm-drop-btn.alm-layout-selection.active a.target,
3488
  -webkit-box-shadow: 0 0 4px #ccc;
3489
  box-shadow: 0 0 4px #ccc;
3490
  padding: 8px;
3491
+ width: 220px; }
3492
 
3493
  .alm-layout-selection .alm-dropdown .alm-drop-inner {
3494
+ width: 250px; }
3495
 
3496
  .alm-drop-inner:after,
3497
  .alm-drop-inner:before {
3522
  .alm-dropdown ul {
3523
  padding: 0;
3524
  margin: 0;
 
 
3525
  overflow: hidden; }
3526
 
3527
  .alm-dropdown ul li {
3540
  border: none; }
3541
 
3542
  .alm-dropdown ul li a {
3543
+ padding: 0 10px 0 32px;
3544
  line-height: 37px;
3545
  height: 36px;
3546
  display: block;
3565
  width: 32px;
3566
  height: 16px;
3567
  line-height: 16px;
 
3568
  display: inline-block;
3569
  text-align: center; }
3570
 
3905
 
3906
  .ajax-load-more .alm-toggle-switch li a {
3907
  display: block;
3908
+ padding: 15px 22px;
3909
  line-height: 1;
3910
  border-radius: 2px;
3911
  text-decoration: none;
admin/includes/components/layout-list.php CHANGED
@@ -1,6 +1,6 @@
1
  <div class="clear"></div>
2
  <div class="alm-drop-btn alm-layout-selection">
3
- <a href="javascript:void(0);" class="target"><i class="fa fa-caret-down"></i> <?php _e('Apply Layout', 'ajax-load-more'); ?></a>
4
  <div class="alm-dropdown">
5
  <div class="alm-drop-inner">
6
  <ul>
1
  <div class="clear"></div>
2
  <div class="alm-drop-btn alm-layout-selection">
3
+ <a href="javascript:void(0);" class="target"><i class="fa fa-caret-down"></i> <?php _e('Layouts', 'ajax-load-more'); ?></a>
4
  <div class="alm-dropdown">
5
  <div class="alm-drop-inner">
6
  <ul>
admin/includes/components/repeater-options.php CHANGED
@@ -3,7 +3,7 @@
3
  <div class="alm-dropdown">
4
  <div class="alm-drop-inner">
5
  <ul>
6
- <li class="option-update"><a href="javascript:void(0);" title="<?php _e('Update Template from Database', 'ajax-load-more'); ?>"><i class="fa fa-download"></i> <?php _e('Update Template from Database', 'ajax-load-more'); ?></a></li>
7
  <li class="copy"><a href="javascript:void(0);" title="<?php _e('Copy Template Data', 'ajax-load-more'); ?>"><i class="fa fa-file"></i> <?php _e('Copy Template Data', 'ajax-load-more'); ?></a></li>
8
  </ul>
9
  </div>
3
  <div class="alm-dropdown">
4
  <div class="alm-drop-inner">
5
  <ul>
6
+ <li class="option-update"><a href="javascript:void(0);" title="<?php _e('Update Template from Database', 'ajax-load-more'); ?>"><i class="fa fa-download"></i> <?php _e('Update from Database', 'ajax-load-more'); ?></a></li>
7
  <li class="copy"><a href="javascript:void(0);" title="<?php _e('Copy Template Data', 'ajax-load-more'); ?>"><i class="fa fa-file"></i> <?php _e('Copy Template Data', 'ajax-load-more'); ?></a></li>
8
  </ul>
9
  </div>
admin/includes/cta/about.php CHANGED
@@ -1,7 +1,8 @@
1
  <div class="cta">
2
  <h3><?php _e('Other Plugins', 'ajax-load-more'); ?></h3>
3
  <div class="cta-inner">
4
- <ul class="project-listing">
 
5
  <li>
6
  <a target="blank" href="https://connekthq.com/plugins/broadcast/">
7
  <img src="<?php echo ALM_ADMIN_URL; ?>img/logos/broadcast-48x48.png" alt="">
@@ -9,6 +10,7 @@
9
  <span>Manage and display WordPress call to actions with Broadcast.</span>
10
  </a>
11
  </li>
 
12
  <li>
13
  <a target="blank" href="https://connekthq.com/plugins/easy-query/">
14
  <img src="<?php echo ALM_ADMIN_URL; ?>img/logos/eq-48x48.png" alt="">
1
  <div class="cta">
2
  <h3><?php _e('Other Plugins', 'ajax-load-more'); ?></h3>
3
  <div class="cta-inner">
4
+ <ul class="project-listing"><!--
5
+
6
  <li>
7
  <a target="blank" href="https://connekthq.com/plugins/broadcast/">
8
  <img src="<?php echo ALM_ADMIN_URL; ?>img/logos/broadcast-48x48.png" alt="">
10
  <span>Manage and display WordPress call to actions with Broadcast.</span>
11
  </a>
12
  </li>
13
+ -->
14
  <li>
15
  <a target="blank" href="https://connekthq.com/plugins/easy-query/">
16
  <img src="<?php echo ALM_ADMIN_URL; ?>img/logos/eq-48x48.png" alt="">
admin/shortcode-builder/js/shortcode-builder.js CHANGED
@@ -47,7 +47,7 @@ jQuery(document).ready(function($) {
47
 
48
 
49
 
50
- //
51
  var total_tax_query = 0,
52
  max_tax_query = 2;
53
  $('#add-tax-query').on('click', function(e){
@@ -1019,10 +1019,14 @@ jQuery(document).ready(function($) {
1019
  $('.masonry-options').slideDown(150, 'alm_easeInOutQuad');
1020
  $('.masonry-options-hide').slideUp(150, 'alm_easeInOutQuad');
1021
  var masonry_selector = $('.transition input#masonry-item').val();
 
1022
  var masonry_animation = $('input[name=masonry-animation]:checked').val();
1023
  var masonry_horizontalorder = $('input[name=masonry-horizontalorder]:checked').val();
1024
  if(masonry_selector !== ''){
1025
  output += ' masonry_selector="'+ masonry_selector +'"';
 
 
 
1026
  }
1027
  if(masonry_animation !== '' && masonry_animation !== 'default'){
1028
  output += ' masonry_animation="'+ masonry_animation +'"';
47
 
48
 
49
 
50
+ // Taxonomy Query
51
  var total_tax_query = 0,
52
  max_tax_query = 2;
53
  $('#add-tax-query').on('click', function(e){
1019
  $('.masonry-options').slideDown(150, 'alm_easeInOutQuad');
1020
  $('.masonry-options-hide').slideUp(150, 'alm_easeInOutQuad');
1021
  var masonry_selector = $('.transition input#masonry-item').val();
1022
+ var masonry_columnwidth = $('.transition input#masonry-columnwidth').val();
1023
  var masonry_animation = $('input[name=masonry-animation]:checked').val();
1024
  var masonry_horizontalorder = $('input[name=masonry-horizontalorder]:checked').val();
1025
  if(masonry_selector !== ''){
1026
  output += ' masonry_selector="'+ masonry_selector +'"';
1027
+ }
1028
+ if(masonry_columnwidth !== ''){
1029
+ output += ' masonry_columnwidth="'+ masonry_columnwidth +'"';
1030
  }
1031
  if(masonry_animation !== '' && masonry_animation !== 'default'){
1032
  output += ' masonry_animation="'+ masonry_animation +'"';
admin/shortcode-builder/shortcode-builder.php CHANGED
@@ -317,6 +317,21 @@
317
  <div class="clear"></div>
318
  <hr class="indented" />
319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  <div class="section-title">
321
  <h4><?php _e('Animation Type', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('All Masonry animations include a fade-in effect as items are loaded','ajax-load-more'); ?>."></a></h4>
322
  <p><?php _e('Select a loading transition for Masonry items', 'ajax-load-more'); ?>.</p>
317
  <div class="clear"></div>
318
  <hr class="indented" />
319
 
320
+ <div class="section-title">
321
+ <h4><?php _e('Column Width', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('If columnWidth is not set, Masonry will use the outer width of the first Item Selector','ajax-load-more'); ?>."></a></h4>
322
+ <p><?php _e('Enter the <a href="https://masonry.desandro.com/options.html#columnwidth" target="_blank">columnWidth</a> of the masonry items', 'ajax-load-more'); ?>.<br/>
323
+ e.g <span>80</span>
324
+ </p>
325
+ </div>
326
+ <div class="wrap">
327
+ <div class="inner">
328
+ <input type="number" class="alm_element numbers-only" name="masonry-columnwidth" id="masonry-columnwidth" placeholder="80" min="0" step="1">
329
+ </div>
330
+ </div>
331
+
332
+ <div class="clear"></div>
333
+ <hr class="indented" />
334
+
335
  <div class="section-title">
336
  <h4><?php _e('Animation Type', 'ajax-load-more'); ?> <a href="javascript:void(0)" class="fa fa-question-circle tooltip" title="<?php _e('All Masonry animations include a fade-in effect as items are loaded','ajax-load-more'); ?>."></a></h4>
337
  <p><?php _e('Select a loading transition for Masonry items', 'ajax-load-more'); ?>.</p>
admin/src/scss/_variables.scss CHANGED
@@ -1 +1,2 @@
1
- $gutter: 25px;
 
1
+ $gutter: 25px;
2
+ $grey: #555;
admin/src/scss/admin.scss CHANGED
@@ -263,34 +263,32 @@ a.layout-hover{
263
 
264
  /* Expand Collapse Headings */
265
  .ajax-load-more h3.heading{
266
- font-weight: 700;
267
- padding: 15px 10px 15px 40px !important;
268
  line-height: normal !important;
269
  margin: 0 !important;
270
- color: #555;
271
  cursor: pointer;
272
  width: 100%;
273
  position: relative;
274
- font-size: 17px;
275
  background: #f7f7f7;
276
- border-bottom: 1px solid #e1e1e1;
277
  }
278
  .ajax-load-more h3.heading:hover:after,
279
  .ajax-load-more .add-on h3.heading:hover:after{
280
- color: #f05452;
281
- }
282
  .ajax-load-more h3.heading:hover{
283
  color: #222;
284
  }
285
-
286
  .ajax-load-more h3.heading:after{
287
  font-family: 'FontAwesome';
288
  content: '\f056';
289
- color: #ccc;
290
- font-size: 18px;
291
  position: absolute;
292
  left: 13px;
293
- top: 17px;
294
  height: 20px;
295
  width: 20px;
296
  }
@@ -302,7 +300,7 @@ a.layout-hover{
302
  }
303
 
304
  .ajax-load-more .add-on h3.heading:after{
305
- color: #999;
306
  }
307
  .ajax-load-more .add-on h3.heading{
308
  background-color: #fefeed;
@@ -753,7 +751,7 @@ a.layout-hover{
753
 
754
  .ajax-load-more .row{
755
  padding: 0 !important;
756
- margin: 20px 0 0;
757
  height: auto;
758
  width: 100%;
759
  display: block;
@@ -855,14 +853,13 @@ a.layout-hover{
855
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
856
  }
857
  hr.indented{ // Indented as fake padding in shortcode builder
858
- width: calc(100% - 72px);
859
- margin-left: 36px;
860
  }
861
-
862
  .ajax-load-more .section-title {
863
  float: left;
864
- padding: 22px 0 20px 36px;
865
- width: 40%;
866
  }
867
 
868
  .ajax-load-more .section-title.full {
@@ -870,13 +867,14 @@ hr.indented{ // Indented as fake padding in shortcode builder
870
  float: none;
871
  }
872
  .ajax-load-more .section-title h4{
873
- font-size: 16px;
874
- margin-bottom: 13px;
 
875
  }
876
  .ajax-load-more .section-title p,
877
  .ajax-load-more .wrap p.descriptor{
878
- font-size: 13px;
879
- line-height: 20px;
880
  color: #999;
881
  }
882
  .ajax-load-more .wrap p.descriptor{
@@ -945,7 +943,7 @@ hr.indented{ // Indented as fake padding in shortcode builder
945
  .cta_template_wrap,
946
  .restapi_options,
947
  .filters_options,
948
- .next-page-content,
949
  .acf-options,
950
  .masonry-options,
951
  .progress-bar-options{
@@ -953,10 +951,10 @@ hr.indented{ // Indented as fake padding in shortcode builder
953
  }
954
 
955
  .ajax-load-more .row .wrap{
956
- padding: 20px 0 0 5%;
957
  margin: 0;
958
  border: none;
959
- width: 58%;
960
  float: left;
961
  position: relative;
962
  }
@@ -1748,7 +1746,7 @@ table.highlight{
1748
  .license-title{
1749
  border-radius: 3px 3px 0 0;
1750
  border: 1px solid #e1e1e1;
1751
- background-color: #efefef;
1752
  position: relative;
1753
  }
1754
  .license-title .status{
@@ -1823,7 +1821,7 @@ table.highlight{
1823
  display: none;
1824
  }
1825
  .license-btn.hide{
1826
- display: none;
1827
  }
1828
  .license-btn-wrap{
1829
  display: block;
@@ -1835,7 +1833,7 @@ table.highlight{
1835
  line-height: 18px;
1836
  }
1837
  .license-btn-wrap .msg strong{
1838
- display: block;
1839
  }
1840
  .license-btn-wrap .msg em{
1841
  opacity: 0.7;
@@ -1849,7 +1847,7 @@ table.highlight{
1849
  padding: 15px;
1850
  border: 1px solid #e1e1e1;
1851
  border-top: none;
1852
- background-color: #f7f7f7;
1853
  border-radius: 0 0 3px 3px;
1854
  }
1855
  .license-wrap label{
@@ -1860,7 +1858,7 @@ table.highlight{
1860
  background-color: #fff;
1861
  margin: 0 0 15px;
1862
  width: 100% !important;
1863
- border-color: #ccc;
1864
  padding: 14px;
1865
  }
1866
  .license-wrap input[type=text]:focus{
@@ -2210,7 +2208,7 @@ table.highlight{
2210
  overflow: visible;
2211
  }
2212
  .admin.ajax-load-more .row.unlimited:first-of-type{
2213
- margin-top: 15px;
2214
  }
2215
 
2216
  .repeaters .row,
@@ -2268,7 +2266,7 @@ table.highlight{
2268
 
2269
  .alm-add-template{
2270
  text-align: center;
2271
- margin: 15px 0 0 !important;
2272
  display: block;
2273
  font-size: 15px !important;
2274
  font-weight: 700;
@@ -2282,12 +2280,8 @@ table.highlight{
2282
  display: inline-block;
2283
  padding: 11px 16px 13px;
2284
  line-height: 1;
2285
- -webkit-border-radius: 3px;
2286
- -moz-border-radius: 3px;
2287
  border-radius: 3px;
2288
  text-decoration: none;
2289
- -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2290
- -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2291
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2292
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
2293
  }
@@ -2302,14 +2296,10 @@ table.highlight{
2302
  background: #ff5a58;
2303
  border-color: #ff5a58;
2304
  color: #fff;
2305
- -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2306
- -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2307
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2308
  text-shadow: none;
2309
  }
2310
  .alm-add-template a:focus{
2311
- -webkit-box-shadow: none;
2312
- -moz-box-shadow: none;
2313
  box-shadow: none;
2314
  text-shadow: none;
2315
  }
@@ -2317,8 +2307,6 @@ table.highlight{
2317
  color: #fff;
2318
  background: #ec4745;
2319
  border-color: #ec4745;
2320
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2321
- -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2322
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2323
  text-shadow: none;
2324
  }
@@ -2335,6 +2323,7 @@ table.highlight{
2335
  .alm-add-template a:active i{
2336
  color: #fff;
2337
  }
 
2338
  .spacer{
2339
  height:10px;
2340
  clear:both;
@@ -2344,7 +2333,6 @@ table.highlight{
2344
 
2345
  /*
2346
  * Cache
2347
- *
2348
  * @since 2.6.0
2349
  */
2350
 
@@ -2691,7 +2679,7 @@ p.cache-stats{
2691
  border-bottom: 1px solid #e1e1e1;
2692
  background-color: #f7f7f7;
2693
  border-radius: 2px 2px 0 0;
2694
- color: #23282d;
2695
  position: relative;
2696
  i{
2697
  position: absolute;
@@ -2728,13 +2716,12 @@ p.cache-stats{
2728
 
2729
 
2730
  /*
2731
- * Repeater Template options dropdown
2732
- *
2733
- * @since 2.4.1
2734
- */
2735
 
2736
  .ajax-load-more .row.template{
2737
- position: relative;
2738
  }
2739
  .ajax-load-more .row.template:hover .alm-repeater-options{
2740
  opacity: 1;
@@ -2742,16 +2729,16 @@ p.cache-stats{
2742
 
2743
  .alm-drop-btn.alm-repeater-options{
2744
  position: absolute;
2745
- top: -43px;
2746
- right: 11px;
2747
- z-index:99;
2748
  }
2749
  .alm-drop-btn a.target{
2750
  font-weight: 500;
2751
  position: relative;
2752
  color: #999;
2753
  text-decoration: none !important;
2754
- padding: 8px 12px 8px 32px;
2755
  border: 1px solid #e1e1e1;
2756
  border-radius: 3px;
2757
  font-size: 13px;
@@ -2761,7 +2748,7 @@ p.cache-stats{
2761
  }
2762
  .alm-drop-btn a.target > i{
2763
  color: #999;
2764
- font-size: 16px;
2765
  position: absolute;
2766
  top:9px;
2767
  left: 10px;
@@ -2781,7 +2768,7 @@ p.cache-stats{
2781
  .alm-repeater-options.active a.target{
2782
  background-color: #fff;
2783
  border-color: #c9c9c9;
2784
- box-shadow: inset 0 1px 1px #ccc !important;
2785
  }
2786
  .alm-repeater-options.active a.target,
2787
  .alm-repeater-options.active a.target i.fa-cog{
@@ -2798,13 +2785,12 @@ p.cache-stats{
2798
  .alm-drop-btn.alm-layout-selection a.target{
2799
  background-color: #f7f7f7;
2800
  border-color: #e1e1e1;
2801
- color: #555;
2802
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2);
2803
  }
2804
  .alm-drop-btn.alm-layout-selection > a > i{
2805
  left: 12px;
2806
  }
2807
-
2808
  .alm-drop-btn.alm-layout-selection li.type{
2809
  height: 36px;
2810
  line-height: 36px;
@@ -2824,7 +2810,7 @@ p.cache-stats{
2824
  .alm-drop-btn.alm-layout-selection li.type .col-select a{
2825
  width: 32px;
2826
  height: 30px;
2827
- margin: 3px 3px 0 0;
2828
  padding: 0;
2829
  float: left;
2830
  text-align: center;
@@ -2867,16 +2853,17 @@ p.cache-stats{
2867
  .alm-drop-btn.alm-layout-selection a.external,
2868
  .alm-drop-btn.alm-layout-selection a.add-on{
2869
  background-color: #f7f7f7;
2870
- padding: 13px 10px 13px 42px;
2871
  display: block;
2872
  }
2873
  .alm-drop-btn.alm-layout-selection a.external{
2874
- padding: 0 10px 0 42px;
2875
  }
2876
  .alm-drop-btn.alm-layout-selection a.external i{
2877
  color: #999;
2878
  border-color: #ccc;
2879
- top: 10px;
 
2880
  }
2881
  .alm-drop-btn.alm-layout-selection a.external:hover i{
2882
  color: #666;
@@ -2910,7 +2897,7 @@ p.cache-stats{
2910
  }
2911
  .alm-drop-btn.alm-layout-selection a.add-on i{
2912
  color: #fff !important;
2913
- border-color: rgba(255, 255, 255, 0.3);
2914
  }
2915
 
2916
  .alm-drop-btn.alm-layout-selection a.target:hover,
@@ -2919,7 +2906,7 @@ p.cache-stats{
2919
  color: #222;
2920
  background-color: #fff;
2921
  border-color: #ccc;
2922
- box-shadow: 0 0 3px #efefef;
2923
  opacity: 1;
2924
  }
2925
  .alm-drop-btn.alm-layout-selection.active a.target,
@@ -2998,10 +2985,10 @@ p.cache-stats{
2998
  border: 1px solid #ccc;
2999
  box-shadow: 0 0 4px #ccc;
3000
  padding: 8px;
3001
- width: 260px;
3002
  }
3003
  .alm-layout-selection .alm-dropdown .alm-drop-inner{
3004
- width: 280px;
3005
  }
3006
  .alm-drop-inner:after,
3007
  .alm-drop-inner:before {
@@ -3021,7 +3008,6 @@ p.cache-stats{
3021
  border-width:7px;
3022
  margin-left:-7px;
3023
  }
3024
-
3025
  .alm-drop-inner:before {
3026
  border-color:rgba(204,204,204,0);
3027
  border-bottom-color:#ccc;
@@ -3035,8 +3021,6 @@ p.cache-stats{
3035
  .alm-dropdown ul{
3036
  padding:0;
3037
  margin:0;
3038
- border-radius: 2px;
3039
- border: 1px solid #efefef;
3040
  overflow: hidden;
3041
  }
3042
  .alm-dropdown ul li{
@@ -3055,7 +3039,7 @@ p.cache-stats{
3055
  border: none;
3056
  }
3057
  .alm-dropdown ul li a{
3058
- padding: 0 10px 0 42px;
3059
  line-height: 37px;
3060
  height: 36px;
3061
  display: block;
@@ -3080,7 +3064,6 @@ p.cache-stats{
3080
  width: 32px;
3081
  height: 16px;
3082
  line-height: 16px;
3083
- border-right: 1px solid #e1e1e1;
3084
  display: inline-block;
3085
  text-align: center;
3086
  }
@@ -3094,7 +3077,6 @@ p.cache-stats{
3094
  }
3095
 
3096
 
3097
-
3098
  /*
3099
  * Mailchimp Sign-up
3100
  *
@@ -3452,12 +3434,12 @@ p.cache-stats{
3452
  float: left;
3453
  margin: 0 2px 0 0;
3454
  padding: 0;
3455
- background: none;
3456
  list-style: none;
3457
  }
3458
  .ajax-load-more .alm-toggle-switch li a{
3459
  display: block;
3460
- padding: 16px 26px;
3461
  line-height: 1;
3462
  border-radius: 2px;
3463
  text-decoration: none;
263
 
264
  /* Expand Collapse Headings */
265
  .ajax-load-more h3.heading{
266
+ font-weight: 600;
267
+ padding: 15px 10px 15px 38px !important;
268
  line-height: normal !important;
269
  margin: 0 !important;
270
+ color: $grey;
271
  cursor: pointer;
272
  width: 100%;
273
  position: relative;
274
+ font-size: 16px;
275
  background: #f7f7f7;
276
+ border-bottom: 1px solid #e1e1e1;
277
  }
278
  .ajax-load-more h3.heading:hover:after,
279
  .ajax-load-more .add-on h3.heading:hover:after{
280
+ color: #ccc;
281
+ }
282
  .ajax-load-more h3.heading:hover{
283
  color: #222;
284
  }
 
285
  .ajax-load-more h3.heading:after{
286
  font-family: 'FontAwesome';
287
  content: '\f056';
288
+ color: #e1e1e1;
 
289
  position: absolute;
290
  left: 13px;
291
+ top: 16px;
292
  height: 20px;
293
  width: 20px;
294
  }
300
  }
301
 
302
  .ajax-load-more .add-on h3.heading:after{
303
+ color: #e8e8d3;
304
  }
305
  .ajax-load-more .add-on h3.heading{
306
  background-color: #fefeed;
751
 
752
  .ajax-load-more .row{
753
  padding: 0 !important;
754
+ margin: 10px 0 0;
755
  height: auto;
756
  width: 100%;
757
  display: block;
853
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
854
  }
855
  hr.indented{ // Indented as fake padding in shortcode builder
856
+ width: calc(100% - 40px);
857
+ margin-left: 20px;
858
  }
 
859
  .ajax-load-more .section-title {
860
  float: left;
861
+ padding: 20px 0 20px 20px;
862
+ width: 35%;
863
  }
864
 
865
  .ajax-load-more .section-title.full {
867
  float: none;
868
  }
869
  .ajax-load-more .section-title h4{
870
+ font-size: 15px;
871
+ font-weight: 600;
872
+ margin-bottom: 15px;
873
  }
874
  .ajax-load-more .section-title p,
875
  .ajax-load-more .wrap p.descriptor{
876
+ font-size: 14px;
877
+ line-height: 22px;
878
  color: #999;
879
  }
880
  .ajax-load-more .wrap p.descriptor{
943
  .cta_template_wrap,
944
  .restapi_options,
945
  .filters_options,
946
+ .next-page-content,
947
  .acf-options,
948
  .masonry-options,
949
  .progress-bar-options{
951
  }
952
 
953
  .ajax-load-more .row .wrap{
954
+ padding: 20px 20px 0 5%;
955
  margin: 0;
956
  border: none;
957
+ width: 65%;
958
  float: left;
959
  position: relative;
960
  }
1746
  .license-title{
1747
  border-radius: 3px 3px 0 0;
1748
  border: 1px solid #e1e1e1;
1749
+ background-color: #f7f7f7;
1750
  position: relative;
1751
  }
1752
  .license-title .status{
1821
  display: none;
1822
  }
1823
  .license-btn.hide{
1824
+ display: none;
1825
  }
1826
  .license-btn-wrap{
1827
  display: block;
1833
  line-height: 18px;
1834
  }
1835
  .license-btn-wrap .msg strong{
1836
+ display: block;
1837
  }
1838
  .license-btn-wrap .msg em{
1839
  opacity: 0.7;
1847
  padding: 15px;
1848
  border: 1px solid #e1e1e1;
1849
  border-top: none;
1850
+ background-color: #fff;
1851
  border-radius: 0 0 3px 3px;
1852
  }
1853
  .license-wrap label{
1858
  background-color: #fff;
1859
  margin: 0 0 15px;
1860
  width: 100% !important;
1861
+ border-color: #e7e7e7;
1862
  padding: 14px;
1863
  }
1864
  .license-wrap input[type=text]:focus{
2208
  overflow: visible;
2209
  }
2210
  .admin.ajax-load-more .row.unlimited:first-of-type{
2211
+ margin-top: 10px;
2212
  }
2213
 
2214
  .repeaters .row,
2266
 
2267
  .alm-add-template{
2268
  text-align: center;
2269
+ margin: 20px 0 5px !important;
2270
  display: block;
2271
  font-size: 15px !important;
2272
  font-weight: 700;
2280
  display: inline-block;
2281
  padding: 11px 16px 13px;
2282
  line-height: 1;
 
 
2283
  border-radius: 3px;
2284
  text-decoration: none;
 
 
2285
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2286
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
2287
  }
2296
  background: #ff5a58;
2297
  border-color: #ff5a58;
2298
  color: #fff;
 
 
2299
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 0 rgba(0, 0, 0, 0.07);
2300
  text-shadow: none;
2301
  }
2302
  .alm-add-template a:focus{
 
 
2303
  box-shadow: none;
2304
  text-shadow: none;
2305
  }
2307
  color: #fff;
2308
  background: #ec4745;
2309
  border-color: #ec4745;
 
 
2310
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2311
  text-shadow: none;
2312
  }
2323
  .alm-add-template a:active i{
2324
  color: #fff;
2325
  }
2326
+
2327
  .spacer{
2328
  height:10px;
2329
  clear:both;
2333
 
2334
  /*
2335
  * Cache
 
2336
  * @since 2.6.0
2337
  */
2338
 
2679
  border-bottom: 1px solid #e1e1e1;
2680
  background-color: #f7f7f7;
2681
  border-radius: 2px 2px 0 0;
2682
+ color: $grey;
2683
  position: relative;
2684
  i{
2685
  position: absolute;
2716
 
2717
 
2718
  /*
2719
+ * Repeater Template options dropdown
2720
+ * @since 2.4.1
2721
+ */
 
2722
 
2723
  .ajax-load-more .row.template{
2724
+ position: relative;
2725
  }
2726
  .ajax-load-more .row.template:hover .alm-repeater-options{
2727
  opacity: 1;
2729
 
2730
  .alm-drop-btn.alm-repeater-options{
2731
  position: absolute;
2732
+ top: -42px;
2733
+ right: 7px;
2734
+ z-index: 99;
2735
  }
2736
  .alm-drop-btn a.target{
2737
  font-weight: 500;
2738
  position: relative;
2739
  color: #999;
2740
  text-decoration: none !important;
2741
+ padding: 8px 12px 8px 30px;
2742
  border: 1px solid #e1e1e1;
2743
  border-radius: 3px;
2744
  font-size: 13px;
2748
  }
2749
  .alm-drop-btn a.target > i{
2750
  color: #999;
2751
+ font-size: 15px;
2752
  position: absolute;
2753
  top:9px;
2754
  left: 10px;
2768
  .alm-repeater-options.active a.target{
2769
  background-color: #fff;
2770
  border-color: #c9c9c9;
2771
+ box-shadow: inset 0 1px 1px #efefef !important;
2772
  }
2773
  .alm-repeater-options.active a.target,
2774
  .alm-repeater-options.active a.target i.fa-cog{
2785
  .alm-drop-btn.alm-layout-selection a.target{
2786
  background-color: #f7f7f7;
2787
  border-color: #e1e1e1;
2788
+ color: $grey;
2789
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2);
2790
  }
2791
  .alm-drop-btn.alm-layout-selection > a > i{
2792
  left: 12px;
2793
  }
 
2794
  .alm-drop-btn.alm-layout-selection li.type{
2795
  height: 36px;
2796
  line-height: 36px;
2810
  .alm-drop-btn.alm-layout-selection li.type .col-select a{
2811
  width: 32px;
2812
  height: 30px;
2813
+ margin: 3px 0 0 0;
2814
  padding: 0;
2815
  float: left;
2816
  text-align: center;
2853
  .alm-drop-btn.alm-layout-selection a.external,
2854
  .alm-drop-btn.alm-layout-selection a.add-on{
2855
  background-color: #f7f7f7;
2856
+ padding: 13px 10px 13px 38px;
2857
  display: block;
2858
  }
2859
  .alm-drop-btn.alm-layout-selection a.external{
2860
+ padding: 0 10px 0 38px;
2861
  }
2862
  .alm-drop-btn.alm-layout-selection a.external i{
2863
  color: #999;
2864
  border-color: #ccc;
2865
+ top: 11px;
2866
+ width: 38px;
2867
  }
2868
  .alm-drop-btn.alm-layout-selection a.external:hover i{
2869
  color: #666;
2897
  }
2898
  .alm-drop-btn.alm-layout-selection a.add-on i{
2899
  color: #fff !important;
2900
+ border-color: rgba(255, 255, 255, 0.3);
2901
  }
2902
 
2903
  .alm-drop-btn.alm-layout-selection a.target:hover,
2906
  color: #222;
2907
  background-color: #fff;
2908
  border-color: #ccc;
2909
+ box-shadow: 0 0 3px #e7e7e7;
2910
  opacity: 1;
2911
  }
2912
  .alm-drop-btn.alm-layout-selection.active a.target,
2985
  border: 1px solid #ccc;
2986
  box-shadow: 0 0 4px #ccc;
2987
  padding: 8px;
2988
+ width: 220px;
2989
  }
2990
  .alm-layout-selection .alm-dropdown .alm-drop-inner{
2991
+ width: 250px;
2992
  }
2993
  .alm-drop-inner:after,
2994
  .alm-drop-inner:before {
3008
  border-width:7px;
3009
  margin-left:-7px;
3010
  }
 
3011
  .alm-drop-inner:before {
3012
  border-color:rgba(204,204,204,0);
3013
  border-bottom-color:#ccc;
3021
  .alm-dropdown ul{
3022
  padding:0;
3023
  margin:0;
 
 
3024
  overflow: hidden;
3025
  }
3026
  .alm-dropdown ul li{
3039
  border: none;
3040
  }
3041
  .alm-dropdown ul li a{
3042
+ padding: 0 10px 0 32px;
3043
  line-height: 37px;
3044
  height: 36px;
3045
  display: block;
3064
  width: 32px;
3065
  height: 16px;
3066
  line-height: 16px;
 
3067
  display: inline-block;
3068
  text-align: center;
3069
  }
3077
  }
3078
 
3079
 
 
3080
  /*
3081
  * Mailchimp Sign-up
3082
  *
3434
  float: left;
3435
  margin: 0 2px 0 0;
3436
  padding: 0;
3437
+ background: none;
3438
  list-style: none;
3439
  }
3440
  .ajax-load-more .alm-toggle-switch li a{
3441
  display: block;
3442
+ padding: 15px 22px;
3443
  line-height: 1;
3444
  border-radius: 2px;
3445
  text-decoration: none;
ajax-load-more.php CHANGED
@@ -7,15 +7,14 @@ Text Domain: ajax-load-more
7
  Author: Darren Cooney
8
  Twitter: @KaptonKaos
9
  Author URI: https://connekthq.com
10
- Version: 3.5.0
11
  License: GPL
12
  Copyright: Darren Cooney & Connekt Media
13
  */
14
 
15
 
16
-
17
- define('ALM_VERSION', '3.5.0');
18
- define('ALM_RELEASE', 'April 17, 2018');
19
  define('ALM_STORE_URL', 'https://connekthq.com');
20
 
21
 
@@ -364,8 +363,8 @@ if( !class_exists('AjaxLoadMore') ):
364
 
365
  $options = get_option( 'alm_settings' );
366
 
367
- // WPML fix for category/tag archives
368
- if ( isset( $_GET['category'] ) && $_GET['category'] ) {
369
  unset($_REQUEST['post_id']);
370
  }
371
 
@@ -700,6 +699,8 @@ if( !class_exists('AjaxLoadMore') ):
700
  $acf_post_ids = get_field($acf_field_name, $acf_post_id); // Get field value from ACF
701
  if($acf_post_ids){
702
  $args['post__in'] = $acf_post_ids;
 
 
703
  }
704
  }
705
  }
7
  Author: Darren Cooney
8
  Twitter: @KaptonKaos
9
  Author URI: https://connekthq.com
10
+ Version: 3.5.1
11
  License: GPL
12
  Copyright: Darren Cooney & Connekt Media
13
  */
14
 
15
 
16
+ define('ALM_VERSION', '3.5.1');
17
+ define('ALM_RELEASE', 'June 20, 2018');
 
18
  define('ALM_STORE_URL', 'https://connekthq.com');
19
 
20
 
363
 
364
  $options = get_option( 'alm_settings' );
365
 
366
+ // WPML fix for category/tag/taxonomy archives
367
+ if ( (isset( $_GET['category'] ) && $_GET['category']) || (isset($_GET['taxonomy']) && $_GET['taxonomy']) ) {
368
  unset($_REQUEST['post_id']);
369
  }
370
 
699
  $acf_post_ids = get_field($acf_field_name, $acf_post_id); // Get field value from ACF
700
  if($acf_post_ids){
701
  $args['post__in'] = $acf_post_ids;
702
+ } else {
703
+ $args['post__in'] = array(0);
704
  }
705
  }
706
  }
core/classes/class.alm-shortcode.php CHANGED
@@ -143,6 +143,7 @@ if( !class_exists('ALM_SHORTCODE') ):
143
  'transition_container' => 'true',
144
  'transition_container_classes' => '',
145
  'masonry_selector' => '',
 
146
  'masonry_animation' => '',
147
  'masonry_horizontalorder' => '',
148
  'progress_bar' => 'false',
@@ -653,6 +654,9 @@ if( !class_exists('ALM_SHORTCODE') ):
653
  }
654
  if(!empty($masonry_selector)){
655
  $ajaxloadmore .= ' data-masonry-selector="'.$masonry_selector.'"';
 
 
 
656
  }
657
  if(!empty($masonry_animation)){
658
  $ajaxloadmore .= ' data-masonry-animation="'.$masonry_animation.'"';
143
  'transition_container' => 'true',
144
  'transition_container_classes' => '',
145
  'masonry_selector' => '',
146
+ 'masonry_columnwidth' => '',
147
  'masonry_animation' => '',
148
  'masonry_horizontalorder' => '',
149
  'progress_bar' => 'false',
654
  }
655
  if(!empty($masonry_selector)){
656
  $ajaxloadmore .= ' data-masonry-selector="'.$masonry_selector.'"';
657
+ }
658
+ if(!empty($masonry_columnwidth)){
659
+ $ajaxloadmore .= ' data-masonry-columnwidth="'.$masonry_columnwidth.'"';
660
  }
661
  if(!empty($masonry_animation)){
662
  $ajaxloadmore .= ' data-masonry-animation="'.$masonry_animation.'"';
core/dist/js/ajax-load-more.js CHANGED
@@ -219,6 +219,7 @@ var alm_is_filtering = false; // Global Masonry/Filtering var
219
  @param container object
220
  @param items object
221
  @param selector string
 
222
  @param animation string
223
  @param speed int
224
  @param masonry_init boolean
@@ -228,7 +229,7 @@ var alm_is_filtering = false; // Global Masonry/Filtering var
228
  @updated 3.3.2
229
  */
230
 
231
- var almMasonry = function almMasonry(container, items, selector, animation, horizontalOrder, speed, masonry_init, init, filtering) {
232
 
233
  var duration = (speed + 100) / 1000 + 's'; // Add 100 for some delay
234
  var hidden = 'scale(0.5)';
@@ -254,6 +255,18 @@ var almMasonry = function almMasonry(container, items, selector, animation, hori
254
  visible = 'translateY(0)';
255
  }
256
 
 
 
 
 
 
 
 
 
 
 
 
 
257
  horizontalOrder = horizontalOrder === 'true' ? true : false;
258
 
259
  if (!filtering) {
@@ -264,7 +277,7 @@ var almMasonry = function almMasonry(container, items, selector, animation, hori
264
  container.masonry({
265
  itemSelector: selector,
266
  transitionDuration: duration,
267
- columnWidth: selector,
268
  horizontalOrder: horizontalOrder,
269
  hiddenStyle: {
270
  transform: hidden,
@@ -281,9 +294,7 @@ var almMasonry = function almMasonry(container, items, selector, animation, hori
281
 
282
  // Standard
283
  else {
284
- //container.append( items ); // Append new items
285
  items.imagesLoaded(function () {
286
- //items.show();
287
  container.append(items).masonry('appended', items);
288
  });
289
  }
@@ -689,6 +700,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
689
  if (alm.transition === 'masonry') {
690
  alm.masonry_init = true;
691
  alm.masonry_selector = alm.content.attr('data-masonry-selector');
 
692
  alm.masonry_animation = alm.content.attr('data-masonry-animation');
693
  alm.masonry_horizontalorder = alm.content.attr('data-masonry-horizontalorder');
694
  if (alm.masonry_animation === undefined) {
@@ -1124,7 +1136,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
1124
  // Is pagination
1125
  if (total > 0) {
1126
  alm.el = $('<div class="alm-reveal' + alm.tcc + '" ' + loadingStyle + '/>');
1127
- alm.el.append('<div class="alm-paging-content"></div><div class="alm-paging-loading"></div>');
1128
  $('.alm-paging-content', alm.el).append(alm.data);
1129
  alm.content.append(alm.el);
1130
  alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
@@ -1301,7 +1313,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
1301
 
1302
  // Masonry
1303
  if (alm.transition === 'masonry') {
1304
- almMasonry(alm.masonry_wrap, alm.el, alm.masonry_selector, alm.masonry_animation, alm.masonry_horizontalorder, alm.speed, alm.masonry_init, alm.init, alm_is_filtering);
1305
  alm.masonry_init = false;
1306
  alm.AjaxLoadMore.transitionEnd();
1307
  }
@@ -1314,11 +1326,15 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
1314
  else {
1315
  if (alm.images_loaded === 'true') {
1316
  alm.el.almWaitForImages().done(function () {
1317
- alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
 
 
1318
  alm.AjaxLoadMore.transitionEnd();
1319
  });
1320
  } else {
1321
- alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
 
 
1322
  alm.AjaxLoadMore.transitionEnd();
1323
  }
1324
  }
@@ -1817,7 +1833,7 @@ function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr
1817
  // Masonry + Preloaded
1818
  alm.window.bind('load', function () {
1819
  if (alm.is_masonry_preloaded) {
1820
- almMasonry(alm.masonry_wrap, alm.el, alm.masonry_selector, alm.masonry_animation, alm.masonry_horizontalorder, alm.speed, alm.masonry_init, true, false);
1821
  alm.masonry_init = false;
1822
  }
1823
  });
219
  @param container object
220
  @param items object
221
  @param selector string
222
+ @param columnWidth string
223
  @param animation string
224
  @param speed int
225
  @param masonry_init boolean
229
  @updated 3.3.2
230
  */
231
 
232
+ var almMasonry = function almMasonry(container, items, selector, columnWidth, animation, horizontalOrder, speed, masonry_init, init, filtering) {
233
 
234
  var duration = (speed + 100) / 1000 + 's'; // Add 100 for some delay
235
  var hidden = 'scale(0.5)';
255
  visible = 'translateY(0)';
256
  }
257
 
258
+ // Set default columnWidth
259
+ if (columnWidth) {
260
+ if (!isNaN(columnWidth)) {
261
+ // Check if number
262
+ columnWidth = parseInt(columnWidth);
263
+ }
264
+ } else {
265
+ // No columnWidth, use the selector
266
+ columnWidth = selector;
267
+ }
268
+
269
+ // Set horizontalOrder
270
  horizontalOrder = horizontalOrder === 'true' ? true : false;
271
 
272
  if (!filtering) {
277
  container.masonry({
278
  itemSelector: selector,
279
  transitionDuration: duration,
280
+ columnWidth: columnWidth,
281
  horizontalOrder: horizontalOrder,
282
  hiddenStyle: {
283
  transform: hidden,
294
 
295
  // Standard
296
  else {
 
297
  items.imagesLoaded(function () {
 
298
  container.append(items).masonry('appended', items);
299
  });
300
  }
700
  if (alm.transition === 'masonry') {
701
  alm.masonry_init = true;
702
  alm.masonry_selector = alm.content.attr('data-masonry-selector');
703
+ alm.masonry_columnwidth = alm.content.attr('data-masonry-columnwidth');
704
  alm.masonry_animation = alm.content.attr('data-masonry-animation');
705
  alm.masonry_horizontalorder = alm.content.attr('data-masonry-horizontalorder');
706
  if (alm.masonry_animation === undefined) {
1136
  // Is pagination
1137
  if (total > 0) {
1138
  alm.el = $('<div class="alm-reveal' + alm.tcc + '" ' + loadingStyle + '/>');
1139
+ alm.el.append('<div class="alm-paging-content' + alm.tcc + '"></div><div class="alm-paging-loading"></div>');
1140
  $('.alm-paging-content', alm.el).append(alm.data);
1141
  alm.content.append(alm.el);
1142
  alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
1313
 
1314
  // Masonry
1315
  if (alm.transition === 'masonry') {
1316
+ almMasonry(alm.masonry_wrap, alm.el, alm.masonry_selector, alm.masonry_columnwidth, alm.masonry_animation, alm.masonry_horizontalorder, alm.speed, alm.masonry_init, alm.init, alm_is_filtering);
1317
  alm.masonry_init = false;
1318
  alm.AjaxLoadMore.transitionEnd();
1319
  }
1326
  else {
1327
  if (alm.images_loaded === 'true') {
1328
  alm.el.almWaitForImages().done(function () {
1329
+ if (alm.transition_container) {
1330
+ alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
1331
+ }
1332
  alm.AjaxLoadMore.transitionEnd();
1333
  });
1334
  } else {
1335
+ if (alm.transition_container) {
1336
+ alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
1337
+ }
1338
  alm.AjaxLoadMore.transitionEnd();
1339
  }
1340
  }
1833
  // Masonry + Preloaded
1834
  alm.window.bind('load', function () {
1835
  if (alm.is_masonry_preloaded) {
1836
+ almMasonry(alm.masonry_wrap, alm.el, alm.masonry_selector, alm.masonry_columnwidth, alm.masonry_animation, alm.masonry_horizontalorder, alm.speed, alm.masonry_init, true, false);
1837
  alm.masonry_init = false;
1838
  }
1839
  });
core/dist/js/ajax-load-more.min.js CHANGED
@@ -1 +1 @@
1
- "use strict";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 _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)}Array.from||(Array.from=function(){var t=Object.prototype.toString,a=function(a){return"function"==typeof a||"[object Function]"===t.call(a)},e=function(t){var a=Number(t);return isNaN(a)?0:0!==a&&isFinite(a)?(a>0?1:-1)*Math.floor(Math.abs(a)):a},o=Math.pow(2,53)-1,n=function(t){var a=e(t);return Math.min(Math.max(a,0),o)};return function(t){var e=this,o=Object(t);if(null==t)throw new TypeError("Array.from requires an array-like object - not null or undefined");var r,s=arguments.length>1?arguments[1]:void 0;if(void 0!==s){if(!a(s))throw new TypeError("Array.from: when provided, the second argument must be a function");arguments.length>2&&(r=arguments[2])}for(var i,l=n(o.length),p=a(e)?Object(new e(l)):new Array(l),d=0;d<l;)i=o[d],p[d]=s?void 0===r?s(i,d):s.call(r,i,d):i,d+=1;return p.length=l,p}}());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},alm_is_filtering=!1;!function(t){t.fn.almFilter=function(a,e,o){o.target?t(".ajax-load-more-wrap[data-id='"+o.target+"']").each(function(n){var r=t(this);t.fn.almFilterTransition(a,e,o,r)}):t(".ajax-load-more-wrap").each(function(n){var r=t(this);t.fn.almFilterTransition(a,e,o,r)})},t.fn.almFilterTransition=function(t,e,o,n){"slide"===t?n.slideUp(e,function(){a(e,o,n)}):"fade"===t||"masonry"===t?n.fadeOut(e,function(){a(e,o,n)}):a(e,o,n)};var a=function(t,a,o){var n=o.get(0),r=n.querySelectorAll(".alm-listing");[].concat(_toConsumableArray(r)).forEach(function(t){t.innerHTML=""});var s=n.querySelector(".alm-load-more-btn");s&&s.classList.remove("done"),e(t,a,o)},e=function(a,e,o){t.each(e,function(a,e){a=a.replace(/\W+/g,"-").replace(/([a-z\d])([A-Z])/g,"$1-$2"),t(".alm-listing",o).attr("data-"+a,e)}),t.isFunction(t.fn.almFilterComplete)&&t.fn.almFilterComplete(),"function"==typeof almFiltersAddonComplete&&almFiltersAddonComplete(o),alm_is_filtering=!0,o.fadeIn(a),e.target?t(".ajax-load-more-wrap[data-id="+e.target+"]").ajaxloadmore():t(".ajax-load-more-wrap").ajaxloadmore()}}(jQuery);var almMasonry=function t(a,e,o,n,r,s,i,l,p){var d=(s+100)/1e3+"s",c="scale(0.5)",_="scale(1)";"zoom-out"===n&&(c="translateY(-20px) scale(1.25)",_="translateY(0) scale(1)"),"slide-up"===n&&(c="translateY(50px)",_="translateY(0)"),"slide-down"===n&&(c="translateY(-50px)",_="translateY(0)"),"none"===n&&(c="translateY(0)",_="translateY(0)"),r="true"===r,p?(a.masonry("destroy"),a.append(e),t(a,e,o,n,r,s,!0,!0,!1)):i&&l?a.imagesLoaded(function(){a.masonry({itemSelector:o,transitionDuration:d,columnWidth:o,horizontalOrder:r,hiddenStyle:{transform:c,opacity:0},visibleStyle:{transform:_,opacity:1}}),almMasonryFadeIn(a[0].parentNode,s)}):e.imagesLoaded(function(){a.append(e).masonry("appended",e)})},almMasonryFadeIn=function(t,a){a/=10;var e=parseInt(t.style.opacity),o=setInterval(function(){e>.9&&(t.style.opacity=1,clearInterval(o)),t.style.opacity=e,e+=.1},a)};!function(t){t.ajaxloadmore=function(a,e){"true"===alm_localize.scrolltop&&t(window).scrollTop(0);var o=this;if(o.AjaxLoadMore={},o.window=t(window),o.page=0,o.posts=0,o.totalposts=0,o.proceed=!1,o.disable_ajax=!1,o.init=!0,o.loading=!0,o.finished=!1,o.prefix="alm-",o.el=a,o.container=a,o.container.addClass("alm-"+e).attr("data-alm-id",e),o.content=t(".alm-ajax",o.container),o.content_preloaded=t(".alm-listing.alm-preloaded",o.container),o.canonical_url=o.el.attr("data-canonical-url"),o.is_search=o.el.attr("data-search"),o.slug=o.el.attr("data-slug"),o.post_id=o.el.attr("data-post-id"),o.id=o.el.attr("data-id")?o.el.attr("data-id"):"",o.repeater=o.content.attr("data-repeater"),o.theme_repeater=o.content.attr("data-theme-repeater"),o.post_type=o.content.attr("data-post-type"),o.post_type=o.post_type.split(","),o.sticky_posts=o.content.attr("data-sticky-posts"),o.btnWrap=t(".alm-btn-wrap",o.container),o.button_label=o.content.attr("data-button-label"),o.button_loading_label=o.content.attr("data-button-loading-label"),o.scroll_distance=o.content.attr("data-scroll-distance"),o.scroll_distance=o.scroll_distance?parseInt(o.scroll_distance):150,o.scroll_container=o.content.attr("data-scroll-container"),o.max_pages=o.content.attr("data-max-pages"),o.max_pages=o.max_pages?parseInt(o.max_pages):0,o.pause_override=o.content.attr("data-pause-override"),o.pause=o.content.attr("data-pause"),o.transition=o.content.attr("data-transition"),o.transition_container=o.content.attr("data-transition-container"),o.tcc=o.content.attr("data-transition-container-classes"),o.speed=250,o.images_loaded=o.content.attr("data-images-loaded"),o.destroy_after=o.content.attr("data-destroy-after"),o.lang=o.content.attr("data-lang"),o.orginal_posts_per_page=o.content.attr("data-posts-per-page"),o.posts_per_page=o.content.attr("data-posts-per-page"),o.offset=o.content.attr("data-offset"),o.cache=o.content.attr("data-cache"),o.cache_id=o.content.attr("data-cache-id"),o.cache_path=o.content.attr("data-cache-path"),o.cache_logged_in=o.content.attr("data-cache-logged-in"),o.cta=o.content.attr("data-cta"),o.cta_position=o.content.attr("data-cta-position"),o.cta_repeater=o.content.attr("data-cta-repeater"),o.cta_theme_repeater=o.content.attr("data-cta-theme-repeater"),o.acf=o.content.attr("data-acf"),o.acf_field_type=o.content.attr("data-acf-field-type"),o.acf_field_name=o.content.attr("data-acf-field-name"),o.acf_post_id=o.content.attr("data-acf-post-id"),o.nextpage=o.content.attr("data-nextpage"),o.nextpage_urls=o.content.attr("data-nextpage-urls"),o.nextpage_scroll=o.content.attr("data-nextpage-scroll"),o.nextpage_pageviews=o.content.attr("data-nextpage-pageviews"),o.nextpage_post_id=o.content.attr("data-nextpage-post-id"),o.nextpage_startpage=o.content.attr("data-nextpage-startpage"),o.previous_post=o.content.attr("data-previous-post"),o.previous_post_id=o.content.attr("data-previous-post-id"),o.previous_post_taxonomy=o.content.attr("data-previous-post-taxonomy"),o.previous_post_excluded_terms=o.content.attr("data-previous-post-excluded-terms"),o.comments=o.content.attr("data-comments"),"true"===o.comments&&(o.content=t(".alm-comments",o.container)),o.comments_post_id=o.content.attr("data-comments_post_id"),o.comments_per_page=o.content.attr("data-comments_per_page"),o.comments_type=o.content.attr("data-comments_type"),o.comments_style=o.content.attr("data-comments_style"),o.comments_template=o.content.attr("data-comments_template"),o.comments_callback=o.content.attr("data-comments_callback"),o.filters=o.content.attr("data-filters"),o.restapi=o.content.attr("data-restapi"),o.restapi_base_url=o.content.attr("data-restapi-base-url"),o.restapi_namespace=o.content.attr("data-restapi-namespace"),o.restapi_endpoint=o.content.attr("data-restapi-endpoint"),o.restapi_template_id=o.content.attr("data-restapi-template-id"),o.restapi_debug=o.content.attr("data-restapi-debug"),o.seo=o.content.attr("data-seo"),o.preloaded=o.content.attr("data-preloaded"),o.preloaded_amount=o.content.attr("data-preloaded-amount"),o.paging=o.content.attr("data-paging"),o.users="true"===o.content.attr("data-users"),o.users&&(o.orginal_posts_per_page=o.content.attr("data-users-per-page"),o.posts_per_page=o.content.attr("data-users-per-page")),"true"===o.filters){o.filters=!0,o.filters_analtyics=o.content.attr("data-filters-analtyics"),o.filters_debug=o.content.attr("data-filters-debug"),o.filters_startpage=0;var n=almGetParameterByName("pg");null!==n&&(o.filters_startpage=parseInt(n),o.page=o.filters_startpage),o.isPaged=!1,o.filters_startpage>0&&(o.isPaged=!0,o.page=o.filters_startpage-1)}else o.filters=!1;"true"===o.restapi?(o.restapi=!0,void 0===o.restapi_debug&&(o.restapi_debug=!1),""===o.restapi_template_id&&(o.restapi=!1)):o.restapi=!1,"true"===o.paging?(o.paging=!0,o.paging_controls=!!o.content.attr("data-paging-controls"),o.paging_show_at_most=o.content.attr("data-paging-show-at-most"),o.paging_classes=o.content.attr("data-paging-classes"),o.paging_init=!0,o.paging_show_at_most=void 0===o.paging_show_at_most?7:o.paging_show_at_most,"true"===o.preloaded&&(o.pause=!0)):o.paging=!1,void 0===o.cache&&(o.cache=!1),void 0===o.cache_logged_in&&(o.cache_logged_in=!1),void 0===o.comments_per_page&&(o.comments_per_page="5"),"true"===o.preloaded?(o.preload_wrap=o.content.prev(".alm-preloaded"),o.preloaded_total_posts=parseInt(o.preload_wrap.attr("data-total-posts")),void 0===o.preloaded_amount&&(o.preloaded_amount=!1),o.preloaded_total_posts<=o.preloaded_amount&&(o.disable_ajax=!0)):o.preloaded="false",void 0===o.seo&&(o.seo=!1),"true"===o.seo&&(o.seo=!0),void 0===o.is_search&&(o.is_search=!1),o.search_value="true"===o.is_search?o.slug:"",o.permalink=o.content.attr("data-seo-permalink"),o.pageview=o.content.attr("data-seo-pageview"),o.start_page=o.content.attr("data-seo-start-page"),o.seo_trailing_slash="false"===o.content.attr("data-seo-trailing-slash")?"":"/",o.seo_leading_slash="true"===o.content.attr("data-seo-leading-slash")?"/":"",o.start_page?(o.seo_scroll=o.content.attr("data-seo-scroll"),o.seo_scroll_speed=o.content.attr("data-seo-scroll-speed"),o.seo_scrolltop=o.content.attr("data-seo-scrolltop"),o.seo_controls=o.content.attr("data-seo-controls"),o.isPaged=!1,o.start_page>1&&(o.isPaged=!0,o.posts_per_page=o.start_page*o.posts_per_page),o.paging&&(o.posts_per_page=o.orginal_posts_per_page)):o.start_page=1,"true"===o.nextpage?(o.nextpage=!0,o.posts_per_page=1):o.nextpage=!1,void 0===o.nextpage_urls&&(o.nextpage_urls="true"),void 0===o.nextpage_scroll&&(o.nextpage_scroll="250:30"),void 0===o.nextpage_pageviews&&(o.nextpage_pageviews="true"),void 0===o.nextpage_post_id&&(o.nextpage=!1,o.nextpage_post_id=null),void 0===o.nextpage_startpage&&(o.nextpage_startpage=1),o.nextpage_startpage>1&&(o.isPaged=!0),o.acf="true"===o.acf,void 0!==o.acf_field_type&&void 0!==o.acf_field_name&&void 0!==o.acf_post_id||(o.acf=!1),"true"===o.previous_post?(o.previous_post=!0,o.previous_post_permalink="",o.previous_post_title="",o.previous_post_slug=""):o.previous_post=!1,void 0===o.previous_post_id&&(o.previous_post_id=""),void 0===o.previous_post_taxonomy&&(o.previous_post_taxonomy=""),void 0===o.previous_post_excluded_terms&&(o.previous_post_excluded_terms=""),o.previous_post_title_template=o.content.attr("data-previous-post-title-template"),o.siteTitle=o.content.attr("data-previous-post-site-title"),o.siteTagline=o.content.attr("data-previous-post-site-tagline"),o.previous_post_pageview=o.content.attr("data-previous-post-pageview"),o.previous_post_scroll=o.content.attr("data-previous-post-scroll"),o.previous_post_scroll_speed=o.content.attr("data-previous-post-scroll-speed"),o.previous_post_scroll_top=o.content.attr("data-previous-post-scrolltop"),o.previous_post_controls=o.content.attr("data-previous-post-controls"),o.offset=void 0===o.offset?0:o.offset,(void 0===o.pause||o.seo&&o.start_page>1)&&(o.pause=!1),"true"===o.preloaded&&o.seo&&o.start_page>0&&(o.pause=!1),"true"===o.preloaded&&o.paging&&(o.pause=!0),void 0===o.repeater&&(o.repeater="default"),void 0===o.theme_repeater&&(o.theme_repeater="null"),o.max_pages=void 0===o.max_pages||0===o.max_pages?1e4:o.max_pages,o.scroll_distance=void 0===o.scroll_distance?150:o.scroll_distance,o.scroll_container=void 0===o.scroll_container?"":o.scroll_container,o.transition=void 0===o.transition?"fade":o.transition,o.tcc=void 0===o.tcc?"":o.tcc,o.is_masonry_preloaded=!1,"masonry"===o.transition&&(o.masonry_init=!0,o.masonry_selector=o.content.attr("data-masonry-selector"),o.masonry_animation=o.content.attr("data-masonry-animation"),o.masonry_horizontalorder=o.content.attr("data-masonry-horizontalorder"),void 0===o.masonry_animation&&(o.masonry_animation="standard"),void 0===o.masonry_horizontalorder&&(o.masonry_horizontalorder="true"),o.masonry_wrap=o.content,o.transition_container=!1,document.body.contains(o.content_preloaded.get(0))&&(o.masonry_wrap=o.content_preloaded,o.is_masonry_preloaded=!0)),void 0===o.content.attr("data-scroll")?o.scroll=!0:"false"===o.content.attr("data-scroll")?o.scroll=!1:o.scroll=!0,o.transition_container=void 0===o.transition_container||"true"===o.transition_container,o.images_loaded=void 0===o.images_loaded?"false":o.images_loaded,o.button_label=void 0===o.button_label?"Older Posts":o.button_label,o.button_loading_label=void 0!==o.button_loading_label&&o.button_loading_label,o.paging?o.content.parent().addClass("loading"):o.button=t(".alm-load-more-btn",o.container),o.AjaxLoadMore.loadPosts=function(){if(!o.disable_ajax)if(o.paging||(o.button.addClass("loading"),!1!==o.button_loading_label&&o.button.html(o.button_loading_label)),o.container.addClass("alm-loading"),o.loading=!0,"true"!==o.cache||o.cache_logged_in)o.AjaxLoadMore.ajax("standard");else{var a;if(o.init&&o.seo&&o.isPaged){a=o.cache_path+o.cache_id+"/page-1-"+o.start_page+".html"}else if(o.nextpage){var e;o.paging?e=parseInt(o.page)+1:(e=parseInt(o.page)+2,o.isPaged&&(e=parseInt(o.page)+parseInt(o.nextpage_startpage)+1)),a=o.cache_path+o.cache_id+"/page-"+e+".html"}else a=o.previous_post?o.cache_path+o.cache_id+"/"+o.previous_post_id+".html":o.cache_path+o.cache_id+"/page-"+(o.page+1)+".html";t.get(a,function(t){o.AjaxLoadMore.success(t,!0)}).fail(function(){o.AjaxLoadMore.ajax("standard")})}},o.AjaxLoadMore.ajax=function(e){var n="alm_query_posts";if(o.acf_array="",o.acf&&("relationship"!==o.acf_field_type&&(n="alm_acf_query"),o.acf_array={acf:"true",post_id:o.acf_post_id,field_type:o.acf_field_type,field_name:o.acf_field_name}),o.nextpage_array="",o.nextpage&&(n="alm_nextpage_query",o.nextpage_array={nextpage:"true",urls:o.nextpage_urls,scroll:o.nextpage_scroll,pageviews:o.nextpage_pageviews,post_id:o.nextpage_post_id,startpage:o.nextpage_startpage}),o.previous_post_array="",o.previous_post&&(o.previous_post_array={previous_post:"true",id:o.previous_post_id,slug:o.previous_post_slug}),o.comments_array="","true"===o.comments&&(n="alm_comments_query",o.posts_per_page=o.comments_per_page,o.comments_array={comments:"true",post_id:o.comments_post_id,per_page:o.comments_per_page,type:o.comments_type,style:o.comments_style,template:o.comments_template,callback:o.comments_callback}),o.users_array="",o.users&&(n="alm_users_query",o.users_array={users:"true",role:o.content.attr("data-users-role"),include:o.content.attr("data-users-include"),exclude:o.content.attr("data-users-exclude"),per_page:o.posts_per_page,order:o.content.attr("data-users-order"),orderby:o.content.attr("data-users-orderby")}),o.cta_array="","true"===o.cta&&(o.cta_array={cta:"true",cta_position:o.cta_position,cta_repeater:o.cta_repeater,cta_theme_repeater:o.cta_theme_repeater}),o.restapi){var r=wp.template(o.restapi_template_id),s=o.restapi_base_url+"/"+o.restapi_namespace+"/"+o.restapi_endpoint,i={id:a.attr("data-id"),post_id:o.post_id,posts_per_page:o.posts_per_page,page:o.page,offset:o.offset,slug:o.slug,canonical_url:o.canonical_url,post_type:o.post_type,post_format:o.content.attr("data-post-format"),category:o.content.attr("data-category"),category__not_in:o.content.attr("data-category-not-in"),tag:o.content.attr("data-tag"),tag__not_in:o.content.attr("data-tag-not-in"),taxonomy:o.content.attr("data-taxonomy"),taxonomy_terms:o.content.attr("data-taxonomy-terms"),taxonomy_operator:o.content.attr("data-taxonomy-operator"),taxonomy_relation:o.content.attr("data-taxonomy-relation"),meta_key:o.content.attr("data-meta-key"),meta_value:o.content.attr("data-meta-value"),meta_compare:o.content.attr("data-meta-compare"),meta_relation:o.content.attr("data-meta-relation"),meta_type:o.content.attr("data-meta-type"),author:o.content.attr("data-author"),year:o.content.attr("data-year"),month:o.content.attr("data-month"),day:o.content.attr("data-day"),post_status:o.content.attr("data-post-status"),order:o.content.attr("data-order"),orderby:o.content.attr("data-orderby"),post__in:o.content.attr("data-post-in"),post__not_in:o.content.attr("data-post-not-in"),search:o.content.attr("data-search"),custom_args:o.content.attr("data-custom-args"),lang:o.lang,preloaded:o.preloaded,preloaded_amount:o.preloaded_amount,seo_start_page:o.start_page};t.ajax({type:"GET",url:s,data:i,dataType:"JSON",beforeSend:function(){1==o.page||o.paging||o.button.addClass("loading")},success:function(a){var e="",n=a.html,s=a.meta,i=s.postcount,l=s.totalposts;t.each(n,function(t){var a=n[t];"true"===o.restapi_debug&&console.log(a),e+=r(a)});var p={html:e,meta:{postcount:i,totalposts:l}};o.AjaxLoadMore.success(p,!1)}})}else t.ajax({type:"GET",url:alm_localize.ajaxurl,dataType:"JSON",data:{action:n,nonce:alm_localize.alm_nonce,query_type:e,id:a.attr("data-id"),post_id:o.post_id,slug:o.slug,canonical_url:o.canonical_url,cache_id:o.cache_id,cache_logged_in:o.cache_logged_in,repeater:o.repeater,theme_repeater:o.theme_repeater,acf:o.acf_array,nextpage:o.nextpage_array,cta:o.cta_array,comments:o.comments_array,users:o.users_array,post_type:o.post_type,sticky_posts:o.sticky_posts,post_format:o.content.attr("data-post-format"),category:o.content.attr("data-category"),category__not_in:o.content.attr("data-category-not-in"),tag:o.content.attr("data-tag"),tag__not_in:o.content.attr("data-tag-not-in"),taxonomy:o.content.attr("data-taxonomy"),taxonomy_terms:o.content.attr("data-taxonomy-terms"),taxonomy_operator:o.content.attr("data-taxonomy-operator"),taxonomy_relation:o.content.attr("data-taxonomy-relation"),meta_key:o.content.attr("data-meta-key"),meta_value:o.content.attr("data-meta-value"),meta_compare:o.content.attr("data-meta-compare"),meta_relation:o.content.attr("data-meta-relation"),meta_type:o.content.attr("data-meta-type"),author:o.content.attr("data-author"),year:o.content.attr("data-year"),month:o.content.attr("data-month"),day:o.content.attr("data-day"),post_status:o.content.attr("data-post-status"),order:o.content.attr("data-order"),orderby:o.content.attr("data-orderby"),post__in:o.content.attr("data-post-in"),post__not_in:o.content.attr("data-post-not-in"),exclude:o.content.attr("data-exclude"),search:o.content.attr("data-search"),custom_args:o.content.attr("data-custom-args"),posts_per_page:o.posts_per_page,page:o.page,offset:o.offset,preloaded:o.preloaded,preloaded_amount:o.preloaded_amount,seo_start_page:o.start_page,paging:o.paging,previous_post:o.previous_post_array,lang:o.lang},beforeSend:function(){1==o.page||o.paging||o.button.addClass("loading")},success:function(a){"standard"===e?o.AjaxLoadMore.success(a,!1):"totalpages"===e&&o.paging&&o.nextpage?t.isFunction(t.fn.almBuildPagination)&&t.fn.almBuildPagination(a,o):"totalposts"===e&&o.paging&&t.isFunction(t.fn.almBuildPagination)&&t.fn.almBuildPagination(a,o)},error:function(t,a,e){o.AjaxLoadMore.error(t,a,e)}})},o.paging&&(o.nextpage?o.AjaxLoadMore.ajax("totalpages"):o.AjaxLoadMore.ajax("totalposts")),o.AjaxLoadMore.success=function(a,e){o.previous_post&&o.AjaxLoadMore.getPreviousPost();var n,r,s,i='style="opacity: 0; height: 0;"';if(e?n=a:(n=a.html,r=a.meta,o.posts=o.posts+r.postcount,s=r.postcount,o.totalposts=r.totalposts,"true"===o.preloaded&&(o.totalposts=o.totalposts-o.preloaded_amount)),o.data=t(n),e&&(s=o.data.length),o.init&&(o.paging?s>0&&(o.el=t('<div class="alm-reveal'+o.tcc+'" '+i+"/>"),o.el.append('<div class="alm-paging-content"></div><div class="alm-paging-loading"></div>'),t(".alm-paging-content",o.el).append(o.data),o.content.append(o.el),o.AjaxLoadMore.fadeIn(o.el.get(0),o.speed),o.content.parent().removeClass("loading"),o.AjaxLoadMore.resetBtnText(),setTimeout(function(){t(".alm-paging-content",o.el).fadeIn(o.speed,"alm_easeInOutQuad",function(){var a=parseInt(o.content.css("padding-top")),e=parseInt(o.content.css("padding-bottom"));o.content.css("height",o.el.height()+a+e+"px"),t.isFunction(t.fn.almFadePageControls)&&t.fn.almFadePageControls(o.btnWrap)})},o.speed)):o.button.html(o.button_label),0===s&&(o.paging&&t.isFunction(t.fn.almPagingEmpty)&&t.fn.almPagingEmpty(o),t.isFunction(t.fn.almEmpty)&&t.fn.almEmpty(o)),o.isPaged&&(o.posts_per_page=o.users?o.content.attr("data-users-per-page"):o.content.attr("data-posts-per-page"),o.start_page&&(o.page=o.start_page-1),o.filters&&o.filters_startpage&&(o.page=o.filters_startpage-1,o.posts_per_page=o.content.attr("data-posts-per-page")))),s>0){if(o.paging)o.init?(o.container.removeClass("alm-loading"),o.AjaxLoadMore.triggerAddons(o)):t(".alm-paging-content",o.el).html("").append(o.data).almWaitForImages().done(function(){t(".alm-paging-loading",o.el).fadeOut(o.speed),t.isFunction(t.fn.almOnPagingComplete)&&t.fn.almOnPagingComplete(o),o.container.removeClass("alm-loading"),o.AjaxLoadMore.triggerAddons(o)});else{if(o.previous_post)o.el=t('<div class="alm-reveal alm-previous-post post-'+o.previous_post_id+'" '+i+' data-id="'+o.previous_post_id+'" data-title="'+o.previous_post_title+'" data-url="'+o.previous_post_permalink+'" data-page="'+o.page+'"/>'),o.el.append(o.data);else if(o.transition_container){var l=void 0,p=window.location.search;if(o.init&&o.start_page>1){var d=[],c=parseInt(o.posts_per_page);"true"===o.cta&&(c+=1);Math.ceil(s/c);for(var _=0;_<s;_+=c)d.push(o.data.slice(_,c+_));o.el=o.content;for(var g=0;g<d.length;g++){var u="true"===o.preloaded?1:0,m=void 0;g>0||"true"===o.preloaded?(l=g+1+u,m=t("default"===o.permalink?'<div class="alm-reveal alm-seo'+o.tcc+'" data-url="'+o.canonical_url+o.search_value+"&paged="+l+'" data-page="'+l+'" />':'<div class="alm-reveal alm-seo'+o.tcc+'" data-url="'+o.canonical_url+o.seo_leading_slash+"page/"+l+o.seo_trailing_slash+o.search_value+'" data-page="'+l+'" />')):m=t('<div class="alm-reveal alm-seo'+o.tcc+'" data-url="'+o.canonical_url+o.search_value+'" data-page="1" />'),m.append(d[g]),m=t(m),o.el.append(m)}}else{if(o.seo&&o.page>0||"true"===o.preloaded){var f="true"===o.preloaded?1:0;l=o.page+1+f,o.seo?"default"===o.permalink?o.el=t('<div class="alm-reveal alm-seo'+o.tcc+'" '+i+' data-url="'+o.canonical_url+o.search_value+"&paged="+l+'" data-page="'+l+'" />'):o.el=t('<div class="alm-reveal alm-seo'+o.tcc+'" '+i+' data-url="'+o.canonical_url+o.seo_leading_slash+"page/"+l+o.seo_trailing_slash+o.search_value+'" data-page="'+l+'" />'):o.filters?o.el=t('<div class="alm-reveal alm-filters'+o.tcc+'" '+i+' data-url="'+o.canonical_url+p+'" data-page="'+l+'" />'):o.el=t('<div class="alm-reveal'+o.tcc+'" '+i+" />")}else o.filters?o.el=t('<div class="alm-reveal alm-filters'+o.tcc+'" '+i+' data-url="'+o.canonical_url+p+'" data-page="'+(o.page+1)+'" />'):o.seo?o.el=t('<div class="alm-reveal alm-seo'+o.tcc+'" '+i+' data-url="'+o.canonical_url+o.search_value+'" data-page="1" />'):o.el=t('<div class="alm-reveal'+o.tcc+'" '+i+" />");o.el.append(o.data)}}else o.el=o.data;("masonry"!==o.transition||o.init&&!o.is_masonry_preloaded)&&o.content.append(o.el),"masonry"===o.transition?(almMasonry(o.masonry_wrap,o.el,o.masonry_selector,o.masonry_animation,o.masonry_horizontalorder,o.speed,o.masonry_init,o.init,alm_is_filtering),o.masonry_init=!1,o.AjaxLoadMore.transitionEnd()):"none"===o.transition?(o.AjaxLoadMore.fadeIn(o.el.get(0),0),o.AjaxLoadMore.transitionEnd()):"true"===o.images_loaded?o.el.almWaitForImages().done(function(){o.AjaxLoadMore.fadeIn(o.el.get(0),o.speed),o.AjaxLoadMore.transitionEnd()}):(o.AjaxLoadMore.fadeIn(o.el.get(0),o.speed),o.AjaxLoadMore.transitionEnd())}t.isFunction(t.fn.almComplete)&&("true"===o.images_loaded?o.el.almWaitForImages().done(function(){t.fn.almComplete(o)}):t.fn.almComplete(o)),o.cache?s<o.posts_per_page&&o.AjaxLoadMore.triggerDone():o.posts>=o.totalposts&&!o.previous_post&&o.AjaxLoadMore.triggerDone()}else o.paging||(o.button.delay(o.speed).removeClass("loading").addClass("done"),o.AjaxLoadMore.resetBtnText()),o.AjaxLoadMore.triggerDone();if(void 0!==o.destroy_after&&""!==o.destroy_after){var v=o.page+1;"true"===o.preloaded&&v++,v==o.destroy_after&&o.AjaxLoadMore.destroyed()}alm_is_filtering=!1,o.init=!1},o.AjaxLoadMore.pagingPreloadedInit=function(a){a=null==a?"":a,o.el=t('<div class="alm-reveal'+o.tcc+'"/>'),o.el.append('<div class="alm-paging-content">'+a+'</div><div class="alm-paging-loading"></div>'),o.content.append(o.el),o.content.parent().removeClass("loading"),o.AjaxLoadMore.resetBtnText();var e=parseInt(o.content.css("padding-top")),n=parseInt(o.content.css("padding-bottom"));o.content.css("height",o.el.height()+e+n+"px"),""===a&&(t.isFunction(t.fn.almPagingEmpty)&&t.fn.almPagingEmpty(o),t.isFunction(t.fn.almEmpty)&&t.fn.almEmpty(o)),setTimeout(function(){t.isFunction(t.fn.almFadePageControls)&&t.fn.almFadePageControls(o.btnWrap)},o.speed)},o.AjaxLoadMore.pagingNextpageInit=function(a){o.el=t('<div class="alm-reveal alm-nextpage"/>'),o.el.append('<div class="alm-paging-content">'+a+'</div><div class="alm-paging-loading"></div>'),o.el.appendTo(o.content),o.content.parent().removeClass("loading"),o.AjaxLoadMore.resetBtnText();var e=parseInt(o.content.css("padding-top")),n=parseInt(o.content.css("padding-bottom"));o.content.css("height",o.el.height()+e+n+"px"),t.isFunction(t.fn.almSetNextPageVars)&&t.fn.almSetNextPageVars(o),setTimeout(function(){t.isFunction(t.fn.almFadePageControls)&&t.fn.almFadePageControls(o.btnWrap),t.isFunction(t.fn.almOnWindowResize)&&t.fn.almOnWindowResize(o)},o.speed)},o.fetchingPreviousPost=!1,o.AjaxLoadMore.getPreviousPost=function(){o.fetchingPreviousPost=!0;var a={action:"alm_query_previous_post",id:o.previous_post_id,taxonomy:o.previous_post_taxonomy,excluded_terms:o.previous_post_excluded_terms};t.ajax({type:"GET",dataType:"JSON",url:alm_localize.ajaxurl,data:a,success:function(a){a.has_previous_post?(o.content.attr("data-previous-post-id",a.prev_id),o.previous_post_id=a.prev_id,o.previous_post_permalink=a.prev_permalink,o.previous_post_title=a.prev_title,o.previous_post_slug=a.prev_slug):a.has_previous_post||o.AjaxLoadMore.triggerDone(),t.isFunction(t.fn.almSetPreviousPost)&&t.fn.almSetPreviousPost(o,a.current_id,a.permalink,a.title),o.fetchingPreviousPost=!1},error:function(t,a,e){o.AjaxLoadMore.error(t,a,e),o.fetchingPreviousPost=!1}})},o.AjaxLoadMore.triggerAddons=function(a){t.isFunction(t.fn.almSEO)&&a.seo&&t.fn.almSEO(a,!1),t.isFunction(t.fn.almSetNextPage)&&t.fn.almSetNextPage(a)},o.AjaxLoadMore.triggerDone=function(){o.loading=!1,o.finished=!0,o.paging||o.button.addClass("done"),t.isFunction(t.fn.almDone)&&setTimeout(function(){t.fn.almDone(o)},o.speed+10)},o.AjaxLoadMore.resetBtnText=function(){!1===o.button_loading_label||o.paging||o.button.html(o.button_label)},o.AjaxLoadMore.error=function(t,a,e){o.loading=!1,o.paging||(o.button.removeClass("loading"),o.AjaxLoadMore.resetBtnText()),console.log(e)},o.paging||o.fetchingPreviousPost||(o.button.unbind("click"),o.button.on("click",function(a){a.preventDefault(),"true"===o.pause&&(o.pause=!1,o.pause_override=!1,o.AjaxLoadMore.loadPosts()),o.loading||o.finished||t(this).hasClass("done")||(o.loading=!0,o.page++,o.AjaxLoadMore.loadPosts()),o.filters&&"function"==typeof almFiltersPaged&&almFiltersPaged(o)})),o.paging&&(o.window.unbind("resizeEnd"),o.window.bind("resizeEnd",function(){t.isFunction(t.fn.almOnWindowResize)&&t.fn.almOnWindowResize(o)}),o.window.unbind("resize"),o.window.bind("resize",function(){this.resizeTO&&clearTimeout(this.resizeTO),this.resizeTO=setTimeout(function(){t(this).trigger("resizeEnd")},o.speed)})),o.AjaxLoadMore.isVisible=function(){return o.visible=!1,o.el.is(":visible")&&(o.visible=!0),o.visible},o.scroll&&!o.paging&&(""!==o.scroll_container&&(o.window=t(o.scroll_container)),o.window.bind("scroll touchstart",function(){if(o.AjaxLoadMore.isVisible()&&!o.fetchingPreviousPost){var t=o.button.offset().top,a=Math.round(t-(o.window.height()-o.scroll_distance)),e=o.window.scrollTop()>=a;""!==o.scroll_container&&(e=o.button.offset().top-(o.window.height()-o.scroll_distance)<o.window.offset().top),!o.loading&&!o.finished&&e&&o.page<o.max_pages-1&&o.proceed&&"true"===o.pause&&"true"===o.pause_override?o.button.trigger("click"):!o.loading&&!o.finished&&e&&o.page<o.max_pages-1&&o.proceed&&"true"!==o.pause&&o.button.trigger("click")}})),o.AjaxLoadMore.destroyed=function(){o.disable_ajax=!0,o.paging||(o.button.delay(o.speed).fadeOut(o.speed),t.isFunction(t.fn.almDestroyed)&&t.fn.almDestroyed(o))},o.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(){e>.9&&(t.style.opacity=1,clearInterval(o)),t.style.opacity=e,e+=.1},a);t.style.height="auto"}},o.AjaxLoadMore.transitionEnd=function(){setTimeout(function(){o.loading=!1,o.container.removeClass("alm-loading"),o.AjaxLoadMore.triggerAddons(o),o.paging||(o.button.delay(o.speed).removeClass("loading"),o.AjaxLoadMore.resetBtnText())},o.speed)},o.AjaxLoadMore.init=function(){"true"===o.preloaded&&1==o.destroy_after&&o.AjaxLoadMore.destroyed(),o.paging||o.previous_post||(o.disable_ajax?(o.finished=!0,o.button.addClass("done")):"true"===o.pause?(o.button.html(o.button_label),o.loading=!1):o.AjaxLoadMore.loadPosts()),o.previous_post&&(o.AjaxLoadMore.getPreviousPost(),o.loading=!1),"true"===o.preloaded&&o.seo&&!o.paging&&setTimeout(function(){t.isFunction(t.fn.almSEO)&&o.start_page<1&&t.fn.almSEO(o,!0)},o.speed),"true"!==o.preloaded||o.paging||setTimeout(function(){o.preloaded_total_posts<=parseInt(o.preloaded_amount)&&o.AjaxLoadMore.triggerDone(),0==o.preloaded_total_posts&&t.isFunction(t.fn.almEmpty)&&t.fn.almEmpty(o)},o.speed),o.nextpage&&t(".alm-nextpage").length>1&&t(".alm-nextpage").length==t(".alm-nextpage").eq(0).data("total-pages")&&o.AjaxLoadMore.triggerDone(),o.window.bind("load",function(){o.is_masonry_preloaded&&(almMasonry(o.masonry_wrap,o.el,o.masonry_selector,o.masonry_animation,o.masonry_horizontalorder,o.speed,o.masonry_init,!0,!1),o.masonry_init=!1)})},o.AjaxLoadMore.init(),setTimeout(function(){o.proceed=!0},150),t.fn.almUpdateCurrentPage=function(a,e,o){o.page=a,o.nextpage&&!o.paging&&(o.page=o.page-1);var n="";o.paging_init&&"true"===o.preloaded?(n=t(".alm-preloaded .alm-reveal",o.el).html(),t(".alm-preloaded",o.el).remove(),o.preloaded_amount=0,o.AjaxLoadMore.pagingPreloadedInit(n),o.paging_init=!1,o.init=!1):o.paging_init&&o.nextpage?(n=t(".alm-nextpage",o.el).html(),t(".alm-nextpage",o.el).remove(),o.AjaxLoadMore.pagingNextpageInit(n),o.paging_init=!1,o.init=!1):o.AjaxLoadMore.loadPosts()},t.fn.almGetParentContainer=function(){return o.el.closest("#ajax-load-more")},t.fn.almGetObj=function(){return o},t.fn.almTriggerClick=function(){o.button.trigger("click")},t.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}},t.fn.ajaxloadmore=function(){return this.each(function(a){new t.ajaxloadmore(t(this),a)})};var a=document.querySelectorAll(".ajax-load-more-wrap");a.length&&[].concat(_toConsumableArray(a)).forEach(function(a,e){new t.ajaxloadmore(t(a),e)})}(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(t){t.almWaitForImages={hasImageProperties:["backgroundImage","listStyleImage","borderImage","borderCornerImage","cursor"],hasImageAttributes:["srcset"]},t.expr[":"]["has-src"]=function(a){return t(a).is('img[src][src!=""]')},t.expr[":"].uncached=function(a){return!!t(a).is(":has-src")&&!a.complete},t.fn.almWaitForImages=function(){var a,e,o,n=0,r=0,s=t.Deferred();if(t.isPlainObject(arguments[0])?(o=arguments[0].waitForAll,e=arguments[0].each,a=arguments[0].finished):1===arguments.length&&"boolean"===t.type(arguments[0])?o=arguments[0]:(a=arguments[0],e=arguments[1],o=arguments[2]),a=a||t.noop,e=e||t.noop,o=!!o,!t.isFunction(a)||!t.isFunction(e))throw new TypeError("An invalid callback was supplied.");return this.each(function(){var i=t(this),l=[],p=t.almWaitForImages.hasImageProperties||[],d=t.almWaitForImages.hasImageAttributes||[],c=/url\(\s*(['"]?)(.*?)\1\s*\)/g;o?i.find("*").addBack().each(function(){var a=t(this);a.is("img:has-src")&&l.push({src:a.attr("src"),element:a[0]}),t.each(p,function(t,e){var o,n=a.css(e);if(!n)return!0;for(;o=c.exec(n);)l.push({src:o[2],element:a[0]})}),t.each(d,function(e,o){var n,r=a.attr(o);if(!r)return!0;n=r.split(","),t.each(n,function(e,o){o=t.trim(o).split(" ")[0],l.push({src:o,element:a[0]})})})}):i.find("img:has-src").each(function(){l.push({src:this.src,element:this})}),n=l.length,r=0,0===n&&(a.call(i[0]),s.resolveWith(i[0])),t.each(l,function(o,l){var p=new Image,d="load.almWaitForImages error.almWaitForImages";t(p).one(d,function o(p){var c=[r,n,"load"==p.type];if(r++,e.apply(l.element,c),s.notifyWith(l.element,c),t(this).off(d,o),r==n)return a.call(i[0]),s.resolveWith(i[0]),!1}),p.src=l.src})}),s.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};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(a,e,o,n,r,s,i,l,d,p){var c=(i+100)/1e3+"s",_="scale(0.5)",g="scale(1)";"zoom-out"===r&&(_="translateY(-20px) scale(1.25)",g="translateY(0) scale(1)"),"slide-up"===r&&(_="translateY(50px)",g="translateY(0)"),"slide-down"===r&&(_="translateY(-50px)",g="translateY(0)"),"none"===r&&(g=_="translateY(0)"),n?isNaN(n)||(n=parseInt(n)):n=o,s="true"===s,p?(a.masonry("destroy"),a.append(e),t(a,e,o,r,s,i,!0,!0,!1)):l&&d?a.imagesLoaded(function(){a.masonry({itemSelector:o,transitionDuration:c,columnWidth:n,horizontalOrder:s,hiddenStyle:{transform:_,opacity:0},visibleStyle:{transform:g,opacity:1}}),almMasonryFadeIn(a[0].parentNode,i)}):e.imagesLoaded(function(){a.append(e).masonry("appended",e)})},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(v){v.ajaxloadmore=function(n,t){"true"===alm_localize.scrolltop&&v(window).scrollTop(0);var f=this;if(f.AjaxLoadMore={},f.window=v(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=n,f.container=n,f.container.addClass("alm-"+t).attr("data-alm-id",t),f.content=v(".alm-ajax",f.container),f.content_preloaded=v(".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=v(".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.lang=f.content.attr("data-lang"),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=v(".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 a=almGetParameterByName("pg");null!==a&&(f.filters_startpage=parseInt(a),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"),void 0===f.theme_repeater&&(f.theme_repeater="null"),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=v(".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";v.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={id:n.attr("data-id"),post_id:f.post_id,posts_per_page:f.posts_per_page,page:f.page,offset:f.offset,slug:f.slug,canonical_url:f.canonical_url,post_type:f.post_type,post_format:f.content.attr("data-post-format"),category:f.content.attr("data-category"),category__not_in:f.content.attr("data-category-not-in"),tag:f.content.attr("data-tag"),tag__not_in:f.content.attr("data-tag-not-in"),taxonomy:f.content.attr("data-taxonomy"),taxonomy_terms:f.content.attr("data-taxonomy-terms"),taxonomy_operator:f.content.attr("data-taxonomy-operator"),taxonomy_relation:f.content.attr("data-taxonomy-relation"),meta_key:f.content.attr("data-meta-key"),meta_value:f.content.attr("data-meta-value"),meta_compare:f.content.attr("data-meta-compare"),meta_relation:f.content.attr("data-meta-relation"),meta_type:f.content.attr("data-meta-type"),author:f.content.attr("data-author"),year:f.content.attr("data-year"),month:f.content.attr("data-month"),day:f.content.attr("data-day"),post_status:f.content.attr("data-post-status"),order:f.content.attr("data-order"),orderby:f.content.attr("data-orderby"),post__in:f.content.attr("data-post-in"),post__not_in:f.content.attr("data-post-not-in"),search:f.content.attr("data-search"),custom_args:f.content.attr("data-custom-args"),lang:f.lang,preloaded:f.preloaded,preloaded_amount:f.preloaded_amount,seo_start_page:f.start_page};v.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;v.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 v.ajax({type:"GET",url:alm_localize.ajaxurl,dataType:"JSON",data:{action:t,nonce:alm_localize.alm_nonce,query_type:a,id:n.attr("data-id"),post_id:f.post_id,slug:f.slug,canonical_url:f.canonical_url,cache_id:f.cache_id,cache_logged_in:f.cache_logged_in,repeater:f.repeater,theme_repeater:f.theme_repeater,acf:f.acf_array,nextpage:f.nextpage_array,cta:f.cta_array,comments:f.comments_array,users:f.users_array,post_type:f.post_type,sticky_posts:f.sticky_posts,post_format:f.content.attr("data-post-format"),category:f.content.attr("data-category"),category__not_in:f.content.attr("data-category-not-in"),tag:f.content.attr("data-tag"),tag__not_in:f.content.attr("data-tag-not-in"),taxonomy:f.content.attr("data-taxonomy"),taxonomy_terms:f.content.attr("data-taxonomy-terms"),taxonomy_operator:f.content.attr("data-taxonomy-operator"),taxonomy_relation:f.content.attr("data-taxonomy-relation"),meta_key:f.content.attr("data-meta-key"),meta_value:f.content.attr("data-meta-value"),meta_compare:f.content.attr("data-meta-compare"),meta_relation:f.content.attr("data-meta-relation"),meta_type:f.content.attr("data-meta-type"),author:f.content.attr("data-author"),year:f.content.attr("data-year"),month:f.content.attr("data-month"),day:f.content.attr("data-day"),post_status:f.content.attr("data-post-status"),order:f.content.attr("data-order"),orderby:f.content.attr("data-orderby"),post__in:f.content.attr("data-post-in"),post__not_in:f.content.attr("data-post-not-in"),exclude:f.content.attr("data-exclude"),search:f.content.attr("data-search"),custom_args:f.content.attr("data-custom-args"),posts_per_page:f.posts_per_page,page:f.page,offset:f.offset,preloaded:f.preloaded,preloaded_amount:f.preloaded_amount,seo_start_page:f.start_page,paging:f.paging,previous_post:f.previous_post_array,lang:f.lang},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?v.isFunction(v.fn.almBuildPagination)&&v.fn.almBuildPagination(t,f):"totalposts"===a&&f.paging&&v.isFunction(v.fn.almBuildPagination)&&v.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=v(e),a&&(n=f.data.length),f.init&&(f.paging?0<n&&(f.el=v('<div class="alm-reveal'+f.tcc+'" '+r+"/>"),f.el.append('<div class="alm-paging-content'+f.tcc+'"></div><div class="alm-paging-loading"></div>'),v(".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(){v(".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"),v.isFunction(v.fn.almFadePageControls)&&v.fn.almFadePageControls(f.btnWrap)})},f.speed)):f.button.html(f.button_label),0===n&&(f.paging&&v.isFunction(v.fn.almPagingEmpty)&&v.fn.almPagingEmpty(f),v.isFunction(v.fn.almEmpty)&&v.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)):v(".alm-paging-content",f.el).html("").append(f.data).almWaitForImages().done(function(){v(".alm-paging-loading",f.el).fadeOut(f.speed),v.isFunction(v.fn.almOnPagingComplete)&&v.fn.almOnPagingComplete(f),f.container.removeClass("alm-loading"),f.AjaxLoadMore.triggerAddons(f)});else{if(f.previous_post)f.el=v('<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?v('<div class="alm-reveal alm-seo'+f.tcc+'" data-url="'+f.canonical_url+f.search_value+"&paged="+s+'" data-page="'+s+'" />'):v('<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=v('<div class="alm-reveal alm-seo'+f.tcc+'" data-url="'+f.canonical_url+f.search_value+'" data-page="1" />'),g.append(l[c]),g=v(g),f.el.append(g)}}else{if(f.seo&&0<f.page||"true"===f.preloaded){var u="true"===f.preloaded?1:0;s=f.page+1+u,f.seo?"default"===f.permalink?f.el=v('<div class="alm-reveal alm-seo'+f.tcc+'" '+r+' data-url="'+f.canonical_url+f.search_value+"&paged="+s+'" data-page="'+s+'" />'):f.el=v('<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=v('<div class="alm-reveal alm-filters'+f.tcc+'" '+r+' data-url="'+f.canonical_url+i+'" data-page="'+s+'" />'):f.el=v('<div class="alm-reveal'+f.tcc+'" '+r+" />")}else f.filters?f.el=v('<div class="alm-reveal alm-filters'+f.tcc+'" '+r+' data-url="'+f.canonical_url+i+'" data-page="'+(f.page+1)+'" />'):f.seo?f.el=v('<div class="alm-reveal alm-seo'+f.tcc+'" '+r+' data-url="'+f.canonical_url+f.search_value+'" data-page="1" />'):f.el=v('<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())}v.isFunction(v.fn.almComplete)&&("true"===f.images_loaded?f.el.almWaitForImages().done(function(){v.fn.almComplete(f)}):v.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 m=f.page+1;"true"===f.preloaded&&m++,m==f.destroy_after&&f.AjaxLoadMore.destroyed()}alm_is_filtering=!1,f.init=!1},f.AjaxLoadMore.pagingPreloadedInit=function(t){t=null==t?"":t,f.el=v('<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&&(v.isFunction(v.fn.almPagingEmpty)&&v.fn.almPagingEmpty(f),v.isFunction(v.fn.almEmpty)&&v.fn.almEmpty(f)),setTimeout(function(){v.isFunction(v.fn.almFadePageControls)&&v.fn.almFadePageControls(f.btnWrap)},f.speed)},f.AjaxLoadMore.pagingNextpageInit=function(t){f.el=v('<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"),v.isFunction(v.fn.almSetNextPageVars)&&v.fn.almSetNextPageVars(f),setTimeout(function(){v.isFunction(v.fn.almFadePageControls)&&v.fn.almFadePageControls(f.btnWrap),v.isFunction(v.fn.almOnWindowResize)&&v.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};v.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(),v.isFunction(v.fn.almSetPreviousPost)&&v.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){v.isFunction(v.fn.almSEO)&&t.seo&&v.fn.almSEO(t,!1),v.isFunction(v.fn.almSetNextPage)&&v.fn.almSetNextPage(t)},f.AjaxLoadMore.triggerDone=function(){f.loading=!1,f.finished=!0,f.paging||f.button.addClass("done"),v.isFunction(v.fn.almDone)&&setTimeout(function(){v.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||v(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(){v.isFunction(v.fn.almOnWindowResize)&&v.fn.almOnWindowResize(f)}),f.window.unbind("resize"),f.window.bind("resize",function(){this.resizeTO&&clearTimeout(this.resizeTO),this.resizeTO=setTimeout(function(){v(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&&(f.window=v(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),v.isFunction(v.fn.almDestroyed)&&v.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(){v.isFunction(v.fn.almSEO)&&f.start_page<1&&v.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&&v.isFunction(v.fn.almEmpty)&&v.fn.almEmpty(f)},f.speed),f.nextpage)&&(1<v(".alm-nextpage").length&&v(".alm-nextpage").length==v(".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),v.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=v(".alm-preloaded .alm-reveal",e.el).html(),v(".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=v(".alm-nextpage",e.el).html(),v(".alm-nextpage",e.el).remove(),e.AjaxLoadMore.pagingNextpageInit(o),e.paging_init=!1,e.init=!1):e.AjaxLoadMore.loadPosts()},v.fn.almGetParentContainer=function(){return f.el.closest("#ajax-load-more")},v.fn.almGetObj=function(){return f},v.fn.almTriggerClick=function(){f.button.trigger("click")},v.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}},v.fn.ajaxloadmore=function(){return this.each(function(t){new v.ajaxloadmore(v(this),t)})};var t=document.querySelectorAll(".ajax-load-more-wrap");t.length&&[].concat(_toConsumableArray(t)).forEach(function(t,a){new v.ajaxloadmore(v(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 u="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."+u+" error."+u;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/functions.php CHANGED
@@ -42,27 +42,9 @@ function alm_progress_css($counter, $progress_bar, $progress_bar_color){
42
  if($counter == 1 && $progress_bar === 'true'){
43
  $style = '
44
  <style>
45
- .pace {
46
- -webkit-pointer-events: none;
47
- pointer-events: none;
48
- -webkit-user-select: none;
49
- -moz-user-select: none;
50
- user-select: none;
51
- }
52
- .pace-inactive {
53
- display: none;
54
- }
55
- .pace .pace-progress {
56
- background: #'. $progress_bar_color .';
57
- position: fixed;
58
- z-index: 2000;
59
- top: 0;
60
- right: 100%;
61
- width: 100%;
62
- height: 5px;
63
- -webkit-box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
64
- box-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
65
- }
66
  </style>';
67
  return $style;
68
  }
@@ -116,10 +98,12 @@ function alm_do_inline_css($setting) {
116
  * alm_get_current_repeater
117
  * Get the current repeater template file
118
  *
119
- * @param $repeater string current repater name*
120
- * @param $type string The type of template
 
121
  * @return $include (file path)
122
  * @since 2.5.0
 
123
  */
124
 
125
  function alm_get_current_repeater($repeater, $type) {
@@ -127,7 +111,7 @@ function alm_get_current_repeater($repeater, $type) {
127
  $template = $repeater;
128
  $include = '';
129
 
130
- // If is Custom Repeaters (Custom Repeaters v1)
131
  if( $type == 'repeater' && has_action('alm_repeater_installed' )){
132
  $include = ALM_REPEATER_PATH . 'repeaters/'. $template .'.php';
133
 
@@ -136,34 +120,44 @@ function alm_get_current_repeater($repeater, $type) {
136
  }
137
 
138
  }
139
- // If is Unlimited Repeaters (Custom Repeaters v2)
 
140
  elseif( $type == 'template_' && has_action('alm_unlimited_installed' )){
141
- global $wpdb;
142
- $blog_id = $wpdb->blogid;
143
-
144
- if($blog_id > 1){
145
- $include = ALM_UNLIMITED_PATH. 'repeaters/'. $blog_id .'/'.$template .'.php';
146
- }else{
147
- $include = ALM_UNLIMITED_PATH. 'repeaters/'.$template .'.php';
 
 
 
 
 
 
 
 
 
148
  }
149
 
150
  if(!file_exists($include)){ //confirm file exists
151
  $include = alm_get_default_repeater();
152
  }
153
  }
 
154
  // Default repeater
155
  else{
156
  $include = alm_get_default_repeater();
157
  }
158
 
159
  // Security check
160
- // check if $template contains relative path. So, set include to default
161
  if ( false !== strpos( $template, './' ) ) {
162
  $include = alm_get_default_repeater();
163
  }
164
 
165
  return $include;
166
-
167
  }
168
 
169
 
42
  if($counter == 1 && $progress_bar === 'true'){
43
  $style = '
44
  <style>
45
+ .pace { -webkit-pointer-events: none; pointer-events: none; -webkit-user-select: none; -moz-user-select: none; user-select: none; }
46
+ .pace-inactive { display: none; }
47
+ .pace .pace-progress { background: #'. $progress_bar_color .'; position: fixed; z-index: 2000; top: 0; right: 100%; width: 100%; height: 5px; -webkit-box-shadow: 0 0 3px rgba(255, 255, 255, 0.3); box-shadow: 0 0 2px rgba(255, 255, 255, 0.3); }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  </style>';
49
  return $style;
50
  }
98
  * alm_get_current_repeater
99
  * Get the current repeater template file
100
  *
101
+ * @param string $repeater current repater name
102
+ * @param string $type Type of template
103
+ *
104
  * @return $include (file path)
105
  * @since 2.5.0
106
+ * @updated 3.5.1
107
  */
108
 
109
  function alm_get_current_repeater($repeater, $type) {
111
  $template = $repeater;
112
  $include = '';
113
 
114
+ // Custom Repeaters v1
115
  if( $type == 'repeater' && has_action('alm_repeater_installed' )){
116
  $include = ALM_REPEATER_PATH . 'repeaters/'. $template .'.php';
117
 
120
  }
121
 
122
  }
123
+
124
+ // Custom Repeaters v2
125
  elseif( $type == 'template_' && has_action('alm_unlimited_installed' )){
126
+
127
+
128
+ // Custom Repeaters 2.5+
129
+ if(ALM_UNLIMITED_VERSION >= '2.5'){
130
+
131
+ // Get path to repeater (alm_templates)
132
+ $base_dir = AjaxLoadMore::alm_get_repeater_path();
133
+ $include = $base_dir .'/'. $template .'.php';
134
+
135
+ } else {
136
+
137
+ global $wpdb;
138
+ $blog_id = $wpdb->blogid;
139
+
140
+ $include = ($blog_id > 1) ? ALM_UNLIMITED_PATH. 'repeaters/'. $blog_id .'/'. $template .'.php' : ALM_UNLIMITED_PATH. 'repeaters/'. $template .'.php';
141
+
142
  }
143
 
144
  if(!file_exists($include)){ //confirm file exists
145
  $include = alm_get_default_repeater();
146
  }
147
  }
148
+
149
  // Default repeater
150
  else{
151
  $include = alm_get_default_repeater();
152
  }
153
 
154
  // Security check
155
+ // Confirm $template does NOT contains relative path
156
  if ( false !== strpos( $template, './' ) ) {
157
  $include = alm_get_default_repeater();
158
  }
159
 
160
  return $include;
 
161
  }
162
 
163
 
core/src/js/ajax-load-more.js CHANGED
@@ -380,6 +380,7 @@
380
  if(alm.transition === 'masonry'){
381
  alm.masonry_init = true;
382
  alm.masonry_selector = alm.content.attr('data-masonry-selector');
 
383
  alm.masonry_animation = alm.content.attr('data-masonry-animation');
384
  alm.masonry_horizontalorder = alm.content.attr('data-masonry-horizontalorder');
385
  if (alm.masonry_animation === undefined){
@@ -832,7 +833,7 @@
832
  // Is pagination
833
  if (total > 0) {
834
  alm.el = $('<div class="alm-reveal'+alm.tcc+'" '+ loadingStyle +'/>');
835
- alm.el.append('<div class="alm-paging-content"></div><div class="alm-paging-loading"></div>');
836
  $('.alm-paging-content', alm.el).append(alm.data);
837
  alm.content.append(alm.el);
838
  alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
@@ -1025,7 +1026,7 @@
1025
 
1026
  // Masonry
1027
  if(alm.transition === 'masonry') {
1028
- almMasonry(alm.masonry_wrap, alm.el, alm.masonry_selector, alm.masonry_animation, alm.masonry_horizontalorder, alm.speed, alm.masonry_init, alm.init, alm_is_filtering);
1029
  alm.masonry_init = false;
1030
  alm.AjaxLoadMore.transitionEnd();
1031
 
@@ -1040,11 +1041,15 @@
1040
  else {
1041
  if(alm.images_loaded === 'true'){
1042
  alm.el.almWaitForImages().done(function(){
1043
- alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
 
 
1044
  alm.AjaxLoadMore.transitionEnd();
1045
  });
1046
  }else{
1047
- alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
 
 
1048
  alm.AjaxLoadMore.transitionEnd();
1049
  }
1050
  }
@@ -1590,7 +1595,7 @@
1590
  // Masonry + Preloaded
1591
  alm.window.bind('load', function(){
1592
  if(alm.is_masonry_preloaded){
1593
- almMasonry(alm.masonry_wrap, alm.el, alm.masonry_selector, alm.masonry_animation, alm.masonry_horizontalorder, alm.speed, alm.masonry_init, true, false);
1594
  alm.masonry_init = false;
1595
  }
1596
  });
380
  if(alm.transition === 'masonry'){
381
  alm.masonry_init = true;
382
  alm.masonry_selector = alm.content.attr('data-masonry-selector');
383
+ alm.masonry_columnwidth = alm.content.attr('data-masonry-columnwidth');
384
  alm.masonry_animation = alm.content.attr('data-masonry-animation');
385
  alm.masonry_horizontalorder = alm.content.attr('data-masonry-horizontalorder');
386
  if (alm.masonry_animation === undefined){
833
  // Is pagination
834
  if (total > 0) {
835
  alm.el = $('<div class="alm-reveal'+alm.tcc+'" '+ loadingStyle +'/>');
836
+ alm.el.append('<div class="alm-paging-content'+alm.tcc+'"></div><div class="alm-paging-loading"></div>');
837
  $('.alm-paging-content', alm.el).append(alm.data);
838
  alm.content.append(alm.el);
839
  alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
1026
 
1027
  // Masonry
1028
  if(alm.transition === 'masonry') {
1029
+ almMasonry(alm.masonry_wrap, alm.el, alm.masonry_selector, alm.masonry_columnwidth, alm.masonry_animation, alm.masonry_horizontalorder, alm.speed, alm.masonry_init, alm.init, alm_is_filtering);
1030
  alm.masonry_init = false;
1031
  alm.AjaxLoadMore.transitionEnd();
1032
 
1041
  else {
1042
  if(alm.images_loaded === 'true'){
1043
  alm.el.almWaitForImages().done(function(){
1044
+ if(alm.transition_container){
1045
+ alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
1046
+ }
1047
  alm.AjaxLoadMore.transitionEnd();
1048
  });
1049
  }else{
1050
+ if(alm.transition_container){
1051
+ alm.AjaxLoadMore.fadeIn(alm.el.get(0), alm.speed);
1052
+ }
1053
  alm.AjaxLoadMore.transitionEnd();
1054
  }
1055
  }
1595
  // Masonry + Preloaded
1596
  alm.window.bind('load', function(){
1597
  if(alm.is_masonry_preloaded){
1598
+ almMasonry(alm.masonry_wrap, alm.el, alm.masonry_selector, alm.masonry_columnwidth, alm.masonry_animation, alm.masonry_horizontalorder, alm.speed, alm.masonry_init, true, false);
1599
  alm.masonry_init = false;
1600
  }
1601
  });
core/src/js/modules/masonry.js CHANGED
@@ -6,6 +6,7 @@
6
  @param container object
7
  @param items object
8
  @param selector string
 
9
  @param animation string
10
  @param speed int
11
  @param masonry_init boolean
@@ -16,7 +17,7 @@
16
  */
17
 
18
 
19
- let almMasonry = (container, items, selector, animation, horizontalOrder, speed, masonry_init, init, filtering) => {
20
 
21
  let duration = (speed+100)/1000 +'s'; // Add 100 for some delay
22
  let hidden = 'scale(0.5)';
@@ -35,13 +36,23 @@ let almMasonry = (container, items, selector, animation, horizontalOrder, speed,
35
  if(animation === 'slide-down'){
36
  hidden = 'translateY(-50px)';
37
  visible = 'translateY(0)';
38
- }
39
 
40
  if(animation === 'none'){
41
- hidden = 'translateY(0)';
42
  visible = 'translateY(0)';
43
  }
44
 
 
 
 
 
 
 
 
 
 
 
45
  horizontalOrder = (horizontalOrder === 'true') ? true : false;
46
 
47
  if(!filtering){
@@ -52,7 +63,7 @@ let almMasonry = (container, items, selector, animation, horizontalOrder, speed,
52
  container.masonry({
53
  itemSelector: selector,
54
  transitionDuration: duration,
55
- columnWidth: selector,
56
  horizontalOrder: horizontalOrder,
57
  hiddenStyle: {
58
  transform: hidden,
@@ -69,9 +80,7 @@ let almMasonry = (container, items, selector, animation, horizontalOrder, speed,
69
 
70
  // Standard
71
  else{
72
- //container.append( items ); // Append new items
73
  items.imagesLoaded( () => {
74
- //items.show();
75
  container.append(items).masonry( 'appended', items );
76
  });
77
  }
6
  @param container object
7
  @param items object
8
  @param selector string
9
+ @param columnWidth string
10
  @param animation string
11
  @param speed int
12
  @param masonry_init boolean
17
  */
18
 
19
 
20
+ let almMasonry = (container, items, selector, columnWidth, animation, horizontalOrder, speed, masonry_init, init, filtering) => {
21
 
22
  let duration = (speed+100)/1000 +'s'; // Add 100 for some delay
23
  let hidden = 'scale(0.5)';
36
  if(animation === 'slide-down'){
37
  hidden = 'translateY(-50px)';
38
  visible = 'translateY(0)';
39
+ }
40
 
41
  if(animation === 'none'){
42
+ hidden = 'translateY(0)';
43
  visible = 'translateY(0)';
44
  }
45
 
46
+ // Set default columnWidth
47
+ if(columnWidth){
48
+ if(!isNaN(columnWidth)){// Check if number
49
+ columnWidth = parseInt(columnWidth);
50
+ }
51
+ } else { // No columnWidth, use the selector
52
+ columnWidth = selector;
53
+ }
54
+
55
+ // Set horizontalOrder
56
  horizontalOrder = (horizontalOrder === 'true') ? true : false;
57
 
58
  if(!filtering){
63
  container.masonry({
64
  itemSelector: selector,
65
  transitionDuration: duration,
66
+ columnWidth: columnWidth,
67
  horizontalOrder: horizontalOrder,
68
  hiddenStyle: {
69
  transform: hidden,
80
 
81
  // Standard
82
  else{
 
83
  items.imagesLoaded( () => {
 
84
  container.append(items).masonry( 'appended', items );
85
  });
86
  }
lang/ajax-load-more.pot CHANGED
@@ -2,418 +2,416 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Ajax Load More\n"
5
- "POT-Creation-Date: 2018-04-17 19:26-0400\n"
6
- "PO-Revision-Date: 2017-10-05 16:14-0500\n"
7
  "Last-Translator: Darren Cooney <darren@connekthq.com>\n"
8
  "Language-Team: \n"
9
  "Language: en_CA\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.0.6\n"
14
- "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
- "X-Poedit-SearchPath-0: ..\n"
 
 
18
 
19
- #: ../admin/admin-functions.php:32 ../admin/admin.php:443
20
- #: ../admin/admin.php:444 ../admin/shortcode-builder/components/cache.php:3
21
- #: ../admin/views/settings.php:60
22
  msgid "Cache"
23
  msgstr ""
24
 
25
- #: ../admin/admin-functions.php:33
26
  msgid "Improve performance with the Ajax Load More caching engine."
27
  msgstr ""
28
 
29
- #: ../admin/admin-functions.php:34
30
  msgid ""
31
  "The Cache add-on creates static HTML files of Ajax Load More requests then "
32
  "delivers those static files to your visitors."
33
  msgstr ""
34
 
35
- #: ../admin/admin-functions.php:44
36
- #: ../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
81
- #: ../admin/admin.php:463 ../admin/shortcode-builder/components/filters.php:3
82
- #: ../admin/views/settings.php:62
83
  msgid "Filters"
84
  msgstr ""
85
 
86
- #: ../admin/admin-functions.php:81
87
  msgid "Create custom Ajax Load More filters in seconds."
88
  msgstr ""
89
 
90
- #: ../admin/admin-functions.php:82
91
  msgid ""
92
  "The Filters add-on provides front-end and admin functionality for building "
93
  "and managing Ajax filters."
94
  msgstr ""
95
 
96
- #: ../admin/admin-functions.php:92 ../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
127
- #: ../admin/views/settings.php:66
128
  msgid "Paging"
129
  msgstr ""
130
 
131
- #: ../admin/admin-functions.php:117
132
  msgid "Extend Ajax Load More with a numbered navigation."
133
  msgstr ""
134
 
135
- #: ../admin/admin-functions.php:118
136
  msgid ""
137
  "The Paging add-on will transform the default infinite scroll functionality "
138
  "into a robust ajax powered navigation system."
139
  msgstr ""
140
 
141
- #: ../admin/admin-functions.php:128
142
- #: ../admin/shortcode-builder/components/preloaded.php:3
143
  msgid "Preloaded"
144
  msgstr ""
145
 
146
- #: ../admin/admin-functions.php:129
147
  msgid "Load an initial set of posts before making Ajax requests to the server."
148
  msgstr ""
149
 
150
- #: ../admin/admin-functions.php:130
151
  msgid ""
152
  "The Preloaded add-on will display content quicker and allow caching of the "
153
  "initial query which can reduce stress on your server."
154
  msgstr ""
155
 
156
- #: ../admin/admin-functions.php:140
157
- #: ../admin/shortcode-builder/components/previous-post.php:3
158
- #: ../admin/views/settings.php:68
159
  msgid "Previous Post"
160
  msgstr ""
161
 
162
- #: ../admin/admin-functions.php:141
163
  msgid "An add-on to enable infinite scrolling of single posts."
164
  msgstr ""
165
 
166
- #: ../admin/admin-functions.php:142
167
  msgid ""
168
  "The Previous Post add-on will load single posts as you scroll and update the "
169
  "browser URL to the current post."
170
  msgstr ""
171
 
172
- #: ../admin/admin-functions.php:152
173
  msgid "Search Engine Optimization"
174
  msgstr ""
175
 
176
- #: ../admin/admin-functions.php:153
177
  msgid "Generate unique paging URLs with every Ajax Load More query."
178
  msgstr ""
179
 
180
- #: ../admin/admin-functions.php:154
181
  msgid ""
182
  "The SEO add-on will optimize your ajax loaded content for search engines by "
183
  "generating unique URLs with every query."
184
  msgstr ""
185
 
186
- #: ../admin/admin-functions.php:164 ../admin/views/repeater-templates.php:31
187
- #: ../admin/views/settings.php:74
188
  msgid "Theme Repeaters"
189
  msgstr ""
190
 
191
- #: ../admin/admin-functions.php:165
192
  msgid "Manage repeater templates within your current theme directory."
193
  msgstr ""
194
 
195
- #: ../admin/admin-functions.php:166
196
  msgid ""
197
  "The Theme Repeater add-on will allow you load, edit and maintain templates "
198
  "from your current theme directory."
199
  msgstr ""
200
 
201
- #: ../admin/admin-functions.php:176
202
- #: ../admin/shortcode-builder/components/users.php:3
203
  msgid "Users"
204
  msgstr ""
205
 
206
- #: ../admin/admin-functions.php:177
207
  msgid "Enable infinite scrolling of WordPress users."
208
  msgstr ""
209
 
210
- #: ../admin/admin-functions.php:178
211
  msgid ""
212
  "The Users add-on will allow lazy loading of users by role using a "
213
  "WP_User_Query."
214
  msgstr ""
215
 
216
- #: ../admin/admin.php:47
217
  msgid ""
218
  "You have invalid <a href=\"admin.php?page=ajax-load-more\"><b>Ajax Load "
219
  "More</b></a> license keys - please visit the <a href=\"admin.php?page=ajax-"
220
  "load-more-licenses\">Licenses</a> section and input your license keys."
221
  msgstr ""
222
 
223
- #: ../admin/admin.php:125 ../admin/admin.php:185 ../admin/admin.php:799
224
- #: ../admin/admin.php:844 ../admin/admin.php:894
225
  msgid "You don't belong here."
226
  msgstr ""
227
 
228
- #: ../admin/admin.php:214
229
  msgid "Ajax Load More"
230
  msgstr ""
231
 
232
- #: ../admin/admin.php:215 ../admin/editor/editor-build.php:69
233
- #: ../admin/views/licenses.php:64
234
  msgid "Active"
235
  msgstr ""
236
 
237
- #: ../admin/admin.php:216 ../admin/editor/editor-build.php:70
238
- #: ../admin/views/licenses.php:68
239
  msgid "Inactive"
240
  msgstr ""
241
 
242
- #: ../admin/admin.php:217 ../admin/editor/editor-build.php:71
243
  msgid "Applying layout"
244
  msgstr ""
245
 
246
- #: ../admin/admin.php:218 ../admin/editor/editor-build.php:72
247
- #: ../admin/views/repeater-templates.php:376
248
  msgid "Template Updated"
249
  msgstr ""
250
 
251
- #: ../admin/admin.php:220 ../admin/editor/editor-build.php:74
252
  msgid "Select Author(s)"
253
  msgstr ""
254
 
255
- #: ../admin/admin.php:221 ../admin/editor/editor-build.php:75
256
  msgid "Select Categories"
257
  msgstr ""
258
 
259
- #: ../admin/admin.php:222 ../admin/editor/editor-build.php:76
260
  msgid "Select Tags"
261
  msgstr ""
262
 
263
- #: ../admin/admin.php:223 ../admin/editor/editor-build.php:41
264
- #: ../admin/editor/editor-build.php:77
265
  msgid "Jump to Option"
266
  msgstr ""
267
 
268
- #: ../admin/admin.php:224 ../admin/editor/editor-build.php:78
269
  msgid "Jump to Template"
270
  msgstr ""
271
 
272
- #: ../admin/admin.php:225
273
  msgid "Are you sure you want to install this Ajax Load More extension?"
274
  msgstr ""
275
 
276
- #: ../admin/admin.php:226
277
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:51
278
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:379
279
  msgid "Install Now"
280
  msgstr ""
281
 
282
- #: ../admin/admin.php:227
283
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:90
284
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:380
285
  msgid "Activate"
286
  msgstr ""
287
 
288
- #: ../admin/admin.php:228
289
  msgid "Saving Settings"
290
  msgstr ""
291
 
292
- #: ../admin/admin.php:229
293
  msgid "Settings Saved Successfully"
294
  msgstr ""
295
 
296
- #: ../admin/admin.php:230
297
  msgid "Error Saving Settings"
298
  msgstr ""
299
 
300
- #: ../admin/admin.php:330
301
  msgid ""
302
  "[Ajax Load More] Error opening default repeater template - Please check your "
303
  "file path and ensure your server is configured to allow Ajax Load More to "
304
  "read and write files within the /ajax-load-more/core/repeater directory"
305
  msgstr ""
306
 
307
- #: ../admin/admin.php:334
308
  msgid ""
309
  "[Ajax Load More] Error updating default repeater template - Please check "
310
  "your file path and ensure your server is configured to allow Ajax Load More "
311
  "to read and write files within the /ajax-load-more/core/repeater directory."
312
  msgstr ""
313
 
314
- #: ../admin/admin.php:756
315
  msgid "[Ajax Load More] Unable to open repeater template - "
316
  msgstr ""
317
 
318
- #: ../admin/admin.php:760
319
  msgid "[Ajax Load More] Error saving repeater template - "
320
  msgstr ""
321
 
322
- #: ../admin/admin.php:791
323
  msgid "Template Saved Successfully"
324
  msgstr ""
325
 
326
- #: ../admin/admin.php:793
327
  msgid "Error Writing File"
328
  msgstr ""
329
 
330
- #: ../admin/admin.php:793 ../admin/views/repeater-templates.php:317
331
  msgid "Something went wrong and the data could not be saved."
332
  msgstr ""
333
 
334
- #: ../admin/admin.php:998 ../admin/shortcode-builder/shortcode-builder.php:113
335
  msgid "Container Type"
336
  msgstr ""
337
 
338
- #: ../admin/admin.php:1006 ../admin/shortcode-builder/shortcode-builder.php:144
339
  msgid "Container Classes"
340
  msgstr ""
341
 
342
- #: ../admin/admin.php:1014
343
  msgid "Disable CSS"
344
  msgstr ""
345
 
346
- #: ../admin/admin.php:1022
347
  msgid "Button/Loading Style"
348
  msgstr ""
349
 
350
- #: ../admin/admin.php:1030
351
  msgid "Button Classes"
352
  msgstr ""
353
 
354
- #: ../admin/admin.php:1038
355
  msgid "Load CSS Inline"
356
  msgstr ""
357
 
358
- #: ../admin/admin.php:1046
359
  msgid "Top of Page"
360
  msgstr ""
361
 
362
- #: ../admin/admin.php:1054
363
  msgid "Dynamic Content"
364
  msgstr ""
365
 
366
- #: ../admin/admin.php:1062
367
  msgid "Editor Button"
368
  msgstr ""
369
 
370
- #: ../admin/admin.php:1070
371
  msgid "Error Notices"
372
  msgstr ""
373
 
374
- #: ../admin/admin.php:1147
375
  msgid ""
376
  "Customize the user experience of Ajax Load More by updating the fields below."
377
  msgstr ""
378
 
379
- #: ../admin/admin.php:1160
380
  msgid "The following settings affect the WordPress admin area only."
381
  msgstr ""
382
 
383
- #: ../admin/admin.php:1191
384
  msgid "I want to use my own CSS styles."
385
  msgstr ""
386
 
387
- #: ../admin/admin.php:1191
388
  msgid "View Ajax Load More CSS"
389
  msgstr ""
390
 
391
- #: ../admin/admin.php:1211
392
  msgid "Hide shortcode button in WYSIWYG editor."
393
  msgstr ""
394
 
395
- #: ../admin/admin.php:1232
396
  msgid ""
397
  "Display error messaging regarding repeater template updates in the browser "
398
  "console."
399
  msgstr ""
400
 
401
- #: ../admin/admin.php:1253
402
  msgid ""
403
  "Disable dynamic population of categories, tags and authors in the Shortcode "
404
  "Builder.<span style=\"display:block\">Recommended if you have a large number "
405
  "of categories, tags and/or authors."
406
  msgstr ""
407
 
408
- #: ../admin/admin.php:1274 ../admin/admin.php:1277
409
  msgid "Ajax Posts Here"
410
  msgstr ""
411
 
412
- #: ../admin/admin.php:1279
413
  msgid "You can modify the container type when building a shortcode."
414
  msgstr ""
415
 
416
- #: ../admin/admin.php:1296
417
  msgid ""
418
  "Add custom classes to the <i>.alm-listing</i> container - classes are "
419
  "applied globally and will appear with every instance of Ajax Load More. "
@@ -421,181 +419,181 @@ msgid ""
421
  "shortcode.</span>"
422
  msgstr ""
423
 
424
- #: ../admin/admin.php:1358
425
  msgid ""
426
  "Select an Ajax loading style - you can choose between a <strong>Button</"
427
  "strong> or <strong>Infinite Scroll</strong>"
428
  msgstr ""
429
 
430
- #: ../admin/admin.php:1363
431
  msgid "Button"
432
  msgstr ""
433
 
434
- #: ../admin/admin.php:1371
435
  msgid "Infinite Scroll (No Button)"
436
  msgstr ""
437
 
438
- #: ../admin/admin.php:1384
439
  msgid "Preview"
440
  msgstr ""
441
 
442
- #: ../admin/admin.php:1384 ../admin/shortcode-builder/shortcode-builder.php:168
443
- #: ../core/classes/class.alm-shortcode.php:151
444
  msgid "Older Posts"
445
  msgstr ""
446
 
447
- #: ../admin/admin.php:1405
448
  msgid "Improve site performance by loading Ajax Load More CSS inline"
449
  msgstr ""
450
 
451
- #: ../admin/admin.php:1425
452
  msgid "Add classes to your <strong>Load More</strong> button"
453
  msgstr ""
454
 
455
- #: ../admin/admin.php:1470
456
  msgid ""
457
  "On initial page load, move the user's browser window to the top of the "
458
  "screen.<span style=\"display:block\">This <u>may</u> help prevent the "
459
  "loading of unnecessary posts.</span>"
460
  msgstr ""
461
 
462
- #: ../admin/admin.php:1491
463
  msgid ""
464
  "Enable <a href=\"https://codex.wordpress.org/WordPress_Nonces\" target="
465
  "\"_blank\">WP nonce</a> verification to help protect URLs against certain "
466
  "types of misuse, malicious or otherwise on each Ajax Load More query."
467
  msgstr ""
468
 
469
- #: ../admin/editor/editor-build.php:45
470
  msgid ""
471
  "Create your own Ajax Load More shortcode by adjusting the parameters below:"
472
  msgstr ""
473
 
474
- #: ../admin/editor/editor-build.php:53
475
  msgid "Insert Shortcode"
476
  msgstr ""
477
 
478
- #: ../admin/editor/editor-build.php:56
479
  msgid "Copy"
480
  msgstr ""
481
 
482
- #: ../admin/editor/editor.php:19
483
  msgid "You are not allowed to be here"
484
  msgstr ""
485
 
486
- #: ../admin/includes/components/example-list.php:2
487
- #: ../admin/shortcode-builder/shortcode-builder.php:3
488
- #: ../admin/views/repeater-templates.php:104
489
- #: ../admin/views/repeater-templates.php:134
490
  msgid "Collapse All"
491
  msgstr ""
492
 
493
- #: ../admin/includes/components/example-list.php:2
494
- #: ../admin/shortcode-builder/shortcode-builder.php:4
495
- #: ../admin/views/repeater-templates.php:105
496
- #: ../admin/views/repeater-templates.php:135
497
  msgid "Expand All"
498
  msgstr ""
499
 
500
- #: ../admin/includes/components/example-list.php:5
501
  msgid "Archive.php"
502
  msgstr ""
503
 
504
- #: ../admin/includes/components/example-list.php:7
505
  msgid "Shortcode for use on generic archive page."
506
  msgstr ""
507
 
508
- #: ../admin/includes/components/example-list.php:15
509
  msgid "Author.php"
510
  msgstr ""
511
 
512
- #: ../admin/includes/components/example-list.php:17
513
  msgid "Shortcode for use on author archive pages."
514
  msgstr ""
515
 
516
- #: ../admin/includes/components/example-list.php:24
517
  msgid "Category.php"
518
  msgstr ""
519
 
520
- #: ../admin/includes/components/example-list.php:26
521
  msgid "Shortcode for use on category archive pages."
522
  msgstr ""
523
 
524
- #: ../admin/includes/components/example-list.php:33
525
  msgid "Date Archives"
526
  msgstr ""
527
 
528
- #: ../admin/includes/components/example-list.php:35
529
  msgid "Shortcode for use for archiving by date."
530
  msgstr ""
531
 
532
- #: ../admin/includes/components/example-list.php:42
533
  msgid "Excluding Posts"
534
  msgstr ""
535
 
536
- #: ../admin/includes/components/example-list.php:44
537
  msgid "Shortcode for excluding an array of posts."
538
  msgstr ""
539
 
540
- #: ../admin/includes/components/example-list.php:50
541
  msgid "Tag.php"
542
  msgstr ""
543
 
544
- #: ../admin/includes/components/example-list.php:52
545
  msgid "Shortcode for use on tag archive pages."
546
  msgstr ""
547
 
548
- #: ../admin/includes/components/layout-list.php:3
549
- msgid "Apply Layout"
550
- msgstr ""
551
-
552
- #: ../admin/includes/components/layout-list.php:16
553
  msgid "Default Layout"
554
  msgstr ""
555
 
556
- #: ../admin/includes/components/layout-list.php:25
557
  msgid ""
558
  "Unlock additional layout templates with the <strong>Layouts add-on</strong>"
559
  msgstr ""
560
 
561
- #: ../admin/includes/components/repeater-options.php:2
562
- #: ../admin/shortcode-builder/shortcode-builder.php:91
563
  msgid "Options"
564
  msgstr ""
565
 
566
- #: ../admin/includes/components/repeater-options.php:6
567
  msgid "Update Template from Database"
568
  msgstr ""
569
 
570
- #: ../admin/includes/components/repeater-options.php:7
 
 
 
 
571
  msgid "Copy Template Data"
572
  msgstr ""
573
 
574
- #: ../admin/includes/cta/about.php:2
575
  msgid "Other Plugins"
576
  msgstr ""
577
 
578
- #: ../admin/includes/cta/add-ons.php:2
579
  msgid "About ALM Add-ons"
580
  msgstr ""
581
 
582
- #: ../admin/includes/cta/config.php:2
583
  msgid "Plugin Configurations"
584
  msgstr ""
585
 
586
- #: ../admin/includes/cta/config.php:4
587
  msgid "Plugin Version"
588
  msgstr ""
589
 
590
- #: ../admin/includes/cta/config.php:10
591
  msgid "Release Date"
592
  msgstr ""
593
 
594
- #: ../admin/includes/cta/dyk.php:2
595
  msgid "Did You Know?"
596
  msgstr ""
597
 
598
- #: ../admin/includes/cta/extend.php:1
599
  msgid ""
600
  "Unlock additional templates with the <a href=\"https://connekthq.com/plugins/"
601
  "ajax-load-more/add-ons/custom-repeaters/?utm_source=WP"
@@ -603,80 +601,80 @@ msgid ""
603
  "\" target=\"_parent\">Custom Repeaters add-on</a>"
604
  msgstr ""
605
 
606
- #: ../admin/includes/cta/extend.php:1
607
  msgid "More Info"
608
  msgstr ""
609
 
610
- #: ../admin/includes/cta/resources.php:2
611
  msgid "Resources"
612
  msgstr ""
613
 
614
- #: ../admin/includes/cta/resources.php:5
615
  msgid "Ajax Load More Demo Site"
616
  msgstr ""
617
 
618
- #: ../admin/includes/cta/resources.php:6
619
  msgid "Documentation"
620
  msgstr ""
621
 
622
- #: ../admin/includes/cta/resources.php:7
623
  msgid "Support and Issues"
624
  msgstr ""
625
 
626
- #: ../admin/includes/cta/resources.php:8
627
  msgid "Reviews"
628
  msgstr ""
629
 
630
- #: ../admin/includes/cta/resources.php:9
631
  msgid "WordPress"
632
  msgstr ""
633
 
634
- #: ../admin/includes/cta/resources.php:10
635
  msgid "Github"
636
  msgstr ""
637
 
638
- #: ../admin/includes/cta/resources.php:11
639
  msgid "Twitter"
640
  msgstr ""
641
 
642
- #: ../admin/includes/cta/resources.php:12
643
  msgid "Facebook"
644
  msgstr ""
645
 
646
- #: ../admin/includes/cta/reviews.php:1
647
  msgid "Leave a Review"
648
  msgstr ""
649
 
650
- #: ../admin/includes/cta/reviews.php:2
651
  msgid ""
652
  "Good <em>or</em> bad - all reviews will help Ajax Load More push forward and "
653
  "grow."
654
  msgstr ""
655
 
656
- #: ../admin/includes/cta/reviews.php:4
657
  msgid "Write Review"
658
  msgstr ""
659
 
660
- #: ../admin/includes/cta/sharing.php:2
661
  msgid "Share Ajax Load More"
662
  msgstr ""
663
 
664
- #: ../admin/includes/cta/sharing.php:4
665
  msgid "Help spread the word by sharing Ajax Load More on Twitter and Facebook."
666
  msgstr ""
667
 
668
- #: ../admin/includes/cta/writeable.php:2
669
  msgid "Read/Write Access"
670
  msgstr ""
671
 
672
- #: ../admin/includes/cta/writeable.php:12
673
  msgid ""
674
  "<p class=\"writeable-title\"><i class=\"fa fa-check\"></i><strong>Enabled</"
675
  "strong></p><p class=\"desc\">Read/Write access is enabled within the "
676
  "Repeater Template directory."
677
  msgstr ""
678
 
679
- #: ../admin/includes/cta/writeable.php:14
680
  msgid ""
681
  "<p class=\"writeable-title\"><i class=\"fa fa-exclamation\"></"
682
  "i><strong>Access Denied</strong></p><p class=\"desc\">You must enable read "
@@ -684,250 +682,250 @@ msgid ""
684
  "your hosting provider or site administrator for more information.</p>"
685
  msgstr ""
686
 
687
- #: ../admin/includes/cta/writeable.php:17
688
  msgid ""
689
  "<p class=\"writeable-title\"><i class=\"fa fa-exclamation\"></"
690
  "i><strong>Error</strong></p><p class=\"desc\">Unable to locate configuration "
691
  "file. Directory access may not be granted."
692
  msgstr ""
693
 
694
- #: ../admin/shortcode-builder/components/acf.php:3
695
  msgid "Advanced Custom Fields"
696
  msgstr ""
697
 
698
- #: ../admin/shortcode-builder/components/acf.php:6
699
  msgid "Enable compatibility with Advanced Custom Fields."
700
  msgstr ""
701
 
702
- #: ../admin/shortcode-builder/components/acf.php:13
703
- #: ../admin/shortcode-builder/components/cache.php:13
704
- #: ../admin/shortcode-builder/components/comments.php:13
705
- #: ../admin/shortcode-builder/components/cta.php:14
706
- #: ../admin/shortcode-builder/components/filters.php:13
707
- #: ../admin/shortcode-builder/components/filters.php:78
708
- #: ../admin/shortcode-builder/components/filters.php:100
709
- #: ../admin/shortcode-builder/components/nextpage.php:13
710
- #: ../admin/shortcode-builder/components/paging.php:12
711
- #: ../admin/shortcode-builder/components/paging.php:35
712
- #: ../admin/shortcode-builder/components/preloaded.php:13
713
- #: ../admin/shortcode-builder/components/previous-post.php:13
714
- #: ../admin/shortcode-builder/components/rest-api.php:28
715
- #: ../admin/shortcode-builder/components/rest-api.php:108
716
- #: ../admin/shortcode-builder/components/seo.php:14
717
- #: ../admin/shortcode-builder/components/users.php:13
718
- #: ../admin/shortcode-builder/shortcode-builder.php:202
719
- #: ../admin/shortcode-builder/shortcode-builder.php:262
720
- #: ../admin/shortcode-builder/shortcode-builder.php:378
721
- #: ../admin/shortcode-builder/shortcode-builder.php:445
722
- #: ../admin/shortcode-builder/shortcode-builder.php:473
723
- #: ../admin/shortcode-builder/shortcode-builder.php:521
724
  msgid "True"
725
  msgstr ""
726
 
727
- #: ../admin/shortcode-builder/components/acf.php:17
728
- #: ../admin/shortcode-builder/components/cache.php:17
729
- #: ../admin/shortcode-builder/components/comments.php:17
730
- #: ../admin/shortcode-builder/components/cta.php:18
731
- #: ../admin/shortcode-builder/components/filters.php:17
732
- #: ../admin/shortcode-builder/components/filters.php:82
733
- #: ../admin/shortcode-builder/components/filters.php:104
734
- #: ../admin/shortcode-builder/components/nextpage.php:17
735
- #: ../admin/shortcode-builder/components/paging.php:16
736
- #: ../admin/shortcode-builder/components/paging.php:39
737
- #: ../admin/shortcode-builder/components/preloaded.php:17
738
- #: ../admin/shortcode-builder/components/previous-post.php:17
739
- #: ../admin/shortcode-builder/components/rest-api.php:32
740
- #: ../admin/shortcode-builder/components/rest-api.php:112
741
- #: ../admin/shortcode-builder/components/seo.php:18
742
- #: ../admin/shortcode-builder/components/users.php:17
743
- #: ../admin/shortcode-builder/shortcode-builder.php:206
744
- #: ../admin/shortcode-builder/shortcode-builder.php:266
745
- #: ../admin/shortcode-builder/shortcode-builder.php:382
746
- #: ../admin/shortcode-builder/shortcode-builder.php:449
747
- #: ../admin/shortcode-builder/shortcode-builder.php:477
748
- #: ../admin/shortcode-builder/shortcode-builder.php:525
749
  msgid "False"
750
  msgstr ""
751
 
752
- #: ../admin/shortcode-builder/components/acf.php:29
753
- #: ../admin/shortcode-builder/components/comments.php:28
754
- #: ../admin/shortcode-builder/components/nextpage.php:30
755
- #: ../admin/shortcode-builder/components/previous-post.php:27
756
  msgid "Post ID"
757
  msgstr ""
758
 
759
- #: ../admin/shortcode-builder/components/acf.php:29
760
  msgid ""
761
  "Leave this field blank and Ajax Load More will retrieve the ID from the "
762
  "global $post object"
763
  msgstr ""
764
 
765
- #: ../admin/shortcode-builder/components/acf.php:30
766
- #: ../admin/shortcode-builder/components/nextpage.php:31
767
  msgid "The ID of the current page/post."
768
  msgstr ""
769
 
770
- #: ../admin/shortcode-builder/components/acf.php:43
771
- #: ../admin/shortcode-builder/components/acf.php:48
772
- #: ../admin/shortcode-builder/components/acf.php:69
773
  msgid "Field Type"
774
  msgstr ""
775
 
776
- #: ../admin/shortcode-builder/components/acf.php:44
777
  msgid "Select the type of ACF field"
778
  msgstr ""
779
 
780
- #: ../admin/shortcode-builder/components/acf.php:50
781
  msgid "Select Field Type"
782
  msgstr ""
783
 
784
- #: ../admin/shortcode-builder/components/acf.php:51
785
  msgid "Flexible Content"
786
  msgstr ""
787
 
788
- #: ../admin/shortcode-builder/components/acf.php:52
789
  msgid "Gallery"
790
  msgstr ""
791
 
792
- #: ../admin/shortcode-builder/components/acf.php:53
793
  msgid "Relationship"
794
  msgstr ""
795
 
796
- #: ../admin/shortcode-builder/components/acf.php:54
797
  msgid "Repeater"
798
  msgstr ""
799
 
800
- #: ../admin/shortcode-builder/components/acf.php:64
801
  msgid "Field Name"
802
  msgstr ""
803
 
804
- #: ../admin/shortcode-builder/components/acf.php:65
805
  msgid "Enter the name of the ACF field"
806
  msgstr ""
807
 
808
- #: ../admin/shortcode-builder/components/cache.php:6
809
  msgid "Turn on content caching."
810
  msgstr ""
811
 
812
- #: ../admin/shortcode-builder/components/cache.php:27
813
  msgid "Cache ID"
814
  msgstr ""
815
 
816
- #: ../admin/shortcode-builder/components/cache.php:28
817
  msgid ""
818
  "You <u>must</u> generate a unique ID for this cached query - this unique ID "
819
  "will be used as a content identifier."
820
  msgstr ""
821
 
822
- #: ../admin/shortcode-builder/components/cache.php:34
823
  msgid "Generate Cache ID"
824
  msgstr ""
825
 
826
- #: ../admin/shortcode-builder/components/comments.php:6
827
  msgid "Enable Ajax Load More to display blog comments."
828
  msgstr ""
829
 
830
- #: ../admin/shortcode-builder/components/comments.php:29
831
- #: ../admin/shortcode-builder/components/previous-post.php:28
832
  msgid "The ID of the current single post."
833
  msgstr ""
834
 
835
- #: ../admin/shortcode-builder/components/comments.php:40
836
  msgid "Comments Per Page"
837
  msgstr ""
838
 
839
- #: ../admin/shortcode-builder/components/comments.php:41
840
  msgid "The number of top level items to show for each page of comments."
841
  msgstr ""
842
 
843
- #: ../admin/shortcode-builder/components/comments.php:49
844
  msgid ""
845
  "<strong>Note</strong>: The amount selected does NOT include comment replies."
846
  msgstr ""
847
 
848
- #: ../admin/shortcode-builder/components/comments.php:55
849
  msgid "Comment Type"
850
  msgstr ""
851
 
852
- #: ../admin/shortcode-builder/components/comments.php:56
853
  msgid "The type of comment(s) to display."
854
  msgstr ""
855
 
856
- #: ../admin/shortcode-builder/components/comments.php:61
857
  msgid "Comment"
858
  msgstr ""
859
 
860
- #: ../admin/shortcode-builder/components/comments.php:62
861
  msgid "All"
862
  msgstr ""
863
 
864
- #: ../admin/shortcode-builder/components/comments.php:63
865
  msgid "Trackback"
866
  msgstr ""
867
 
868
- #: ../admin/shortcode-builder/components/comments.php:64
869
  msgid "Pingback"
870
  msgstr ""
871
 
872
- #: ../admin/shortcode-builder/components/comments.php:65
873
  msgid "Pings"
874
  msgstr ""
875
 
876
- #: ../admin/shortcode-builder/components/comments.php:73
877
  msgid "Comment Style"
878
  msgstr ""
879
 
880
- #: ../admin/shortcode-builder/components/comments.php:74
881
  msgid "Select the HTML container style for your comments."
882
  msgstr ""
883
 
884
- #: ../admin/shortcode-builder/components/comments.php:99
885
  msgid "Comment Template"
886
  msgstr ""
887
 
888
- #: ../admin/shortcode-builder/components/comments.php:100
889
  msgid "Select a repeater template that will display comment data."
890
  msgstr ""
891
 
892
- #: ../admin/shortcode-builder/components/comments.php:106
893
- #: ../admin/shortcode-builder/shortcode-builder.php:288
894
- #: ../admin/shortcode-builder/shortcode-builder.php:358
895
  msgid "None"
896
  msgstr ""
897
 
898
- #: ../admin/shortcode-builder/components/comments.php:107
899
  msgid "Default"
900
  msgstr ""
901
 
902
- #: ../admin/shortcode-builder/components/comments.php:119
903
  msgid ""
904
  "<strong>Note</strong>: <span>None</span> will use the default WordPress "
905
  "comment layout."
906
  msgstr ""
907
 
908
- #: ../admin/shortcode-builder/components/comments.php:124
909
  msgid "or"
910
  msgstr ""
911
 
912
- #: ../admin/shortcode-builder/components/comments.php:128
913
  msgid "Callback Function"
914
  msgstr ""
915
 
916
- #: ../admin/shortcode-builder/components/comments.php:129
917
  msgid ""
918
  "A custom <a href=\"https://codex.wordpress.org/Function_Reference/"
919
  "wp_list_comments#Arguments\" target=\"_blank\">callback</a> function that "
920
  "will display each comment."
921
  msgstr ""
922
 
923
- #: ../admin/shortcode-builder/components/comments.php:137
924
  msgid ""
925
  "<strong>Note</strong>: The majority of premium themes have a custom callback "
926
  "function for displaying comments. Please see comments.php or functions.php "
927
  "within your theme directory to locate the callback function for your theme."
928
  msgstr ""
929
 
930
- #: ../admin/shortcode-builder/components/comments.php:142
931
  msgid ""
932
  "You must add the comments shortcode directly to your single template file "
933
  "using the <a href=\"https://developer.wordpress.org/reference/functions/"
@@ -936,179 +934,179 @@ msgid ""
936
  "\"_blank\">View documentation</a>"
937
  msgstr ""
938
 
939
- #: ../admin/shortcode-builder/components/cta.php:7
940
  msgid "Insert call to action block."
941
  msgstr ""
942
 
943
- #: ../admin/shortcode-builder/components/cta.php:31
944
  msgid "CTA Positioning"
945
  msgstr ""
946
 
947
- #: ../admin/shortcode-builder/components/cta.php:32
948
  msgid ""
949
  "Insert call to action <strong><em id=\"sequence-update-before-after"
950
  "\">before</em></strong> post #<strong><em id=\"sequence-update\">1</em></"
951
  "strong>"
952
  msgstr ""
953
 
954
- #: ../admin/shortcode-builder/components/cta.php:37
955
  msgid "Before / After"
956
  msgstr ""
957
 
958
- #: ../admin/shortcode-builder/components/cta.php:39
959
  msgid "Before"
960
  msgstr ""
961
 
962
- #: ../admin/shortcode-builder/components/cta.php:40
963
  msgid "After"
964
  msgstr ""
965
 
966
- #: ../admin/shortcode-builder/components/cta.php:44
967
  msgid "Post #"
968
  msgstr ""
969
 
970
- #: ../admin/shortcode-builder/components/cta.php:55
971
- #: ../admin/shortcode-builder/shortcode-builder.php:51
972
  msgid "Template"
973
  msgstr ""
974
 
975
- #: ../admin/shortcode-builder/components/cta.php:57
976
  msgid ""
977
  "Select the <a href=\"admin.php?page=ajax-load-more-repeaters\" target="
978
  "\"_parent\">repeater template</a> that will display your call to action."
979
  msgstr ""
980
 
981
- #: ../admin/shortcode-builder/components/cta.php:64
982
  msgid "-- Select Repeater --"
983
  msgstr ""
984
 
985
- #: ../admin/shortcode-builder/components/cta.php:84
986
  msgid ""
987
  "Call to actions do NOT count as a post within an Ajax Load More loop.<br/>\n"
988
  " For example, if you set <strong>posts_per_page=\"5\"</strong> "
989
  "in your shortcode, 6 items will be displayed."
990
  msgstr ""
991
 
992
- #: ../admin/shortcode-builder/components/filters.php:6
993
  msgid "Enable filters with this Ajax Load More instance."
994
  msgstr ""
995
 
996
- #: ../admin/shortcode-builder/components/filters.php:31
997
  msgid "Target"
998
  msgstr ""
999
 
1000
- #: ../admin/shortcode-builder/components/filters.php:31
1001
  msgid ""
1002
  "A target ID is not required but it is highly recommended to avoid issues "
1003
  "with querystring parsing on page load"
1004
  msgstr ""
1005
 
1006
- #: ../admin/shortcode-builder/components/filters.php:32
1007
  msgid ""
1008
  "Connect Ajax Load More to a specific <a href=\"admin.php?page=ajax-load-more-"
1009
  "filters\">filter instance</a> by selecting the filter ID"
1010
  msgstr ""
1011
 
1012
- #: ../admin/shortcode-builder/components/filters.php:52
1013
  msgid "-- Select Filter --"
1014
  msgstr ""
1015
 
1016
- #: ../admin/shortcode-builder/components/filters.php:56
1017
  msgid "You don't have any filters! The first step is to create one"
1018
  msgstr ""
1019
 
1020
- #: ../admin/shortcode-builder/components/filters.php:70
1021
  msgid "Analytics"
1022
  msgstr ""
1023
 
1024
- #: ../admin/shortcode-builder/components/filters.php:70
1025
  msgid ""
1026
  "Each time the filter is updated a pageview will be sent to Google Analytics"
1027
  msgstr ""
1028
 
1029
- #: ../admin/shortcode-builder/components/filters.php:71
1030
  msgid "Send pageviews to Google Analytics"
1031
  msgstr ""
1032
 
1033
- #: ../admin/shortcode-builder/components/filters.php:92
1034
- #: ../admin/shortcode-builder/components/rest-api.php:100
1035
  msgid "Debug Mode"
1036
  msgstr ""
1037
 
1038
- #: ../admin/shortcode-builder/components/filters.php:93
1039
  msgid ""
1040
  "Enable debugging of the Ajax Load More filter object in the browser console"
1041
  msgstr ""
1042
 
1043
- #: ../admin/shortcode-builder/components/nextpage.php:6
1044
  msgid "Enable the infinite scrolling of multipage WordPress content using the"
1045
  msgstr ""
1046
 
1047
- #: ../admin/shortcode-builder/components/nextpage.php:6
1048
  msgid "Quicktag"
1049
  msgstr ""
1050
 
1051
- #: ../admin/shortcode-builder/components/nextpage.php:43
1052
  msgid "URL Rewrite"
1053
  msgstr ""
1054
 
1055
- #: ../admin/shortcode-builder/components/nextpage.php:44
1056
  msgid "Update the browser address bar as pages come into view"
1057
  msgstr ""
1058
 
1059
- #: ../admin/shortcode-builder/components/nextpage.php:51
1060
  msgid "Yes, update the URL"
1061
  msgstr ""
1062
 
1063
- #: ../admin/shortcode-builder/components/nextpage.php:63
1064
  msgid "Google Analytics"
1065
  msgstr ""
1066
 
1067
- #: ../admin/shortcode-builder/components/nextpage.php:64
1068
  msgid ""
1069
  "You must have a reference to your Google Analytics tracking code already on "
1070
  "the page"
1071
  msgstr ""
1072
 
1073
- #: ../admin/shortcode-builder/components/nextpage.php:66
1074
  msgid "Each time a page is loaded it will count as a pageview"
1075
  msgstr ""
1076
 
1077
- #: ../admin/shortcode-builder/components/nextpage.php:73
1078
  msgid "Yes, send pageviews to Google Analytics"
1079
  msgstr ""
1080
 
1081
- #: ../admin/shortcode-builder/components/nextpage.php:84
1082
  msgid "Scroll to Page"
1083
  msgstr ""
1084
 
1085
- #: ../admin/shortcode-builder/components/nextpage.php:85
1086
  msgid "Set Scroll Speed to 0 to disable scrolling to page"
1087
  msgstr ""
1088
 
1089
- #: ../admin/shortcode-builder/components/nextpage.php:88
1090
  msgid "Scroll users automatically to the next page on 'Load More' button click"
1091
  msgstr ""
1092
 
1093
- #: ../admin/shortcode-builder/components/nextpage.php:94
1094
  msgid "Scroll Speed"
1095
  msgstr ""
1096
 
1097
- #: ../admin/shortcode-builder/components/nextpage.php:95
1098
  msgid "Scrolling speed in milliseconds (e.g. 1 second = 1000)"
1099
  msgstr ""
1100
 
1101
- #: ../admin/shortcode-builder/components/nextpage.php:101
1102
  msgid "Scroll Top"
1103
  msgstr ""
1104
 
1105
- #: ../admin/shortcode-builder/components/nextpage.php:102
1106
  msgid ""
1107
  "The scrolltop position of the window (used with scrolling and fwd/back "
1108
  "browser buttons)"
1109
  msgstr ""
1110
 
1111
- #: ../admin/shortcode-builder/components/nextpage.php:109
1112
  msgid ""
1113
  "You must add the Next Page shortcode directly to your single template file "
1114
  "using the <a href=\"https://developer.wordpress.org/reference/functions/"
@@ -1117,97 +1115,97 @@ msgid ""
1117
  "\"_blank\">View documentation</a>"
1118
  msgstr ""
1119
 
1120
- #: ../admin/shortcode-builder/components/paging.php:5
1121
  msgid "Replace infinite scrolling with a paged ajax navigation system."
1122
  msgstr ""
1123
 
1124
- #: ../admin/shortcode-builder/components/paging.php:27
1125
  msgid "Paging Controls"
1126
  msgstr ""
1127
 
1128
- #: ../admin/shortcode-builder/components/paging.php:28
1129
  msgid "Show (&laquo;)previous and next(&raquo;) buttons."
1130
  msgstr ""
1131
 
1132
- #: ../admin/shortcode-builder/components/paging.php:48
1133
  msgid "Paging Navigation Classes"
1134
  msgstr ""
1135
 
1136
- #: ../admin/shortcode-builder/components/paging.php:49
1137
  msgid "Add custom CSS classes to the paging navigation menu."
1138
  msgstr ""
1139
 
1140
- #: ../admin/shortcode-builder/components/paging.php:60
1141
  msgid "Show at Most"
1142
  msgstr ""
1143
 
1144
- #: ../admin/shortcode-builder/components/paging.php:61
1145
  msgid ""
1146
  "The maximum amount of page menu items to show at a time. <br/.>0 = no maximum"
1147
  msgstr ""
1148
 
1149
- #: ../admin/shortcode-builder/components/preloaded.php:6
1150
  msgid "Preload posts prior to making Ajax requests."
1151
  msgstr ""
1152
 
1153
- #: ../admin/shortcode-builder/components/preloaded.php:27
1154
  msgid "Preload Amount"
1155
  msgstr ""
1156
 
1157
- #: ../admin/shortcode-builder/components/preloaded.php:28
1158
  msgid "Enter the number of posts to preload."
1159
  msgstr ""
1160
 
1161
- #: ../admin/shortcode-builder/components/previous-post.php:6
1162
  msgid "Enable the infinite scrolling of single posts."
1163
  msgstr ""
1164
 
1165
- #: ../admin/shortcode-builder/components/previous-post.php:38
1166
- #: ../admin/shortcode-builder/shortcode-builder.php:794
1167
  msgid "Taxonomy"
1168
  msgstr ""
1169
 
1170
- #: ../admin/shortcode-builder/components/previous-post.php:38
1171
  msgid ""
1172
  "Selecting a taxonomy means only previous posts from the same taxonomy term "
1173
  "will be returned. If a post has multiple terms attached, each term will be "
1174
  "considered using an OR relationship query"
1175
  msgstr ""
1176
 
1177
- #: ../admin/shortcode-builder/components/previous-post.php:39
1178
  msgid "Query previous posts from the same taxonomy term(s)."
1179
  msgstr ""
1180
 
1181
- #: ../admin/shortcode-builder/components/previous-post.php:52
1182
- #: ../admin/shortcode-builder/includes/tax-query-options.php:5
1183
- #: ../admin/shortcode-builder/includes/tax-query-options.php:50
1184
- #: ../admin/shortcode-builder/includes/tax-query-options.php:81
1185
  msgid "Select Taxonomy"
1186
  msgstr ""
1187
 
1188
- #: ../admin/shortcode-builder/components/previous-post.php:53
1189
- #: ../admin/shortcode-builder/shortcode-builder.php:675
1190
  msgid "Category"
1191
  msgstr ""
1192
 
1193
- #: ../admin/shortcode-builder/components/previous-post.php:54
1194
- #: ../admin/shortcode-builder/shortcode-builder.php:735
1195
  msgid "Tag"
1196
  msgstr ""
1197
 
1198
- #: ../admin/shortcode-builder/components/previous-post.php:71
1199
  msgid "Excluded Terms "
1200
  msgstr ""
1201
 
1202
- #: ../admin/shortcode-builder/components/previous-post.php:71
1203
  msgid "A comma-separated list of excluded terms by ID"
1204
  msgstr ""
1205
 
1206
- #: ../admin/shortcode-builder/components/previous-post.php:72
1207
  msgid "Exclude posts by term ID from the previous post query."
1208
  msgstr ""
1209
 
1210
- #: ../admin/shortcode-builder/components/previous-post.php:81
1211
  msgid ""
1212
  "You must add the Previous Post shortcode directly to your single template "
1213
  "file using the <a href=\"https://developer.wordpress.org/reference/functions/"
@@ -1216,81 +1214,81 @@ msgid ""
1216
  "target=\"_blank\">View documentation</a>"
1217
  msgstr ""
1218
 
1219
- #: ../admin/shortcode-builder/components/rest-api.php:18
1220
- #: ../admin/views/settings.php:70
1221
  msgid "REST API"
1222
  msgstr ""
1223
 
1224
- #: ../admin/shortcode-builder/components/rest-api.php:21
1225
  msgid "Enable the WordPress REST API."
1226
  msgstr ""
1227
 
1228
- #: ../admin/shortcode-builder/components/rest-api.php:45
1229
  msgid "Base URL"
1230
  msgstr ""
1231
 
1232
- #: ../admin/shortcode-builder/components/rest-api.php:46
1233
  msgid "Set a default Base URL in the Ajax Load More settings panel"
1234
  msgstr ""
1235
 
1236
- #: ../admin/shortcode-builder/components/rest-api.php:47
1237
  msgid "Enter the base URL to your installation of the REST API."
1238
  msgstr ""
1239
 
1240
- #: ../admin/shortcode-builder/components/rest-api.php:59
1241
  msgid "Namespace"
1242
  msgstr ""
1243
 
1244
- #: ../admin/shortcode-builder/components/rest-api.php:60
1245
  msgid "Set a default Namespace in the Ajax Load More settings panel"
1246
  msgstr ""
1247
 
1248
- #: ../admin/shortcode-builder/components/rest-api.php:61
1249
  msgid "Enter the custom namespace for this Ajax Load More query."
1250
  msgstr ""
1251
 
1252
- #: ../admin/shortcode-builder/components/rest-api.php:73
1253
  msgid "Endpoint"
1254
  msgstr ""
1255
 
1256
- #: ../admin/shortcode-builder/components/rest-api.php:74
1257
  msgid "Set a default Endpoint in the Ajax Load More settings panel"
1258
  msgstr ""
1259
 
1260
- #: ../admin/shortcode-builder/components/rest-api.php:75
1261
  msgid "Enter your custom endpoint for this Ajax Load More query."
1262
  msgstr ""
1263
 
1264
- #: ../admin/shortcode-builder/components/rest-api.php:87
1265
  msgid "Template ID"
1266
  msgstr ""
1267
 
1268
- #: ../admin/shortcode-builder/components/rest-api.php:87
1269
  msgid ""
1270
  "Ajax Load More references this ID while looping and displaying your data. "
1271
  "You must still select a repeater template for this instance of Ajax Load More"
1272
  msgstr ""
1273
 
1274
- #: ../admin/shortcode-builder/components/rest-api.php:88
1275
  msgid ""
1276
  "Enter the ID of your javascript template.<br/><br/>e.g. <em>tmpl-alm-"
1277
  "template</em> = <em>alm-template</em>"
1278
  msgstr ""
1279
 
1280
- #: ../admin/shortcode-builder/components/rest-api.php:88
1281
- #: ../admin/shortcode-builder/shortcode-builder.php:464
1282
- #: ../admin/shortcode-builder/shortcode-builder.php:680
1283
- #: ../admin/shortcode-builder/shortcode-builder.php:739
1284
- #: ../admin/shortcode-builder/shortcode-builder.php:939
1285
  msgid "View Example"
1286
  msgstr ""
1287
 
1288
- #: ../admin/shortcode-builder/components/rest-api.php:101
1289
  msgid ""
1290
  "Enable debugging (console.log) of REST API responses in the browser console. "
1291
  msgstr ""
1292
 
1293
- #: ../admin/shortcode-builder/components/rest-api.php:119
1294
  msgid ""
1295
  "Visit <a href=\"http://v2.wp-api.org/\" target=\"_blank\">http://v2.wp-api."
1296
  "org</a> for documentation on creating custom <a href=\"http://v2.wp-api.org/"
@@ -1298,882 +1296,896 @@ msgid ""
1298
  "More."
1299
  msgstr ""
1300
 
1301
- #: ../admin/shortcode-builder/components/seo.php:4
1302
  msgid "SEO (Search Engine Optimization)"
1303
  msgstr ""
1304
 
1305
- #: ../admin/shortcode-builder/components/seo.php:7
1306
  msgid ""
1307
  "Enable address bar URL rewrites as users page through ajax loaded content."
1308
  msgstr ""
1309
 
1310
- #: ../admin/shortcode-builder/components/users.php:6
1311
  msgid "Infinite scroll WordPress users"
1312
  msgstr ""
1313
 
1314
- #: ../admin/shortcode-builder/components/users.php:28
1315
  msgid "User Role"
1316
  msgstr ""
1317
 
1318
- #: ../admin/shortcode-builder/components/users.php:29
1319
  msgid "Select the role of user to be displayed"
1320
  msgstr ""
1321
 
1322
- #: ../admin/shortcode-builder/components/users.php:34
1323
  msgid "Select Role"
1324
  msgstr ""
1325
 
1326
- #: ../admin/shortcode-builder/components/users.php:35
1327
  msgid "All Roles"
1328
  msgstr ""
1329
 
1330
- #: ../admin/shortcode-builder/components/users.php:55
1331
- #: ../admin/shortcode-builder/shortcode-builder.php:738
1332
- #: ../admin/shortcode-builder/shortcode-builder.php:927
1333
  msgid "Include"
1334
  msgstr ""
1335
 
1336
- #: ../admin/shortcode-builder/components/users.php:57
1337
  msgid "A comma separated list of users to be included by ID"
1338
  msgstr ""
1339
 
1340
- #: ../admin/shortcode-builder/components/users.php:69
1341
- #: ../admin/shortcode-builder/shortcode-builder.php:702
1342
- #: ../admin/shortcode-builder/shortcode-builder.php:760
1343
- #: ../admin/shortcode-builder/shortcode-builder.php:938
1344
  msgid "Exclude"
1345
  msgstr ""
1346
 
1347
- #: ../admin/shortcode-builder/components/users.php:71
1348
  msgid "A comma separated list of users to be excluded by ID"
1349
  msgstr ""
1350
 
1351
- #: ../admin/shortcode-builder/components/users.php:83
1352
  msgid "Users Per Page"
1353
  msgstr ""
1354
 
1355
- #: ../admin/shortcode-builder/components/users.php:84
1356
  msgid "The number of users to show."
1357
  msgstr ""
1358
 
1359
- #: ../admin/shortcode-builder/components/users.php:95
1360
  msgid "Orderby"
1361
  msgstr ""
1362
 
1363
- #: ../admin/shortcode-builder/components/users.php:96
1364
  msgid "Sort users by Order and Orderby parameters"
1365
  msgstr ""
1366
 
1367
- #: ../admin/shortcode-builder/components/users.php:100
1368
- #: ../admin/shortcode-builder/shortcode-builder.php:979
1369
  msgid "Order"
1370
  msgstr ""
1371
 
1372
- #: ../admin/shortcode-builder/components/users.php:107
1373
- #: ../admin/shortcode-builder/shortcode-builder.php:986
1374
  msgid "Order By"
1375
  msgstr ""
1376
 
1377
- #: ../admin/shortcode-builder/includes/meta-query-options.php:4
1378
  msgid "Key (Name):"
1379
  msgstr ""
1380
 
1381
- #: ../admin/shortcode-builder/includes/meta-query-options.php:5
1382
  msgid "Enter custom field key(name)"
1383
  msgstr ""
1384
 
1385
- #: ../admin/shortcode-builder/includes/meta-query-options.php:9
1386
  msgid "Value:"
1387
  msgstr ""
1388
 
1389
- #: ../admin/shortcode-builder/includes/meta-query-options.php:9
1390
  msgid ""
1391
  "Query multiple values by splitting each value with a comma - e.g. value, "
1392
  "value2, value3 etc."
1393
  msgstr ""
1394
 
1395
- #: ../admin/shortcode-builder/includes/meta-query-options.php:10
1396
  msgid "Enter custom field value(s)"
1397
  msgstr ""
1398
 
1399
- #: ../admin/shortcode-builder/includes/meta-query-options.php:15
1400
  msgid "Operator:"
1401
  msgstr ""
1402
 
1403
- #: ../admin/shortcode-builder/includes/meta-query-options.php:35
1404
  msgid "Type:"
1405
  msgstr ""
1406
 
1407
- #: ../admin/shortcode-builder/includes/tax-query-options.php:3
1408
- #: ../admin/shortcode-builder/includes/tax-query-options.php:47
1409
- #: ../admin/shortcode-builder/includes/tax-query-options.php:78
1410
  msgid "Taxonomy:"
1411
  msgstr ""
1412
 
1413
- #: ../admin/shortcode-builder/includes/tax-query-options.php:12
1414
- #: ../admin/shortcode-builder/includes/tax-query-options.php:57
1415
- #: ../admin/shortcode-builder/includes/tax-query-options.php:88
1416
  msgid "Taxonomy Terms:"
1417
  msgstr ""
1418
 
1419
- #: ../admin/shortcode-builder/includes/tax-query-options.php:17
1420
- #: ../admin/shortcode-builder/includes/tax-query-options.php:62
1421
- #: ../admin/shortcode-builder/includes/tax-query-options.php:93
1422
  msgid "Taxonomy Operator:"
1423
  msgstr ""
1424
 
1425
- #: ../admin/shortcode-builder/includes/tax-query-options.php:36
1426
- #: ../admin/shortcode-builder/shortcode-builder.php:854
1427
  msgid "Relation:"
1428
  msgstr ""
1429
 
1430
- #: ../admin/shortcode-builder/includes/tax-query-options.php:36
1431
  msgid ""
1432
  "The logical relationship between each taxonomy when there is more than one."
1433
  msgstr ""
1434
 
1435
- #: ../admin/shortcode-builder/shortcode-builder.php:23
1436
  msgid "Add-ons & Extensions"
1437
  msgstr ""
1438
 
1439
- #: ../admin/shortcode-builder/shortcode-builder.php:46
1440
  msgid "Display Settings"
1441
  msgstr ""
1442
 
1443
- #: ../admin/shortcode-builder/shortcode-builder.php:55
1444
  msgid "Repeater Template"
1445
  msgstr ""
1446
 
1447
- #: ../admin/shortcode-builder/shortcode-builder.php:57
1448
  msgid ""
1449
  "Select which <a href=\"admin.php?page=ajax-load-more-repeaters\" target="
1450
  "\"_parent\">repeater template</a> you would like to use."
1451
  msgstr ""
1452
 
1453
- #: ../admin/shortcode-builder/shortcode-builder.php:96
1454
  msgid "ID"
1455
  msgstr ""
1456
 
1457
- #: ../admin/shortcode-builder/shortcode-builder.php:96
1458
  msgid ""
1459
  "Adding a unique ID will allow you target this specific Ajax Load More "
1460
  "instance with the alm_query_args_id() filter"
1461
  msgstr ""
1462
 
1463
- #: ../admin/shortcode-builder/shortcode-builder.php:97
1464
  msgid "Set a unique ID for this Ajax Load More instance."
1465
  msgstr ""
1466
 
1467
- #: ../admin/shortcode-builder/shortcode-builder.php:104
1468
  msgid "Generate Unique ID"
1469
  msgstr ""
1470
 
1471
- #: ../admin/shortcode-builder/shortcode-builder.php:113
1472
  msgid ""
1473
  "You can define a global container type on the Ajax Load More settings screen"
1474
  msgstr ""
1475
 
1476
- #: ../admin/shortcode-builder/shortcode-builder.php:114
1477
  msgid ""
1478
  "Override the global Container Type set on the <a href=\"admin.php?page=ajax-"
1479
  "load-more\">ALM Settings page</a>."
1480
  msgstr ""
1481
 
1482
- #: ../admin/shortcode-builder/shortcode-builder.php:144
1483
  msgid ""
1484
  "You can define global container classes on the Ajax Load More settings screen"
1485
  msgstr ""
1486
 
1487
- #: ../admin/shortcode-builder/shortcode-builder.php:145
1488
  msgid ""
1489
  "Add custom CSS classes to the <span>.alm-listing</span> container. <br/><br/"
1490
  "> e.g. portfolio-listing large-12 etc"
1491
  msgstr ""
1492
 
1493
- #: ../admin/shortcode-builder/shortcode-builder.php:158
1494
  msgid "Button Labels"
1495
  msgstr ""
1496
 
1497
- #: ../admin/shortcode-builder/shortcode-builder.php:163
1498
  msgid "Label"
1499
  msgstr ""
1500
 
1501
- #: ../admin/shortcode-builder/shortcode-builder.php:164
1502
  msgid "Customize the text of the <em>Load More</em> button."
1503
  msgstr ""
1504
 
1505
- #: ../admin/shortcode-builder/shortcode-builder.php:176
1506
  msgid "Loading Label"
1507
  msgstr ""
1508
 
1509
- #: ../admin/shortcode-builder/shortcode-builder.php:176
1510
  msgid "Leave field empty to not update text while loading content"
1511
  msgstr ""
1512
 
1513
- #: ../admin/shortcode-builder/shortcode-builder.php:177
1514
  msgid ""
1515
  "Update the text of the <em>Load More</em> button while content is loading."
1516
  msgstr ""
1517
 
1518
- #: ../admin/shortcode-builder/shortcode-builder.php:181
1519
  msgid "Loading Posts..."
1520
  msgstr ""
1521
 
1522
- #: ../admin/shortcode-builder/shortcode-builder.php:191
1523
  msgid "Scrolling"
1524
  msgstr ""
1525
 
1526
- #: ../admin/shortcode-builder/shortcode-builder.php:194
1527
  msgid "Enable Scrolling"
1528
  msgstr ""
1529
 
1530
- #: ../admin/shortcode-builder/shortcode-builder.php:195
1531
  msgid "Load more posts as the user scrolls the page."
1532
  msgstr ""
1533
 
1534
- #: ../admin/shortcode-builder/shortcode-builder.php:216
1535
  msgid "Scroll Distance"
1536
  msgstr ""
1537
 
1538
- #: ../admin/shortcode-builder/shortcode-builder.php:216
1539
  msgid ""
1540
  "Distance is based on the position of the loading button from the bottom of "
1541
  "the screen"
1542
  msgstr ""
1543
 
1544
- #: ../admin/shortcode-builder/shortcode-builder.php:217
1545
  msgid ""
1546
  "The distance from the bottom of the screen to trigger loading of posts. "
1547
  "(Default = 150)"
1548
  msgstr ""
1549
 
1550
- #: ../admin/shortcode-builder/shortcode-builder.php:229
1551
  msgid "Scroll Container"
1552
  msgstr ""
1553
 
1554
- #: ../admin/shortcode-builder/shortcode-builder.php:229
1555
  msgid "Confine Ajax Load More scrolling to a parent container"
1556
  msgstr ""
1557
 
1558
- #: ../admin/shortcode-builder/shortcode-builder.php:230
1559
  msgid "Enter the ID or classname of the parent container"
1560
  msgstr ""
1561
 
1562
- #: ../admin/shortcode-builder/shortcode-builder.php:242
1563
  msgid "Maximum Pages"
1564
  msgstr ""
1565
 
1566
- #: ../admin/shortcode-builder/shortcode-builder.php:242
1567
  msgid "If using an Infinite Scroll button style you should set this to 0"
1568
  msgstr ""
1569
 
1570
- #: ../admin/shortcode-builder/shortcode-builder.php:243
1571
  msgid "Maximum number of pages to load while scrolling. (0 = unlimited)"
1572
  msgstr ""
1573
 
1574
- #: ../admin/shortcode-builder/shortcode-builder.php:255
1575
  msgid "Pause Override"
1576
  msgstr ""
1577
 
1578
- #: ../admin/shortcode-builder/shortcode-builder.php:256
1579
  msgid ""
1580
  "Allow scrolling to override the Pause parameter and trigger the loading of "
1581
  "posts on scroll."
1582
  msgstr ""
1583
 
1584
- #: ../admin/shortcode-builder/shortcode-builder.php:277
1585
  msgid "Transition"
1586
  msgstr ""
1587
 
1588
- #: ../admin/shortcode-builder/shortcode-builder.php:280
1589
  msgid "Type"
1590
  msgstr ""
1591
 
1592
- #: ../admin/shortcode-builder/shortcode-builder.php:281
1593
  msgid "Select a loading transition style."
1594
  msgstr ""
1595
 
1596
- #: ../admin/shortcode-builder/shortcode-builder.php:286
1597
  msgid "Fade In"
1598
  msgstr ""
1599
 
1600
- #: ../admin/shortcode-builder/shortcode-builder.php:287
1601
  msgid "Masonry"
1602
  msgstr ""
1603
 
1604
- #: ../admin/shortcode-builder/shortcode-builder.php:300
1605
  msgid "Masonry Options"
1606
  msgstr ""
1607
 
1608
- #: ../admin/shortcode-builder/shortcode-builder.php:300
1609
  msgid "Ajax Load More does not support all available Masonry options"
1610
  msgstr ""
1611
 
1612
- #: ../admin/shortcode-builder/shortcode-builder.php:301
1613
  msgid ""
1614
  "The following Masonry <a href=\"https://masonry.desandro.com/options.html\" "
1615
  "target=\"_blank\">options</a> are supported by Ajax Load More"
1616
  msgstr ""
1617
 
1618
- #: ../admin/shortcode-builder/shortcode-builder.php:306
1619
  msgid "Item Selector"
1620
  msgstr ""
1621
 
1622
- #: ../admin/shortcode-builder/shortcode-builder.php:306
1623
  msgid ""
1624
  "Item Selector is required for Masonry to target each element loaded with Ajax"
1625
  msgstr ""
1626
 
1627
- #: ../admin/shortcode-builder/shortcode-builder.php:307
1628
  msgid "Enter the target classname of each masonry item"
1629
  msgstr ""
1630
 
1631
- #: ../admin/shortcode-builder/shortcode-builder.php:321
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1632
  msgid "Animation Type"
1633
  msgstr ""
1634
 
1635
- #: ../admin/shortcode-builder/shortcode-builder.php:321
1636
  msgid "All Masonry animations include a fade-in effect as items are loaded"
1637
  msgstr ""
1638
 
1639
- #: ../admin/shortcode-builder/shortcode-builder.php:322
1640
  msgid "Select a loading transition for Masonry items"
1641
  msgstr ""
1642
 
1643
- #: ../admin/shortcode-builder/shortcode-builder.php:330
1644
  msgid "Default (Zoom)"
1645
  msgstr ""
1646
 
1647
- #: ../admin/shortcode-builder/shortcode-builder.php:331
1648
  msgid "Items scale up from 50% to 100% size on load"
1649
  msgstr ""
1650
 
1651
- #: ../admin/shortcode-builder/shortcode-builder.php:337
1652
  msgid "Zoom Out"
1653
  msgstr ""
1654
 
1655
- #: ../admin/shortcode-builder/shortcode-builder.php:338
1656
  msgid "Items scale down from 125% to 100% size on load"
1657
  msgstr ""
1658
 
1659
- #: ../admin/shortcode-builder/shortcode-builder.php:344
1660
  msgid "Slide Up"
1661
  msgstr ""
1662
 
1663
- #: ../admin/shortcode-builder/shortcode-builder.php:345
1664
  msgid "Items animate up as they are loaded into view."
1665
  msgstr ""
1666
 
1667
- #: ../admin/shortcode-builder/shortcode-builder.php:351
1668
  msgid "Slide Down"
1669
  msgstr ""
1670
 
1671
- #: ../admin/shortcode-builder/shortcode-builder.php:352
1672
  msgid "Items animate down when loaded into view."
1673
  msgstr ""
1674
 
1675
- #: ../admin/shortcode-builder/shortcode-builder.php:369
1676
  msgid "Horizontal Order"
1677
  msgstr ""
1678
 
1679
- #: ../admin/shortcode-builder/shortcode-builder.php:370
1680
  msgid "Lays out items to maintain left-to-right order"
1681
  msgstr ""
1682
 
1683
- #: ../admin/shortcode-builder/shortcode-builder.php:397
1684
  msgid "Transition Container"
1685
  msgstr ""
1686
 
1687
- #: ../admin/shortcode-builder/shortcode-builder.php:397
1688
  msgid ""
1689
  "Removing the transition container may have undesired results and is not "
1690
  "recommended"
1691
  msgstr ""
1692
 
1693
- #: ../admin/shortcode-builder/shortcode-builder.php:398
1694
  msgid ""
1695
  "Remove the <span>.alm-reveal</span> loading container from Ajax Load More"
1696
  msgstr ""
1697
 
1698
- #: ../admin/shortcode-builder/shortcode-builder.php:405
1699
  msgid "Remove Container"
1700
  msgstr ""
1701
 
1702
- #: ../admin/shortcode-builder/shortcode-builder.php:416
1703
  msgid "Transition Container Classes"
1704
  msgstr ""
1705
 
1706
- #: ../admin/shortcode-builder/shortcode-builder.php:416
1707
  msgid ""
1708
  "This setting is not available with the Previous Post or Next Page add-ons"
1709
  msgstr ""
1710
 
1711
- #: ../admin/shortcode-builder/shortcode-builder.php:417
1712
  msgid "Add custom classes to the <span>.alm-reveal</span> loading container"
1713
  msgstr ""
1714
 
1715
- #: ../admin/shortcode-builder/shortcode-builder.php:435
1716
  msgid "Pause"
1717
  msgstr ""
1718
 
1719
- #: ../admin/shortcode-builder/shortcode-builder.php:438
1720
  msgid ""
1721
  "Do <u>NOT</u> load any posts until user clicks the <em>Load More</em> button."
1722
  msgstr ""
1723
 
1724
- #: ../admin/shortcode-builder/shortcode-builder.php:460
1725
  msgid "Progress Bar"
1726
  msgstr ""
1727
 
1728
- #: ../admin/shortcode-builder/shortcode-builder.php:463
1729
  msgid ""
1730
  "Display progress bar indicator at the top of the window while loading Ajax "
1731
  "content"
1732
  msgstr ""
1733
 
1734
- #: ../admin/shortcode-builder/shortcode-builder.php:492
1735
  msgid "Color"
1736
  msgstr ""
1737
 
1738
- #: ../admin/shortcode-builder/shortcode-builder.php:493
1739
  msgid "Enter the hex color of the progress bar"
1740
  msgstr ""
1741
 
1742
- #: ../admin/shortcode-builder/shortcode-builder.php:511
1743
  msgid "Images Loaded"
1744
  msgstr ""
1745
 
1746
- #: ../admin/shortcode-builder/shortcode-builder.php:514
1747
  msgid "Wait for all images to load before displaying ajax loaded content"
1748
  msgstr ""
1749
 
1750
- #: ../admin/shortcode-builder/shortcode-builder.php:514
1751
  msgid "Background images are not supported"
1752
  msgstr ""
1753
 
1754
- #: ../admin/shortcode-builder/shortcode-builder.php:536
1755
  msgid "Destroy After"
1756
  msgstr ""
1757
 
1758
- #: ../admin/shortcode-builder/shortcode-builder.php:540
1759
  msgid ""
1760
  "Remove Ajax Load More functionality after {<em>n</em>} number of pages have "
1761
  "been loaded."
1762
  msgstr ""
1763
 
1764
- #: ../admin/shortcode-builder/shortcode-builder.php:559
1765
  msgid "Query Parameters"
1766
  msgstr ""
1767
 
1768
- #: ../admin/shortcode-builder/shortcode-builder.php:563
1769
  msgid "Posts Per Page"
1770
  msgstr ""
1771
 
1772
- #: ../admin/shortcode-builder/shortcode-builder.php:566
1773
  msgid "Select the number of posts to load with each request."
1774
  msgstr ""
1775
 
1776
- #: ../admin/shortcode-builder/shortcode-builder.php:585
1777
  msgid "Post Type"
1778
  msgstr ""
1779
 
1780
- #: ../admin/shortcode-builder/shortcode-builder.php:590
1781
  msgid "Select the Post Types to include in this Ajax Load More query."
1782
  msgstr ""
1783
 
1784
- #: ../admin/shortcode-builder/shortcode-builder.php:604
1785
  msgid "Any"
1786
  msgstr ""
1787
 
1788
- #: ../admin/shortcode-builder/shortcode-builder.php:616
1789
  msgid "Sticky Posts"
1790
  msgstr ""
1791
 
1792
- #: ../admin/shortcode-builder/shortcode-builder.php:616
1793
  msgid "Sticky posts are only available for Posts"
1794
  msgstr ""
1795
 
1796
- #: ../admin/shortcode-builder/shortcode-builder.php:617
1797
  msgid ""
1798
  "Preserve the ordering of sticky posts by having them appear first in the "
1799
  "Ajax listing."
1800
  msgstr ""
1801
 
1802
- #: ../admin/shortcode-builder/shortcode-builder.php:624
1803
  msgid "Enable Sticky Posts"
1804
  msgstr ""
1805
 
1806
- #: ../admin/shortcode-builder/shortcode-builder.php:646
1807
  msgid "Post Format"
1808
  msgstr ""
1809
 
1810
- #: ../admin/shortcode-builder/shortcode-builder.php:649
1811
  msgid ""
1812
  "Select a <a href=\"http://codex.wordpress.org/Post_Formats\" target=\"_blank"
1813
  "\">Post Format</a> to query."
1814
  msgstr ""
1815
 
1816
- #: ../admin/shortcode-builder/shortcode-builder.php:652
1817
  msgid "Select Post Format"
1818
  msgstr ""
1819
 
1820
- #: ../admin/shortcode-builder/shortcode-builder.php:653
1821
  msgid "Standard"
1822
  msgstr ""
1823
 
1824
- #: ../admin/shortcode-builder/shortcode-builder.php:679
1825
  msgid ""
1826
  "A comma separated list of categories to include by slug. (design, research "
1827
  "etc...)"
1828
  msgstr ""
1829
 
1830
- #: ../admin/shortcode-builder/shortcode-builder.php:703
1831
  msgid ""
1832
  "A comma separated list of categories to exclude by ID. (3, 12, 35 etc..)"
1833
  msgstr ""
1834
 
1835
- #: ../admin/shortcode-builder/shortcode-builder.php:739
1836
  msgid ""
1837
  "A comma separated list of tags to include by slug. (toronto, canada etc...)"
1838
  msgstr ""
1839
 
1840
- #: ../admin/shortcode-builder/shortcode-builder.php:761
1841
  msgid "A comma separated list of tags to exclude by ID. (30, 12, 99 etc..)"
1842
  msgstr ""
1843
 
1844
- #: ../admin/shortcode-builder/shortcode-builder.php:797
1845
  msgid "Select a taxonomy then select the terms and an operator."
1846
  msgstr ""
1847
 
1848
- #: ../admin/shortcode-builder/shortcode-builder.php:802
1849
- #: ../admin/shortcode-builder/shortcode-builder.php:868
1850
  msgid "Add Another"
1851
  msgstr ""
1852
 
1853
- #: ../admin/shortcode-builder/shortcode-builder.php:812
1854
  msgid "Date"
1855
  msgstr ""
1856
 
1857
- #: ../admin/shortcode-builder/shortcode-builder.php:815
1858
  msgid ""
1859
  "Enter a year, month(number) and day to query by date archive.<br/>&raquo; <a "
1860
  "href=\"admin.php?page=ajax-load-more-help&section=examples#example-date\" "
1861
  "target=\"_blank\">View Example</a>"
1862
  msgstr ""
1863
 
1864
- #: ../admin/shortcode-builder/shortcode-builder.php:821
1865
  msgid "Year:"
1866
  msgstr ""
1867
 
1868
- #: ../admin/shortcode-builder/shortcode-builder.php:825
1869
  msgid "Month:"
1870
  msgstr ""
1871
 
1872
- #: ../admin/shortcode-builder/shortcode-builder.php:829
1873
  msgid "Day:"
1874
  msgstr ""
1875
 
1876
- #: ../admin/shortcode-builder/shortcode-builder.php:840
1877
  msgid "Custom Fields (Meta_Query)"
1878
  msgstr ""
1879
 
1880
- #: ../admin/shortcode-builder/shortcode-builder.php:843
1881
  msgid ""
1882
  "Query for <a href=\"http://codex.wordpress.org/Class_Reference/WP_Meta_Query"
1883
  "\" target=\"_blank\">custom field</a> by entering a custom field key, value "
1884
  "and operator."
1885
  msgstr ""
1886
 
1887
- #: ../admin/shortcode-builder/shortcode-builder.php:854
1888
  msgid ""
1889
  "The logical relationship between each custom field when there is more than "
1890
  "one"
1891
  msgstr ""
1892
 
1893
- #: ../admin/shortcode-builder/shortcode-builder.php:884
1894
  msgid "Author"
1895
  msgstr ""
1896
 
1897
- #: ../admin/shortcode-builder/shortcode-builder.php:887
1898
  msgid "Select an Author to query(by ID)."
1899
  msgstr ""
1900
 
1901
- #: ../admin/shortcode-builder/shortcode-builder.php:908
1902
  msgid "Search Term"
1903
  msgstr ""
1904
 
1905
- #: ../admin/shortcode-builder/shortcode-builder.php:911
1906
  msgid "Enter a search term to query."
1907
  msgstr ""
1908
 
1909
- #: ../admin/shortcode-builder/shortcode-builder.php:915
1910
  msgid "Enter search term"
1911
  msgstr ""
1912
 
1913
- #: ../admin/shortcode-builder/shortcode-builder.php:924
1914
  msgid "Post Parameters"
1915
  msgstr ""
1916
 
1917
- #: ../admin/shortcode-builder/shortcode-builder.php:928
1918
  msgid "A comma separated list of post ID's to query."
1919
  msgstr ""
1920
 
1921
- #: ../admin/shortcode-builder/shortcode-builder.php:932
1922
  msgid "225, 340, 818, etc..."
1923
  msgstr ""
1924
 
1925
- #: ../admin/shortcode-builder/shortcode-builder.php:939
1926
  msgid "A comma separated list of post ID's to exclude from query."
1927
  msgstr ""
1928
 
1929
- #: ../admin/shortcode-builder/shortcode-builder.php:949
1930
  msgid "Post Status"
1931
  msgstr ""
1932
 
1933
- #: ../admin/shortcode-builder/shortcode-builder.php:949
1934
  msgid ""
1935
  "Post Status parameters are only available for logged in (admin) users. Non "
1936
  "logged in users will only have access to view content in a 'publish' or "
1937
  "'inherit' state."
1938
  msgstr ""
1939
 
1940
- #: ../admin/shortcode-builder/shortcode-builder.php:950
1941
  msgid "Select status of the post."
1942
  msgstr ""
1943
 
1944
- #: ../admin/shortcode-builder/shortcode-builder.php:955
1945
  msgid "Published"
1946
  msgstr ""
1947
 
1948
- #: ../admin/shortcode-builder/shortcode-builder.php:972
1949
  msgid "Ordering"
1950
  msgstr ""
1951
 
1952
- #: ../admin/shortcode-builder/shortcode-builder.php:975
1953
  msgid "Sort posts by Order and Orderby parameters."
1954
  msgstr ""
1955
 
1956
- #: ../admin/shortcode-builder/shortcode-builder.php:1007
1957
  msgid "Offset"
1958
  msgstr ""
1959
 
1960
- #: ../admin/shortcode-builder/shortcode-builder.php:1010
1961
  msgid "Offset the initial query by <em>'n'</em> number of posts"
1962
  msgstr ""
1963
 
1964
- #: ../admin/shortcode-builder/shortcode-builder.php:1023
1965
  msgid "Custom Arguments"
1966
  msgstr ""
1967
 
1968
- #: ../admin/shortcode-builder/shortcode-builder.php:1026
1969
  msgid "A semicolon separated list of custom value:pair arguments."
1970
  msgstr ""
1971
 
1972
- #: ../admin/shortcode-builder/shortcode-builder.php:1026
1973
  msgid ""
1974
  "Custom Arguments can be used to query by parameters not available in the "
1975
  "Shortcode Builder"
1976
  msgstr ""
1977
 
1978
- #: ../admin/shortcode-builder/shortcode-builder.php:1030
1979
  msgid "event_display:upcoming"
1980
  msgstr ""
1981
 
1982
- #: ../admin/views/add-ons.php:6
1983
  msgid "Add-ons"
1984
  msgstr ""
1985
 
1986
- #: ../admin/views/add-ons.php:7
1987
  msgid ""
1988
  "Add-ons are available to extend and enhance the core functionality of Ajax "
1989
  "Load More"
1990
  msgstr ""
1991
 
1992
- #: ../admin/views/add-ons.php:38
1993
  msgid "Installed"
1994
  msgstr ""
1995
 
1996
- #: ../admin/views/add-ons.php:40
1997
  msgid "Purchase"
1998
  msgstr ""
1999
 
2000
- #: ../admin/views/add-ons.php:49
2001
  msgid ""
2002
  "All add-ons are installed as stand alone plugins and with a valid license "
2003
  "key will receive plugin update notifications directly within the <a href="
2004
  "\"plugins.php\">WordPress plugin dashboard</a>."
2005
  msgstr ""
2006
 
2007
- #: ../admin/views/extensions.php:5
2008
  msgid "Extensions"
2009
  msgstr ""
2010
 
2011
- #: ../admin/views/extensions.php:6
2012
  msgid ""
2013
  "Free extensions that provide compatibility with popular plugins and core "
2014
  "WordPress functionality"
2015
  msgstr ""
2016
 
2017
- #: ../admin/views/extensions.php:33
2018
  msgid ""
2019
  "Extensions are installed as stand alone plugins and receive update "
2020
  "notifications in the <a href=\"plugins.php\">plugin dashboard</a>."
2021
  msgstr ""
2022
 
2023
- #: ../admin/views/help.php:4
2024
  msgid "Get started with our four step guide to painless implementation!"
2025
  msgstr ""
2026
 
2027
- #: ../admin/views/help.php:9
2028
  msgid "A collection of everyday shortcode usages and implementation examples"
2029
  msgstr ""
2030
 
2031
- #: ../admin/views/help.php:18
2032
  msgid "Help"
2033
  msgstr ""
2034
 
2035
- #: ../admin/views/help.php:30
2036
  msgid "Implementation Guide"
2037
  msgstr ""
2038
 
2039
- #: ../admin/views/help.php:35
2040
  msgid "Examples"
2041
  msgstr ""
2042
 
2043
- #: ../admin/views/help.php:68
2044
  msgid "Example Library"
2045
  msgstr ""
2046
 
2047
- #: ../admin/views/help.php:70
2048
  msgid ""
2049
  "We have a collection of over 20 real world Ajax Load More <a href=\"https://"
2050
  "connekthq.com/plugins/ajax-load-more/examples/\" target=\"_blank\">examples</"
2051
  "a> available on the plugin website"
2052
  msgstr ""
2053
 
2054
- #: ../admin/views/help.php:73
2055
  msgid "View All Examples"
2056
  msgstr ""
2057
 
2058
- #: ../admin/views/licenses.php:5
2059
  msgid "Licenses"
2060
  msgstr ""
2061
 
2062
- #: ../admin/views/licenses.php:6
2063
  msgid ""
2064
  "Enter your license keys to enable <a href=\"admin.php?page=ajax-load-more-"
2065
  "add-ons\">add-on</a> updates from the plugins dashboard"
2066
  msgstr ""
2067
 
2068
- #: ../admin/views/licenses.php:14
2069
  msgid "License Keys"
2070
  msgstr ""
2071
 
2072
- #: ../admin/views/licenses.php:16
2073
  msgid ""
2074
  "Manage your Ajax Load More license key's below - enter a key for each of "
2075
  "your add-ons to receive plugin update notifications directly within the <a "
2076
  "href=\"plugins.php\">WP Plugins dashboard</a>."
2077
  msgstr ""
2078
 
2079
- #: ../admin/views/licenses.php:52
2080
  msgid "Don't have a license?"
2081
  msgstr ""
2082
 
2083
- #: ../admin/views/licenses.php:53
2084
  msgid ""
2085
  "A valid license is required to activate and receive plugin updates directly "
2086
  "in your WordPress dashboard"
2087
  msgstr ""
2088
 
2089
- #: ../admin/views/licenses.php:53
2090
  msgid "Purchase Now"
2091
  msgstr ""
2092
 
2093
- #: ../admin/views/licenses.php:59 ../admin/views/licenses.php:61
2094
  msgid "Enter License Key"
2095
  msgstr ""
2096
 
2097
- #: ../admin/views/licenses.php:85
2098
  msgid "Activate License"
2099
  msgstr ""
2100
 
2101
- #: ../admin/views/licenses.php:88
2102
  msgid "Deactivate License"
2103
  msgstr ""
2104
 
2105
- #: ../admin/views/licenses.php:105
2106
  msgid "You do not have any Ajax Load More add-ons installed"
2107
  msgstr ""
2108
 
2109
- #: ../admin/views/licenses.php:105
2110
  msgid "Browse Add-ons"
2111
  msgstr ""
2112
 
2113
- #: ../admin/views/licenses.php:115
2114
  msgid "About Licenses"
2115
  msgstr ""
2116
 
2117
- #: ../admin/views/licenses.php:118
2118
  msgid ""
2119
  "License keys are found in the purchase receipt email that was sent "
2120
  "immediately after your successful purchase and in the <a target=\"_blank\" "
2121
  "href=\"https://connekthq.com/account/\">Account</a> section on our website"
2122
  msgstr ""
2123
 
2124
- #: ../admin/views/licenses.php:119
2125
  msgid ""
2126
  "If you cannot locate your key please open a support ticket by filling out "
2127
  "the <a href=\"https://connekthq.com/contact/\">form</a> on our website and "
2128
  "reference the email address used when you completed the purchase."
2129
  msgstr ""
2130
 
2131
- #: ../admin/views/licenses.php:124
2132
  msgid "Your Account"
2133
  msgstr ""
2134
 
2135
- #: ../admin/views/repeater-templates.php:19
2136
- #: ../admin/views/repeater-templates.php:30
2137
  msgid "Repeater Templates"
2138
  msgstr ""
2139
 
2140
- #: ../admin/views/repeater-templates.php:20
2141
  msgid "The library of editable templates for use within your theme"
2142
  msgstr ""
2143
 
2144
- #: ../admin/views/repeater-templates.php:91
2145
- #: ../admin/views/repeater-templates.php:211
2146
  msgid "File Location"
2147
  msgstr ""
2148
 
2149
- #: ../admin/views/repeater-templates.php:113
2150
  msgid "Templates Not Found"
2151
  msgstr ""
2152
 
2153
- #: ../admin/views/repeater-templates.php:115
2154
  msgid ""
2155
  "Oh no - looks like you haven't added any Theme Repeater templates - you need "
2156
  "to create and upload templates to your theme directory before you can access "
2157
  "them in Ajax Load More"
2158
  msgstr ""
2159
 
2160
- #: ../admin/views/repeater-templates.php:118
2161
  msgid "Learn More About Theme Repeaters"
2162
  msgstr ""
2163
 
2164
- #: ../admin/views/repeater-templates.php:172
2165
  msgid "Default Template"
2166
  msgstr ""
2167
 
2168
- #: ../admin/views/repeater-templates.php:179
2169
  msgid "Enter the HTML and PHP code for the default template"
2170
  msgstr ""
2171
 
2172
- #: ../admin/views/repeater-templates.php:202
2173
  msgid "Save Template"
2174
  msgstr ""
2175
 
2176
- #: ../admin/views/repeater-templates.php:210
2177
  msgid ""
2178
  "It appears you are loading the <a href=\"https://connekthq.com/plugins/ajax-"
2179
  "load-more/docs/repeater-templates/#default-template\" target=\"_blank"
@@ -2182,19 +2194,19 @@ msgid ""
2182
  "your server."
2183
  msgstr ""
2184
 
2185
- #: ../admin/views/repeater-templates.php:284
2186
  msgid "Saving template..."
2187
  msgstr ""
2188
 
2189
- #: ../admin/views/repeater-templates.php:355
2190
  msgid "Updating template..."
2191
  msgstr ""
2192
 
2193
- #: ../admin/views/repeater-templates.php:427
2194
  msgid "What's a Repeater Template?"
2195
  msgstr ""
2196
 
2197
- #: ../admin/views/repeater-templates.php:429
2198
  msgid ""
2199
  "A <a href=\"https://connekthq.com/plugins/ajax-load-more/docs/repeater-"
2200
  "templates/\" target=\"_blank\">Repeater Template</a> is a snippet of code "
@@ -2202,192 +2214,129 @@ msgid ""
2202
  "org/The_Loop\" target=\"_blank\">WordPress loop</a>"
2203
  msgstr ""
2204
 
2205
- #: ../admin/views/repeater-templates.php:432
2206
  msgid "Learn More"
2207
  msgstr ""
2208
 
2209
- #: ../admin/views/settings.php:9
2210
  msgid "A powerful plugin to add infinite scroll functionality to your website."
2211
  msgstr ""
2212
 
2213
- #: ../admin/views/settings.php:24
2214
  msgid "Thanks for installing Ajax Load More 3.0!"
2215
  msgstr ""
2216
 
2217
- #: ../admin/views/settings.php:41
2218
  msgid "Don't show me this again!"
2219
  msgstr ""
2220
 
2221
- #: ../admin/views/settings.php:52 ../admin/views/settings.php:55
2222
  msgid "Jump to Setting"
2223
  msgstr ""
2224
 
2225
- #: ../admin/views/settings.php:56
2226
  msgid "Global Settings"
2227
  msgstr ""
2228
 
2229
- #: ../admin/views/settings.php:57
2230
  msgid "Admin"
2231
  msgstr ""
2232
 
2233
- #: ../admin/views/settings.php:72
2234
  msgid "SEO"
2235
  msgstr ""
2236
 
2237
- #: ../admin/views/shortcode-builder.php:6
2238
  msgid "Shortcode Builder"
2239
  msgstr ""
2240
 
2241
- #: ../admin/views/shortcode-builder.php:7
2242
  msgid ""
2243
  "Create your own Ajax Load More <a href=\"http://en.support.wordpress.com/"
2244
  "shortcodes/\" target=\"_blank\">shortcode</a> by adjusting the values below"
2245
  msgstr ""
2246
 
2247
- #: ../admin/views/shortcode-builder.php:17
2248
  msgid "Back to Top"
2249
  msgstr ""
2250
 
2251
- #: ../admin/views/shortcode-builder.php:29
2252
  msgid "Shortcode Output"
2253
  msgstr ""
2254
 
2255
- #: ../admin/views/shortcode-builder.php:31
2256
  msgid ""
2257
  "Place the following shortcode into the content editor or widget area of your "
2258
  "theme."
2259
  msgstr ""
2260
 
2261
- #: ../admin/views/shortcode-builder.php:35
2262
  msgid "Reset"
2263
  msgstr ""
2264
 
2265
- #: ../admin/views/shortcode-builder.php:38
2266
  msgid "Copy Shortcode"
2267
  msgstr ""
2268
 
2269
- #: ../ajax-load-more.php:181
2270
  msgid "Error creating repeater template directory"
2271
  msgstr ""
2272
 
2273
- #: ../ajax-load-more.php:256
2274
  msgid "Settings"
2275
  msgstr ""
2276
 
2277
- #: ../core/functions.php:744
2278
  msgid "Pages:"
2279
  msgstr ""
2280
 
2281
- #: ../vendor/EDD_SL_Plugin_Updater.php:201
2282
  #, php-format
2283
  msgid ""
2284
  "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
2285
  msgstr ""
2286
 
2287
- #: ../vendor/EDD_SL_Plugin_Updater.php:209
2288
  #, php-format
2289
  msgid ""
2290
  "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
2291
  "or %5$supdate now%6$s."
2292
  msgstr ""
2293
 
2294
- #: ../vendor/EDD_SL_Plugin_Updater.php:396
2295
  msgid "You do not have permission to install plugin updates"
2296
  msgstr ""
2297
 
2298
- #: ../vendor/EDD_SL_Plugin_Updater.php:396
2299
  msgid "Error"
2300
  msgstr ""
2301
 
2302
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:86
2303
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:381
2304
  msgid "Activated"
2305
  msgstr ""
2306
 
2307
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:128
2308
  msgid "By"
2309
  msgstr ""
2310
 
2311
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:141
2312
  msgid "More Details"
2313
  msgstr ""
2314
 
2315
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:163
2316
  msgid "Sorry, you are not allowed to install plugins on this site."
2317
  msgstr ""
2318
 
2319
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:170
2320
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:241
2321
  msgid "Error - unable to verify nonce, please try again."
2322
  msgstr ""
2323
 
2324
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:234
2325
  msgid "Sorry, you are not allowed to activate plugins on this site."
2326
  msgstr ""
2327
 
2328
- #: ../vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:378
2329
  msgid "Are you sure you want to install this plugin?"
2330
  msgstr ""
2331
-
2332
- #~ msgid "404 Error"
2333
- #~ msgstr "Erreur 404 "
2334
-
2335
- #~ msgid "Sorry, the page you have requested cannot be found."
2336
- #~ msgstr "Désolé, la page que vous demandez est introuvable."
2337
-
2338
- #~ msgid ""
2339
- #~ "Be sure to check your spelling. If all else fails, you can go back to the "
2340
- #~ "page you came from, return to the <a href=\"/\">homepage</a>, or try "
2341
- #~ "searching."
2342
- #~ msgstr ""
2343
- #~ "Veuillez vérifier l'orthographe. Si tout échoue, retournez à la page "
2344
- #~ "précédente, retournez à la <a href=\"/\">page d'accueil</a>, ou essayez "
2345
- #~ "une recherche."
2346
-
2347
- #~ msgid "Connect with Willow"
2348
- #~ msgstr "Connectez-vous avec Willow"
2349
-
2350
- #~ msgid ""
2351
- #~ "Sign up to stay in touch and receive Willow news, updates and event "
2352
- #~ "information."
2353
- #~ msgstr ""
2354
- #~ "Inscrivez-vous pour rester en contact avec nous et recevoir des nouvelles "
2355
- #~ "de Willow (Disponibles en anglais seulement)"
2356
-
2357
- #~ msgid "all our funders"
2358
- #~ msgstr "tous nos donateurs"
2359
-
2360
- #~ msgid "call our helpline"
2361
- #~ msgstr "Appelez notre ligne de soutien"
2362
-
2363
- #~ msgid "share"
2364
- #~ msgstr "Partager"
2365
-
2366
- #~ msgid "Share via Email"
2367
- #~ msgstr "Partager par courriel"
2368
-
2369
- #~ msgid "Your search returned <strong>%s</strong> result%s"
2370
- #~ msgstr "Votre recherche a généré <strong>%s</strong> résultat%s "
2371
-
2372
- #~ msgid "search"
2373
- #~ msgstr "Recherche"
2374
-
2375
- #~ msgid "Showing"
2376
- #~ msgstr "Montrant"
2377
-
2378
- #~ msgid "result(s) in"
2379
- #~ msgstr "résultat(s) dans"
2380
-
2381
- #~ msgid "For more information please contact:"
2382
- #~ msgstr "Pour de plus amples renseignements, veuillez contacter : "
2383
-
2384
- #~ msgid "filter support groups"
2385
- #~ msgstr "Filtrer les groupes de soutien"
2386
-
2387
- #~ msgid "select a province and city to find a support group"
2388
- #~ msgstr ""
2389
- #~ "Sélectionnez votre province et votre ville pour trouver un groupe de "
2390
- #~ "soutien"
2391
-
2392
- #~ msgid "Filter"
2393
- #~ msgstr "Filtrer"
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"
9
  "Language: en_CA\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.0.8\n"
14
+ "X-Poedit-Basepath: ..\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
+ "X-Poedit-SearchPath-0: .\n"
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
  "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 "
464
  "types of misuse, malicious or otherwise on each Ajax Load More query."
465
  msgstr ""
466
 
467
+ #: admin/editor/editor-build.php:45
468
  msgid ""
469
  "Create your own Ajax Load More shortcode by adjusting the parameters below:"
470
  msgstr ""
471
 
472
+ #: admin/editor/editor-build.php:53
473
  msgid "Insert Shortcode"
474
  msgstr ""
475
 
476
+ #: admin/editor/editor-build.php:56
477
  msgid "Copy"
478
  msgstr ""
479
 
480
+ #: admin/editor/editor.php:19
481
  msgid "You are not allowed to be here"
482
  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
 
498
+ #: admin/includes/components/example-list.php:5
499
  msgid "Archive.php"
500
  msgstr ""
501
 
502
+ #: admin/includes/components/example-list.php:7
503
  msgid "Shortcode for use on generic archive page."
504
  msgstr ""
505
 
506
+ #: admin/includes/components/example-list.php:15
507
  msgid "Author.php"
508
  msgstr ""
509
 
510
+ #: admin/includes/components/example-list.php:17
511
  msgid "Shortcode for use on author archive pages."
512
  msgstr ""
513
 
514
+ #: admin/includes/components/example-list.php:24
515
  msgid "Category.php"
516
  msgstr ""
517
 
518
+ #: admin/includes/components/example-list.php:26
519
  msgid "Shortcode for use on category archive pages."
520
  msgstr ""
521
 
522
+ #: admin/includes/components/example-list.php:33
523
  msgid "Date Archives"
524
  msgstr ""
525
 
526
+ #: admin/includes/components/example-list.php:35
527
  msgid "Shortcode for use for archiving by date."
528
  msgstr ""
529
 
530
+ #: admin/includes/components/example-list.php:42
531
  msgid "Excluding Posts"
532
  msgstr ""
533
 
534
+ #: admin/includes/components/example-list.php:44
535
  msgid "Shortcode for excluding an array of posts."
536
  msgstr ""
537
 
538
+ #: admin/includes/components/example-list.php:50
539
  msgid "Tag.php"
540
  msgstr ""
541
 
542
+ #: admin/includes/components/example-list.php:52
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
577
  msgid "About ALM Add-ons"
578
  msgstr ""
579
 
580
+ #: admin/includes/cta/config.php:2
581
  msgid "Plugin Configurations"
582
  msgstr ""
583
 
584
+ #: admin/includes/cta/config.php:4
585
  msgid "Plugin Version"
586
  msgstr ""
587
 
588
+ #: admin/includes/cta/config.php:10
589
  msgid "Release Date"
590
  msgstr ""
591
 
592
+ #: admin/includes/cta/dyk.php:2
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
  "\" target=\"_parent\">Custom Repeaters add-on</a>"
602
  msgstr ""
603
 
604
+ #: admin/includes/cta/extend.php:1
605
  msgid "More Info"
606
  msgstr ""
607
 
608
+ #: admin/includes/cta/resources.php:2
609
  msgid "Resources"
610
  msgstr ""
611
 
612
+ #: admin/includes/cta/resources.php:5
613
  msgid "Ajax Load More Demo Site"
614
  msgstr ""
615
 
616
+ #: admin/includes/cta/resources.php:6
617
  msgid "Documentation"
618
  msgstr ""
619
 
620
+ #: admin/includes/cta/resources.php:7
621
  msgid "Support and Issues"
622
  msgstr ""
623
 
624
+ #: admin/includes/cta/resources.php:8
625
  msgid "Reviews"
626
  msgstr ""
627
 
628
+ #: admin/includes/cta/resources.php:9
629
  msgid "WordPress"
630
  msgstr ""
631
 
632
+ #: admin/includes/cta/resources.php:10
633
  msgid "Github"
634
  msgstr ""
635
 
636
+ #: admin/includes/cta/resources.php:11
637
  msgid "Twitter"
638
  msgstr ""
639
 
640
+ #: admin/includes/cta/resources.php:12
641
  msgid "Facebook"
642
  msgstr ""
643
 
644
+ #: admin/includes/cta/reviews.php:1
645
  msgid "Leave a Review"
646
  msgstr ""
647
 
648
+ #: admin/includes/cta/reviews.php:2
649
  msgid ""
650
  "Good <em>or</em> bad - all reviews will help Ajax Load More push forward and "
651
  "grow."
652
  msgstr ""
653
 
654
+ #: admin/includes/cta/reviews.php:4
655
  msgid "Write Review"
656
  msgstr ""
657
 
658
+ #: admin/includes/cta/sharing.php:2
659
  msgid "Share Ajax Load More"
660
  msgstr ""
661
 
662
+ #: admin/includes/cta/sharing.php:4
663
  msgid "Help spread the word by sharing Ajax Load More on Twitter and Facebook."
664
  msgstr ""
665
 
666
+ #: admin/includes/cta/writeable.php:2
667
  msgid "Read/Write Access"
668
  msgstr ""
669
 
670
+ #: admin/includes/cta/writeable.php:12
671
  msgid ""
672
  "<p class=\"writeable-title\"><i class=\"fa fa-check\"></i><strong>Enabled</"
673
  "strong></p><p class=\"desc\">Read/Write access is enabled within the "
674
  "Repeater Template directory."
675
  msgstr ""
676
 
677
+ #: admin/includes/cta/writeable.php:14
678
  msgid ""
679
  "<p class=\"writeable-title\"><i class=\"fa fa-exclamation\"></"
680
  "i><strong>Access Denied</strong></p><p class=\"desc\">You must enable read "
682
  "your hosting provider or site administrator for more information.</p>"
683
  msgstr ""
684
 
685
+ #: admin/includes/cta/writeable.php:17
686
  msgid ""
687
  "<p class=\"writeable-title\"><i class=\"fa fa-exclamation\"></"
688
  "i><strong>Error</strong></p><p class=\"desc\">Unable to locate configuration "
689
  "file. Directory access may not be granted."
690
  msgstr ""
691
 
692
+ #: admin/shortcode-builder/components/acf.php:3
693
  msgid "Advanced Custom Fields"
694
  msgstr ""
695
 
696
+ #: admin/shortcode-builder/components/acf.php:6
697
  msgid "Enable compatibility with Advanced Custom Fields."
698
  msgstr ""
699
 
700
+ #: admin/shortcode-builder/components/acf.php:13
701
+ #: admin/shortcode-builder/components/cache.php:13
702
+ #: admin/shortcode-builder/components/comments.php:13
703
+ #: admin/shortcode-builder/components/cta.php:14
704
+ #: admin/shortcode-builder/components/filters.php:13
705
+ #: admin/shortcode-builder/components/filters.php:78
706
+ #: admin/shortcode-builder/components/filters.php:100
707
+ #: admin/shortcode-builder/components/nextpage.php:13
708
+ #: admin/shortcode-builder/components/paging.php:12
709
+ #: admin/shortcode-builder/components/paging.php:35
710
+ #: admin/shortcode-builder/components/preloaded.php:13
711
+ #: admin/shortcode-builder/components/previous-post.php:13
712
+ #: admin/shortcode-builder/components/rest-api.php:28
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
 
725
+ #: admin/shortcode-builder/components/acf.php:17
726
+ #: admin/shortcode-builder/components/cache.php:17
727
+ #: admin/shortcode-builder/components/comments.php:17
728
+ #: admin/shortcode-builder/components/cta.php:18
729
+ #: admin/shortcode-builder/components/filters.php:17
730
+ #: admin/shortcode-builder/components/filters.php:82
731
+ #: admin/shortcode-builder/components/filters.php:104
732
+ #: admin/shortcode-builder/components/nextpage.php:17
733
+ #: admin/shortcode-builder/components/paging.php:16
734
+ #: admin/shortcode-builder/components/paging.php:39
735
+ #: admin/shortcode-builder/components/preloaded.php:17
736
+ #: admin/shortcode-builder/components/previous-post.php:17
737
+ #: admin/shortcode-builder/components/rest-api.php:32
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
 
750
+ #: admin/shortcode-builder/components/acf.php:29
751
+ #: admin/shortcode-builder/components/comments.php:28
752
+ #: admin/shortcode-builder/components/nextpage.php:30
753
+ #: admin/shortcode-builder/components/previous-post.php:27
754
  msgid "Post ID"
755
  msgstr ""
756
 
757
+ #: admin/shortcode-builder/components/acf.php:29
758
  msgid ""
759
  "Leave this field blank and Ajax Load More will retrieve the ID from the "
760
  "global $post object"
761
  msgstr ""
762
 
763
+ #: admin/shortcode-builder/components/acf.php:30
764
+ #: admin/shortcode-builder/components/nextpage.php:31
765
  msgid "The ID of the current page/post."
766
  msgstr ""
767
 
768
+ #: admin/shortcode-builder/components/acf.php:43
769
+ #: admin/shortcode-builder/components/acf.php:48
770
+ #: admin/shortcode-builder/components/acf.php:69
771
  msgid "Field Type"
772
  msgstr ""
773
 
774
+ #: admin/shortcode-builder/components/acf.php:44
775
  msgid "Select the type of ACF field"
776
  msgstr ""
777
 
778
+ #: admin/shortcode-builder/components/acf.php:50
779
  msgid "Select Field Type"
780
  msgstr ""
781
 
782
+ #: admin/shortcode-builder/components/acf.php:51
783
  msgid "Flexible Content"
784
  msgstr ""
785
 
786
+ #: admin/shortcode-builder/components/acf.php:52
787
  msgid "Gallery"
788
  msgstr ""
789
 
790
+ #: admin/shortcode-builder/components/acf.php:53
791
  msgid "Relationship"
792
  msgstr ""
793
 
794
+ #: admin/shortcode-builder/components/acf.php:54
795
  msgid "Repeater"
796
  msgstr ""
797
 
798
+ #: admin/shortcode-builder/components/acf.php:64
799
  msgid "Field Name"
800
  msgstr ""
801
 
802
+ #: admin/shortcode-builder/components/acf.php:65
803
  msgid "Enter the name of the ACF field"
804
  msgstr ""
805
 
806
+ #: admin/shortcode-builder/components/cache.php:6
807
  msgid "Turn on content caching."
808
  msgstr ""
809
 
810
+ #: admin/shortcode-builder/components/cache.php:27
811
  msgid "Cache ID"
812
  msgstr ""
813
 
814
+ #: admin/shortcode-builder/components/cache.php:28
815
  msgid ""
816
  "You <u>must</u> generate a unique ID for this cached query - this unique ID "
817
  "will be used as a content identifier."
818
  msgstr ""
819
 
820
+ #: admin/shortcode-builder/components/cache.php:34
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 ""
827
 
828
+ #: admin/shortcode-builder/components/comments.php:29
829
+ #: admin/shortcode-builder/components/previous-post.php:28
830
  msgid "The ID of the current single post."
831
  msgstr ""
832
 
833
+ #: admin/shortcode-builder/components/comments.php:40
834
  msgid "Comments Per Page"
835
  msgstr ""
836
 
837
+ #: admin/shortcode-builder/components/comments.php:41
838
  msgid "The number of top level items to show for each page of comments."
839
  msgstr ""
840
 
841
+ #: admin/shortcode-builder/components/comments.php:49
842
  msgid ""
843
  "<strong>Note</strong>: The amount selected does NOT include comment replies."
844
  msgstr ""
845
 
846
+ #: admin/shortcode-builder/components/comments.php:55
847
  msgid "Comment Type"
848
  msgstr ""
849
 
850
+ #: admin/shortcode-builder/components/comments.php:56
851
  msgid "The type of comment(s) to display."
852
  msgstr ""
853
 
854
+ #: admin/shortcode-builder/components/comments.php:61
855
  msgid "Comment"
856
  msgstr ""
857
 
858
+ #: admin/shortcode-builder/components/comments.php:62
859
  msgid "All"
860
  msgstr ""
861
 
862
+ #: admin/shortcode-builder/components/comments.php:63
863
  msgid "Trackback"
864
  msgstr ""
865
 
866
+ #: admin/shortcode-builder/components/comments.php:64
867
  msgid "Pingback"
868
  msgstr ""
869
 
870
+ #: admin/shortcode-builder/components/comments.php:65
871
  msgid "Pings"
872
  msgstr ""
873
 
874
+ #: admin/shortcode-builder/components/comments.php:73
875
  msgid "Comment Style"
876
  msgstr ""
877
 
878
+ #: admin/shortcode-builder/components/comments.php:74
879
  msgid "Select the HTML container style for your comments."
880
  msgstr ""
881
 
882
+ #: admin/shortcode-builder/components/comments.php:99
883
  msgid "Comment Template"
884
  msgstr ""
885
 
886
+ #: admin/shortcode-builder/components/comments.php:100
887
  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
 
896
+ #: admin/shortcode-builder/components/comments.php:107
897
  msgid "Default"
898
  msgstr ""
899
 
900
+ #: admin/shortcode-builder/components/comments.php:119
901
  msgid ""
902
  "<strong>Note</strong>: <span>None</span> will use the default WordPress "
903
  "comment layout."
904
  msgstr ""
905
 
906
+ #: admin/shortcode-builder/components/comments.php:124
907
  msgid "or"
908
  msgstr ""
909
 
910
+ #: admin/shortcode-builder/components/comments.php:128
911
  msgid "Callback Function"
912
  msgstr ""
913
 
914
+ #: admin/shortcode-builder/components/comments.php:129
915
  msgid ""
916
  "A custom <a href=\"https://codex.wordpress.org/Function_Reference/"
917
  "wp_list_comments#Arguments\" target=\"_blank\">callback</a> function that "
918
  "will display each comment."
919
  msgstr ""
920
 
921
+ #: admin/shortcode-builder/components/comments.php:137
922
  msgid ""
923
  "<strong>Note</strong>: The majority of premium themes have a custom callback "
924
  "function for displaying comments. Please see comments.php or functions.php "
925
  "within your theme directory to locate the callback function for your theme."
926
  msgstr ""
927
 
928
+ #: admin/shortcode-builder/components/comments.php:142
929
  msgid ""
930
  "You must add the comments shortcode directly to your single template file "
931
  "using the <a href=\"https://developer.wordpress.org/reference/functions/"
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 ""
940
 
941
+ #: admin/shortcode-builder/components/cta.php:31
942
  msgid "CTA Positioning"
943
  msgstr ""
944
 
945
+ #: admin/shortcode-builder/components/cta.php:32
946
  msgid ""
947
  "Insert call to action <strong><em id=\"sequence-update-before-after"
948
  "\">before</em></strong> post #<strong><em id=\"sequence-update\">1</em></"
949
  "strong>"
950
  msgstr ""
951
 
952
+ #: admin/shortcode-builder/components/cta.php:37
953
  msgid "Before / After"
954
  msgstr ""
955
 
956
+ #: admin/shortcode-builder/components/cta.php:39
957
  msgid "Before"
958
  msgstr ""
959
 
960
+ #: admin/shortcode-builder/components/cta.php:40
961
  msgid "After"
962
  msgstr ""
963
 
964
+ #: admin/shortcode-builder/components/cta.php:44
965
  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
 
973
+ #: admin/shortcode-builder/components/cta.php:57
974
  msgid ""
975
  "Select the <a href=\"admin.php?page=ajax-load-more-repeaters\" target="
976
  "\"_parent\">repeater template</a> that will display your call to action."
977
  msgstr ""
978
 
979
+ #: admin/shortcode-builder/components/cta.php:64
980
  msgid "-- Select Repeater --"
981
  msgstr ""
982
 
983
+ #: admin/shortcode-builder/components/cta.php:84
984
  msgid ""
985
  "Call to actions do NOT count as a post within an Ajax Load More loop.<br/>\n"
986
  " For example, if you set <strong>posts_per_page=\"5\"</strong> "
987
  "in your shortcode, 6 items will be displayed."
988
  msgstr ""
989
 
990
+ #: admin/shortcode-builder/components/filters.php:6
991
  msgid "Enable filters with this Ajax Load More instance."
992
  msgstr ""
993
 
994
+ #: admin/shortcode-builder/components/filters.php:31
995
  msgid "Target"
996
  msgstr ""
997
 
998
+ #: admin/shortcode-builder/components/filters.php:31
999
  msgid ""
1000
  "A target ID is not required but it is highly recommended to avoid issues "
1001
  "with querystring parsing on page load"
1002
  msgstr ""
1003
 
1004
+ #: admin/shortcode-builder/components/filters.php:32
1005
  msgid ""
1006
  "Connect Ajax Load More to a specific <a href=\"admin.php?page=ajax-load-more-"
1007
  "filters\">filter instance</a> by selecting the filter ID"
1008
  msgstr ""
1009
 
1010
+ #: admin/shortcode-builder/components/filters.php:52
1011
  msgid "-- Select Filter --"
1012
  msgstr ""
1013
 
1014
+ #: admin/shortcode-builder/components/filters.php:56
1015
  msgid "You don't have any filters! The first step is to create one"
1016
  msgstr ""
1017
 
1018
+ #: admin/shortcode-builder/components/filters.php:70
1019
  msgid "Analytics"
1020
  msgstr ""
1021
 
1022
+ #: admin/shortcode-builder/components/filters.php:70
1023
  msgid ""
1024
  "Each time the filter is updated a pageview will be sent to Google Analytics"
1025
  msgstr ""
1026
 
1027
+ #: admin/shortcode-builder/components/filters.php:71
1028
  msgid "Send pageviews to Google Analytics"
1029
  msgstr ""
1030
 
1031
+ #: admin/shortcode-builder/components/filters.php:92
1032
+ #: admin/shortcode-builder/components/rest-api.php:100
1033
  msgid "Debug Mode"
1034
  msgstr ""
1035
 
1036
+ #: admin/shortcode-builder/components/filters.php:93
1037
  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 ""
1044
 
1045
+ #: admin/shortcode-builder/components/nextpage.php:6
1046
  msgid "Quicktag"
1047
  msgstr ""
1048
 
1049
+ #: admin/shortcode-builder/components/nextpage.php:43
1050
  msgid "URL Rewrite"
1051
  msgstr ""
1052
 
1053
+ #: admin/shortcode-builder/components/nextpage.php:44
1054
  msgid "Update the browser address bar as pages come into view"
1055
  msgstr ""
1056
 
1057
+ #: admin/shortcode-builder/components/nextpage.php:51
1058
  msgid "Yes, update the URL"
1059
  msgstr ""
1060
 
1061
+ #: admin/shortcode-builder/components/nextpage.php:63
1062
  msgid "Google Analytics"
1063
  msgstr ""
1064
 
1065
+ #: admin/shortcode-builder/components/nextpage.php:64
1066
  msgid ""
1067
  "You must have a reference to your Google Analytics tracking code already on "
1068
  "the page"
1069
  msgstr ""
1070
 
1071
+ #: admin/shortcode-builder/components/nextpage.php:66
1072
  msgid "Each time a page is loaded it will count as a pageview"
1073
  msgstr ""
1074
 
1075
+ #: admin/shortcode-builder/components/nextpage.php:73
1076
  msgid "Yes, send pageviews to Google Analytics"
1077
  msgstr ""
1078
 
1079
+ #: admin/shortcode-builder/components/nextpage.php:84
1080
  msgid "Scroll to Page"
1081
  msgstr ""
1082
 
1083
+ #: admin/shortcode-builder/components/nextpage.php:85
1084
  msgid "Set Scroll Speed to 0 to disable scrolling to page"
1085
  msgstr ""
1086
 
1087
+ #: admin/shortcode-builder/components/nextpage.php:88
1088
  msgid "Scroll users automatically to the next page on 'Load More' button click"
1089
  msgstr ""
1090
 
1091
+ #: admin/shortcode-builder/components/nextpage.php:94
1092
  msgid "Scroll Speed"
1093
  msgstr ""
1094
 
1095
+ #: admin/shortcode-builder/components/nextpage.php:95
1096
  msgid "Scrolling speed in milliseconds (e.g. 1 second = 1000)"
1097
  msgstr ""
1098
 
1099
+ #: admin/shortcode-builder/components/nextpage.php:101
1100
  msgid "Scroll Top"
1101
  msgstr ""
1102
 
1103
+ #: admin/shortcode-builder/components/nextpage.php:102
1104
  msgid ""
1105
  "The scrolltop position of the window (used with scrolling and fwd/back "
1106
  "browser buttons)"
1107
  msgstr ""
1108
 
1109
+ #: admin/shortcode-builder/components/nextpage.php:109
1110
  msgid ""
1111
  "You must add the Next Page shortcode directly to your single template file "
1112
  "using the <a href=\"https://developer.wordpress.org/reference/functions/"
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 ""
1121
 
1122
+ #: admin/shortcode-builder/components/paging.php:27
1123
  msgid "Paging Controls"
1124
  msgstr ""
1125
 
1126
+ #: admin/shortcode-builder/components/paging.php:28
1127
  msgid "Show (&laquo;)previous and next(&raquo;) buttons."
1128
  msgstr ""
1129
 
1130
+ #: admin/shortcode-builder/components/paging.php:48
1131
  msgid "Paging Navigation Classes"
1132
  msgstr ""
1133
 
1134
+ #: admin/shortcode-builder/components/paging.php:49
1135
  msgid "Add custom CSS classes to the paging navigation menu."
1136
  msgstr ""
1137
 
1138
+ #: admin/shortcode-builder/components/paging.php:60
1139
  msgid "Show at Most"
1140
  msgstr ""
1141
 
1142
+ #: admin/shortcode-builder/components/paging.php:61
1143
  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 ""
1150
 
1151
+ #: admin/shortcode-builder/components/preloaded.php:27
1152
  msgid "Preload Amount"
1153
  msgstr ""
1154
 
1155
+ #: admin/shortcode-builder/components/preloaded.php:28
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
 
1168
+ #: admin/shortcode-builder/components/previous-post.php:38
1169
  msgid ""
1170
  "Selecting a taxonomy means only previous posts from the same taxonomy term "
1171
  "will be returned. If a post has multiple terms attached, each term will be "
1172
  "considered using an OR relationship query"
1173
  msgstr ""
1174
 
1175
+ #: admin/shortcode-builder/components/previous-post.php:39
1176
  msgid "Query previous posts from the same taxonomy term(s)."
1177
  msgstr ""
1178
 
1179
+ #: admin/shortcode-builder/components/previous-post.php:52
1180
+ #: admin/shortcode-builder/includes/tax-query-options.php:5
1181
+ #: admin/shortcode-builder/includes/tax-query-options.php:50
1182
+ #: admin/shortcode-builder/includes/tax-query-options.php:81
1183
  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
 
1196
+ #: admin/shortcode-builder/components/previous-post.php:71
1197
  msgid "Excluded Terms "
1198
  msgstr ""
1199
 
1200
+ #: admin/shortcode-builder/components/previous-post.php:71
1201
  msgid "A comma-separated list of excluded terms by ID"
1202
  msgstr ""
1203
 
1204
+ #: admin/shortcode-builder/components/previous-post.php:72
1205
  msgid "Exclude posts by term ID from the previous post query."
1206
  msgstr ""
1207
 
1208
+ #: admin/shortcode-builder/components/previous-post.php:81
1209
  msgid ""
1210
  "You must add the Previous Post shortcode directly to your single template "
1211
  "file using the <a href=\"https://developer.wordpress.org/reference/functions/"
1214
  "target=\"_blank\">View documentation</a>"
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
 
1222
+ #: admin/shortcode-builder/components/rest-api.php:21
1223
  msgid "Enable the WordPress REST API."
1224
  msgstr ""
1225
 
1226
+ #: admin/shortcode-builder/components/rest-api.php:45
1227
  msgid "Base URL"
1228
  msgstr ""
1229
 
1230
+ #: admin/shortcode-builder/components/rest-api.php:46
1231
  msgid "Set a default Base URL in the Ajax Load More settings panel"
1232
  msgstr ""
1233
 
1234
+ #: admin/shortcode-builder/components/rest-api.php:47
1235
  msgid "Enter the base URL to your installation of the REST API."
1236
  msgstr ""
1237
 
1238
+ #: admin/shortcode-builder/components/rest-api.php:59
1239
  msgid "Namespace"
1240
  msgstr ""
1241
 
1242
+ #: admin/shortcode-builder/components/rest-api.php:60
1243
  msgid "Set a default Namespace in the Ajax Load More settings panel"
1244
  msgstr ""
1245
 
1246
+ #: admin/shortcode-builder/components/rest-api.php:61
1247
  msgid "Enter the custom namespace for this Ajax Load More query."
1248
  msgstr ""
1249
 
1250
+ #: admin/shortcode-builder/components/rest-api.php:73
1251
  msgid "Endpoint"
1252
  msgstr ""
1253
 
1254
+ #: admin/shortcode-builder/components/rest-api.php:74
1255
  msgid "Set a default Endpoint in the Ajax Load More settings panel"
1256
  msgstr ""
1257
 
1258
+ #: admin/shortcode-builder/components/rest-api.php:75
1259
  msgid "Enter your custom endpoint for this Ajax Load More query."
1260
  msgstr ""
1261
 
1262
+ #: admin/shortcode-builder/components/rest-api.php:87
1263
  msgid "Template ID"
1264
  msgstr ""
1265
 
1266
+ #: admin/shortcode-builder/components/rest-api.php:87
1267
  msgid ""
1268
  "Ajax Load More references this ID while looping and displaying your data. "
1269
  "You must still select a repeater template for this instance of Ajax Load More"
1270
  msgstr ""
1271
 
1272
+ #: admin/shortcode-builder/components/rest-api.php:88
1273
  msgid ""
1274
  "Enter the ID of your javascript template.<br/><br/>e.g. <em>tmpl-alm-"
1275
  "template</em> = <em>alm-template</em>"
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
 
1286
+ #: admin/shortcode-builder/components/rest-api.php:101
1287
  msgid ""
1288
  "Enable debugging (console.log) of REST API responses in the browser console. "
1289
  msgstr ""
1290
 
1291
+ #: admin/shortcode-builder/components/rest-api.php:119
1292
  msgid ""
1293
  "Visit <a href=\"http://v2.wp-api.org/\" target=\"_blank\">http://v2.wp-api."
1294
  "org</a> for documentation on creating custom <a href=\"http://v2.wp-api.org/"
1296
  "More."
1297
  msgstr ""
1298
 
1299
+ #: admin/shortcode-builder/components/seo.php:4
1300
  msgid "SEO (Search Engine Optimization)"
1301
  msgstr ""
1302
 
1303
+ #: admin/shortcode-builder/components/seo.php:7
1304
  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 ""
1311
 
1312
+ #: admin/shortcode-builder/components/users.php:28
1313
  msgid "User Role"
1314
  msgstr ""
1315
 
1316
+ #: admin/shortcode-builder/components/users.php:29
1317
  msgid "Select the role of user to be displayed"
1318
  msgstr ""
1319
 
1320
+ #: admin/shortcode-builder/components/users.php:34
1321
  msgid "Select Role"
1322
  msgstr ""
1323
 
1324
+ #: admin/shortcode-builder/components/users.php:35
1325
  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
 
1334
+ #: admin/shortcode-builder/components/users.php:57
1335
  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
 
1345
+ #: admin/shortcode-builder/components/users.php:71
1346
  msgid "A comma separated list of users to be excluded by ID"
1347
  msgstr ""
1348
 
1349
+ #: admin/shortcode-builder/components/users.php:83
1350
  msgid "Users Per Page"
1351
  msgstr ""
1352
 
1353
+ #: admin/shortcode-builder/components/users.php:84
1354
  msgid "The number of users to show."
1355
  msgstr ""
1356
 
1357
+ #: admin/shortcode-builder/components/users.php:95
1358
  msgid "Orderby"
1359
  msgstr ""
1360
 
1361
+ #: admin/shortcode-builder/components/users.php:96
1362
  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
 
1375
+ #: admin/shortcode-builder/includes/meta-query-options.php:4
1376
  msgid "Key (Name):"
1377
  msgstr ""
1378
 
1379
+ #: admin/shortcode-builder/includes/meta-query-options.php:5
1380
  msgid "Enter custom field key(name)"
1381
  msgstr ""
1382
 
1383
+ #: admin/shortcode-builder/includes/meta-query-options.php:9
1384
  msgid "Value:"
1385
  msgstr ""
1386
 
1387
+ #: admin/shortcode-builder/includes/meta-query-options.php:9
1388
  msgid ""
1389
  "Query multiple values by splitting each value with a comma - e.g. value, "
1390
  "value2, value3 etc."
1391
  msgstr ""
1392
 
1393
+ #: admin/shortcode-builder/includes/meta-query-options.php:10
1394
  msgid "Enter custom field value(s)"
1395
  msgstr ""
1396
 
1397
+ #: admin/shortcode-builder/includes/meta-query-options.php:15
1398
  msgid "Operator:"
1399
  msgstr ""
1400
 
1401
+ #: admin/shortcode-builder/includes/meta-query-options.php:35
1402
  msgid "Type:"
1403
  msgstr ""
1404
 
1405
+ #: admin/shortcode-builder/includes/tax-query-options.php:3
1406
+ #: admin/shortcode-builder/includes/tax-query-options.php:47
1407
+ #: admin/shortcode-builder/includes/tax-query-options.php:78
1408
  msgid "Taxonomy:"
1409
  msgstr ""
1410
 
1411
+ #: admin/shortcode-builder/includes/tax-query-options.php:12
1412
+ #: admin/shortcode-builder/includes/tax-query-options.php:57
1413
+ #: admin/shortcode-builder/includes/tax-query-options.php:88
1414
  msgid "Taxonomy Terms:"
1415
  msgstr ""
1416
 
1417
+ #: admin/shortcode-builder/includes/tax-query-options.php:17
1418
+ #: admin/shortcode-builder/includes/tax-query-options.php:62
1419
+ #: admin/shortcode-builder/includes/tax-query-options.php:93
1420
  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
 
1428
+ #: admin/shortcode-builder/includes/tax-query-options.php:36
1429
  msgid ""
1430
  "The logical relationship between each taxonomy when there is more than one."
1431
  msgstr ""
1432
 
1433
+ #: admin/shortcode-builder/shortcode-builder.php:23
1434
  msgid "Add-ons & Extensions"
1435
  msgstr ""
1436
 
1437
+ #: admin/shortcode-builder/shortcode-builder.php:46
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 "
2003
  "Load More"
2004
  msgstr ""
2005
 
2006
+ #: admin/views/add-ons.php:38
2007
  msgid "Installed"
2008
  msgstr ""
2009
 
2010
+ #: admin/views/add-ons.php:40
2011
  msgid "Purchase"
2012
  msgstr ""
2013
 
2014
+ #: admin/views/add-ons.php:49
2015
  msgid ""
2016
  "All add-ons are installed as stand alone plugins and with a valid license "
2017
  "key will receive plugin update notifications directly within the <a href="
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 "
2028
  "WordPress functionality"
2029
  msgstr ""
2030
 
2031
+ #: admin/views/extensions.php:33
2032
  msgid ""
2033
  "Extensions are installed as stand alone plugins and receive update "
2034
  "notifications in the <a href=\"plugins.php\">plugin dashboard</a>."
2035
  msgstr ""
2036
 
2037
+ #: admin/views/help.php:4
2038
  msgid "Get started with our four step guide to painless implementation!"
2039
  msgstr ""
2040
 
2041
+ #: admin/views/help.php:9
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 ""
2052
 
2053
+ #: admin/views/help.php:35
2054
  msgid "Examples"
2055
  msgstr ""
2056
 
2057
+ #: admin/views/help.php:68
2058
  msgid "Example Library"
2059
  msgstr ""
2060
 
2061
+ #: admin/views/help.php:70
2062
  msgid ""
2063
  "We have a collection of over 20 real world Ajax Load More <a href=\"https://"
2064
  "connekthq.com/plugins/ajax-load-more/examples/\" target=\"_blank\">examples</"
2065
  "a> available on the plugin website"
2066
  msgstr ""
2067
 
2068
+ #: admin/views/help.php:73
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
  "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
  "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
 
2221
+ #: admin/views/settings.php:9
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
2254
  msgid ""
2255
  "Create your own Ajax Load More <a href=\"http://en.support.wordpress.com/"
2256
  "shortcodes/\" target=\"_blank\">shortcode</a> by adjusting the values below"
2257
  msgstr ""
2258
 
2259
+ #: admin/views/shortcode-builder.php:17
2260
  msgid "Back to Top"
2261
  msgstr ""
2262
 
2263
+ #: admin/views/shortcode-builder.php:29
2264
  msgid "Shortcode Output"
2265
  msgstr ""
2266
 
2267
+ #: admin/views/shortcode-builder.php:31
2268
  msgid ""
2269
  "Place the following shortcode into the content editor or widget area of your "
2270
  "theme."
2271
  msgstr ""
2272
 
2273
+ #: admin/views/shortcode-builder.php:35
2274
  msgid "Reset"
2275
  msgstr ""
2276
 
2277
+ #: admin/views/shortcode-builder.php:38
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
 
2314
+ #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:86
2315
+ #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:381
2316
  msgid "Activated"
2317
  msgstr ""
2318
 
2319
+ #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:128
2320
  msgid "By"
2321
  msgstr ""
2322
 
2323
+ #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:141
2324
  msgid "More Details"
2325
  msgstr ""
2326
 
2327
+ #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:163
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 ""
2339
 
2340
+ #: vendor/connekt-plugin-installer/class-connekt-plugin-installer.php:378
2341
  msgid "Are you sure you want to install this plugin?"
2342
  msgstr ""