Version Description
- Removing Impressions, Conversions, and CR rate as sortable columns.
Download this release
Release Info
Developer | adbox |
Plugin | WordPress Landing Pages |
Version | 2.7.8 |
Comparing to | |
See all releases |
Code changes from version 2.7.7 to 2.7.8
- classes/class.post-type.landing-page.php +2 -2
- landing-pages.php +2 -2
- readme.txt +4 -1
classes/class.post-type.landing-page.php
CHANGED
@@ -38,7 +38,7 @@ class Landing_Pages_Post_Type {
|
|
38 |
add_filter('parse_query', array( __CLASS__ , 'sort_by_category_prepare_query' ));
|
39 |
|
40 |
/* make columns sortable */
|
41 |
-
add_filter('manage_edit-landing-page_sortable_columns', array( __CLASS__ , 'define_sortable_columns' ));
|
42 |
|
43 |
/* add styling handlers to custom post states */
|
44 |
add_filter('display_post_states', array( __CLASS__ , 'filter_custom_post_states' ) );
|
@@ -294,7 +294,7 @@ class Landing_Pages_Post_Type {
|
|
294 |
|
295 |
return array(
|
296 |
'title' => 'title',
|
297 |
-
'
|
298 |
'actions' => 'actions',
|
299 |
'cr' => 'cr'
|
300 |
);
|
38 |
add_filter('parse_query', array( __CLASS__ , 'sort_by_category_prepare_query' ));
|
39 |
|
40 |
/* make columns sortable */
|
41 |
+
//add_filter('manage_edit-landing-page_sortable_columns', array( __CLASS__ , 'define_sortable_columns' ));
|
42 |
|
43 |
/* add styling handlers to custom post states */
|
44 |
add_filter('display_post_states', array( __CLASS__ , 'filter_custom_post_states' ) );
|
294 |
|
295 |
return array(
|
296 |
'title' => 'title',
|
297 |
+
'inbound_impressions' => 'impressions',
|
298 |
'actions' => 'actions',
|
299 |
'cr' => 'cr'
|
300 |
);
|
landing-pages.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Landing Pages
|
4 |
Plugin URI: http://www.inboundnow.com/landing-pages/
|
5 |
Description: Landing page template framework with variant testing and lead capturing through cooperation with Inbound Now's Leads plugin. This is the stand alone version served through WordPress.org.
|
6 |
-
Version: 2.7.
|
7 |
Author: Inbound Now
|
8 |
Author URI: https://www.inboundnow.com/?innercity=true
|
9 |
Text Domain: inbound-pro
|
@@ -42,7 +42,7 @@ if (!class_exists('Inbound_Landing_Pages_Plugin')) {
|
|
42 |
*/
|
43 |
private static function load_constants() {
|
44 |
|
45 |
-
define('LANDINGPAGES_CURRENT_VERSION', '2.7.
|
46 |
define('LANDINGPAGES_URLPATH', plugins_url( '/' , __FILE__ ) );
|
47 |
define('LANDINGPAGES_PATH', WP_PLUGIN_DIR.'/'.plugin_basename( dirname(__FILE__) ).'/' );
|
48 |
define('LANDINGPAGES_PLUGIN_SLUG', 'landing-pages' );
|
3 |
Plugin Name: Landing Pages
|
4 |
Plugin URI: http://www.inboundnow.com/landing-pages/
|
5 |
Description: Landing page template framework with variant testing and lead capturing through cooperation with Inbound Now's Leads plugin. This is the stand alone version served through WordPress.org.
|
6 |
+
Version: 2.7.8
|
7 |
Author: Inbound Now
|
8 |
Author URI: https://www.inboundnow.com/?innercity=true
|
9 |
Text Domain: inbound-pro
|
42 |
*/
|
43 |
private static function load_constants() {
|
44 |
|
45 |
+
define('LANDINGPAGES_CURRENT_VERSION', '2.7.8' );
|
46 |
define('LANDINGPAGES_URLPATH', plugins_url( '/' , __FILE__ ) );
|
47 |
define('LANDINGPAGES_PATH', WP_PLUGIN_DIR.'/'.plugin_basename( dirname(__FILE__) ).'/' );
|
48 |
define('LANDINGPAGES_PLUGIN_SLUG', 'landing-pages' );
|
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: 5.2.1
|
10 |
-
Stable Tag: 2.7.
|
11 |
|
12 |
|
13 |
Create landing pages for your WordPress site. Monitor and improve conversion rates, run A/B split tests, customize your own templates and more.
|
@@ -86,6 +86,9 @@ We also offer a guide for using <a href="https://github.com/inboundnow/inbound-p
|
|
86 |
== Changelog ==
|
87 |
|
88 |
|
|
|
|
|
|
|
89 |
= 2.7.7 =
|
90 |
* Fixing issue with category filter on landing pages CPT listing page
|
91 |
|
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: 5.2.1
|
10 |
+
Stable Tag: 2.7.8
|
11 |
|
12 |
|
13 |
Create landing pages for your WordPress site. Monitor and improve conversion rates, run A/B split tests, customize your own templates and more.
|
86 |
== Changelog ==
|
87 |
|
88 |
|
89 |
+
= 2.7.8 =
|
90 |
+
* Removing Impressions, Conversions, and CR rate as sortable columns.
|
91 |
+
|
92 |
= 2.7.7 =
|
93 |
* Fixing issue with category filter on landing pages CPT listing page
|
94 |
|