Version Description
- Misc bug fixes
Download this release
Release Info
Developer | adbox |
Plugin | WordPress Landing Pages |
Version | 1.5.2 |
Comparing to | |
See all releases |
Code changes from version 1.5.1 to 1.5.2
- landing-pages.php +2 -2
- modules/module.track.php.orig +0 -1
- readme.txt +2 -2
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.5.
|
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.5.
|
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.5.2
|
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.5.2' );
|
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.orig
DELETED
@@ -1 +0,0 @@
|
|
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 |
}
|
|
|
0 |
$count_key = 'lp_page_views_count';
|
1 |
$count = get_post_meta($postID, $count_key, true);
|
2 |
if($count==''){
|
3 |
delete_post_meta($postID, $count_key);
|
4 |
add_post_meta($postID, $count_key, '0');
|
5 |
return;
|
6 |
}
|
7 |
return $count;
|
8 |
$count_key = 'lp_page_views_count';
|
9 |
$count = get_post_meta($postID, $count_key, true);
|
10 |
if($count==''){
|
11 |
$count = 0;
|
12 |
delete_post_meta($postID, $count_key);
|
13 |
add_post_meta($postID, $count_key, '0');
|
14 |
}else{
|
15 |
$count++;
|
16 |
update_post_meta($postID, $count_key, $count);
|
17 |
}
|
18 |
$count_key = 'lp_page_conversions_count';
|
19 |
$count = get_post_meta($postID, $count_key, true);
|
20 |
if($count==''){
|
21 |
delete_post_meta($postID, $count_key);
|
22 |
add_post_meta($postID, $count_key, '0');
|
23 |
return "0";
|
24 |
}
|
25 |
return $count;
|
26 |
$count_key = 'lp_page_conversions_count';
|
27 |
$count = get_post_meta($postID, $count_key, true);
|
28 |
if($count==''){
|
29 |
$count = 0;
|
30 |
delete_post_meta($postID, $count_key);
|
31 |
add_post_meta($postID, $count_key, '0');
|
32 |
}else{
|
33 |
$count++;
|
34 |
update_post_meta($postID, $count_key, $count);
|
35 |
}
|
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.8
|
9 |
Tested up to: 3.8
|
10 |
-
Stable Tag: 1.5.
|
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 |
|
@@ -68,7 +68,7 @@ The plugin is also fully extendable and has a number of <a href='http://docs.inb
|
|
68 |
4. Choose from a ton of pre-made templates, use your existing design, or design your own theme!
|
69 |
|
70 |
== Changelog ==
|
71 |
-
= 1.5.
|
72 |
* Misc bug fixes
|
73 |
|
74 |
= 1.5.0 =
|
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.8
|
9 |
Tested up to: 3.8
|
10 |
+
Stable Tag: 1.5.2
|
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 |
|
68 |
4. Choose from a ton of pre-made templates, use your existing design, or design your own theme!
|
69 |
|
70 |
== Changelog ==
|
71 |
+
= 1.5.2 =
|
72 |
* Misc bug fixes
|
73 |
|
74 |
= 1.5.0 =
|