WordPress Landing Pages - Version 1.4.7

Version Description

Download this release

Release Info

Developer adbox
Plugin Icon 128x128 WordPress Landing Pages
Version 1.4.7
Comparing to
See all releases

Code changes from version 1.4.6 to 1.4.7

Files changed (3) hide show
  1. landing-pages.php +2 -2
  2. modules/module.track.php +1 -1
  3. readme.txt +1 -1
landing-pages.php CHANGED
@@ -3,14 +3,14 @@
3
  Plugin Name: Landing Pages
4
  Plugin URI: http://www.inboundnow.com/landing-pages/
5
  Description: The first true all-in-one Landing Page solution for WordPress, including ongoing conversion metrics, a/b split testing, unlimited design options and so much more!
6
- Version: 1.4.6
7
  Author: Inbound Now
8
  Author URI: http://www.inboundnow.com/
9
  Text Domain: landing-pages
10
  Domain Path: shared/languages/landing-pages/
11
  */
12
 
13
- define('LANDINGPAGES_CURRENT_VERSION', '1.4.6' );
14
  define('LANDINGPAGES_URLPATH', WP_PLUGIN_URL.'/'.plugin_basename( dirname(__FILE__) ).'/' );
15
  define('LANDINGPAGES_PATH', WP_PLUGIN_DIR.'/'.plugin_basename( dirname(__FILE__) ).'/' );
16
  define('LANDINGPAGES_PLUGIN_SLUG', plugin_basename( dirname(__FILE__) ) );
3
  Plugin Name: Landing Pages
4
  Plugin URI: http://www.inboundnow.com/landing-pages/
5
  Description: The first true all-in-one Landing Page solution for WordPress, including ongoing conversion metrics, a/b split testing, unlimited design options and so much more!
6
+ Version: 1.4.7
7
  Author: Inbound Now
8
  Author URI: http://www.inboundnow.com/
9
  Text Domain: landing-pages
10
  Domain Path: shared/languages/landing-pages/
11
  */
12
 
13
+ define('LANDINGPAGES_CURRENT_VERSION', '1.4.7' );
14
  define('LANDINGPAGES_URLPATH', WP_PLUGIN_URL.'/'.plugin_basename( dirname(__FILE__) ).'/' );
15
  define('LANDINGPAGES_PATH', WP_PLUGIN_DIR.'/'.plugin_basename( dirname(__FILE__) ).'/' );
16
  define('LANDINGPAGES_PLUGIN_SLUG', plugin_basename( dirname(__FILE__) ) );
modules/module.track.php CHANGED
@@ -1 +1 @@
1
- <?php
2
  $count_key = 'lp_page_views_count';
3
  $count = get_post_meta($postID, $count_key, true);
4
  if($count==''){
5
  delete_post_meta($postID, $count_key);
6
  add_post_meta($postID, $count_key, '0');
7
  return;
8
  }
9
  return $count;
10
  $count_key = 'lp_page_views_count';
11
  $count = get_post_meta($postID, $count_key, true);
12
  if($count==''){
13
  $count = 0;
14
  delete_post_meta($postID, $count_key);
15
  add_post_meta($postID, $count_key, '0');
16
  }else{
17
  $count++;
18
  update_post_meta($postID, $count_key, $count);
19
  }
20
  $count_key = 'lp_page_conversions_count';
21
  $count = get_post_meta($postID, $count_key, true);
22
  if($count==''){
23
  delete_post_meta($postID, $count_key);
24
  add_post_meta($postID, $count_key, '0');
25
  return "0";
26
  }
27
  return $count;
28
  $count_key = 'lp_page_conversions_count';
29
  $count = get_post_meta($postID, $count_key, true);
30
  if($count==''){
31
  $count = 0;
32
  delete_post_meta($postID, $count_key);
33
  add_post_meta($postID, $count_key, '0');
34
  }else{
35
  $count++;
36
  update_post_meta($postID, $count_key, $count);
37
  }
 
38
  $count_key = 'lp_page_views_count';
39
  $count = get_post_meta($postID, $count_key, true);
40
  if($count==''){
41
  delete_post_meta($postID, $count_key);
42
  add_post_meta($postID, $count_key, '0');
43
  return;
44
  }
45
  return $count;
46
  $count_key = 'lp_page_views_count';
47
  $count = get_post_meta($postID, $count_key, true);
48
  if($count==''){
49
  $count = 0;
50
  delete_post_meta($postID, $count_key);
51
  add_post_meta($postID, $count_key, '0');
52
  }else{
53
  $count++;
54
  update_post_meta($postID, $count_key, $count);
55
  }
56
  $count_key = 'lp_page_conversions_count';
57
  $count = get_post_meta($postID, $count_key, true);
58
  if($count==''){
59
  delete_post_meta($postID, $count_key);
60
  add_post_meta($postID, $count_key, '0');
61
  return "0";
62
  }
63
  return $count;
64
  $count_key = 'lp_page_conversions_count';
65
  $count = get_post_meta($postID, $count_key, true);
66
  if($count==''){
67
  $count = 0;
68
  delete_post_meta($postID, $count_key);
69
  add_post_meta($postID, $count_key, '0');
70
  }else{
71
  $count++;
72
  update_post_meta($postID, $count_key, $count);
73
  }
 
1
  $count_key = 'lp_page_views_count';
2
  $count = get_post_meta($postID, $count_key, true);
3
  if($count==''){
4
  delete_post_meta($postID, $count_key);
5
  add_post_meta($postID, $count_key, '0');
6
  return;
7
  }
8
  return $count;
9
  $count_key = 'lp_page_views_count';
10
  $count = get_post_meta($postID, $count_key, true);
11
  if($count==''){
12
  $count = 0;
13
  delete_post_meta($postID, $count_key);
14
  add_post_meta($postID, $count_key, '0');
15
  }else{
16
  $count++;
17
  update_post_meta($postID, $count_key, $count);
18
  }
19
  $count_key = 'lp_page_conversions_count';
20
  $count = get_post_meta($postID, $count_key, true);
21
  if($count==''){
22
  delete_post_meta($postID, $count_key);
23
  add_post_meta($postID, $count_key, '0');
24
  return "0";
25
  }
26
  return $count;
27
  $count_key = 'lp_page_conversions_count';
28
  $count = get_post_meta($postID, $count_key, true);
29
  if($count==''){
30
  $count = 0;
31
  delete_post_meta($postID, $count_key);
32
  add_post_meta($postID, $count_key, '0');
33
  }else{
34
  $count++;
35
  update_post_meta($postID, $count_key, $count);
36
  }
37
+ <?php
38
  $count_key = 'lp_page_views_count';
39
  $count = get_post_meta($postID, $count_key, true);
40
  if($count==''){
41
  delete_post_meta($postID, $count_key);
42
  add_post_meta($postID, $count_key, '0');
43
  return;
44
  }
45
  return $count;
46
  $count_key = 'lp_page_views_count';
47
  $count = get_post_meta($postID, $count_key, true);
48
  if($count==''){
49
  $count = 0;
50
  delete_post_meta($postID, $count_key);
51
  add_post_meta($postID, $count_key, '0');
52
  }else{
53
  $count++;
54
  update_post_meta($postID, $count_key, $count);
55
  }
56
  $count_key = 'lp_page_conversions_count';
57
  $count = get_post_meta($postID, $count_key, true);
58
  if($count==''){
59
  delete_post_meta($postID, $count_key);
60
  add_post_meta($postID, $count_key, '0');
61
  return "0";
62
  }
63
  return $count;
64
  $count_key = 'lp_page_conversions_count';
65
  $count = get_post_meta($postID, $count_key, true);
66
  if($count==''){
67
  $count = 0;
68
  delete_post_meta($postID, $count_key);
69
  add_post_meta($postID, $count_key, '0');
70
  }else{
71
  $count++;
72
  update_post_meta($postID, $count_key, $count);
73
  }
readme.txt CHANGED
@@ -7,7 +7,7 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Tags: landing pages, inbound marketing, conversion pages, split testing, a b test, a b testing, a/b test, a/b testing, coming soon page, email list, landing page, list building, maintenance page, squeeze page, inbound now, landing-pages, splash pages, cpa, click tracking, goal tracking, analytics, free landing page templates
8
  Requires at least: 3.7
9
  Tested up to: 3.8
10
- Stable Tag: 1.4.6
11
 
12
  Create landing pages for your WordPress site. Monitor and improve conversion rates, run A/B split tests, customize your own templates and more.
13
 
7
  Tags: landing pages, inbound marketing, conversion pages, split testing, a b test, a b testing, a/b test, a/b testing, coming soon page, email list, landing page, list building, maintenance page, squeeze page, inbound now, landing-pages, splash pages, cpa, click tracking, goal tracking, analytics, free landing page templates
8
  Requires at least: 3.7
9
  Tested up to: 3.8
10
+ Stable Tag: 1.4.7
11
 
12
  Create landing pages for your WordPress site. Monitor and improve conversion rates, run A/B split tests, customize your own templates and more.
13