Skip to content

Commit 43aad4b

Browse files
author
GITUSER
committed
Merge branch 'release/1.9.9.7.4'
2 parents 9f8d079 + 8479142 commit 43aad4b

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

core/landing-pages/classes/class.post-type.landing-page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ public static function sort_by_category() {
517517
/**
518518
* Convert the category id to the taxonomy id during a query
519519
*/
520-
public static function sort_by_category_prepare_query() {
520+
public static function sort_by_category_prepare_query( $query ) {
521521
global $pagenow;
522522
$qv = &$query->query_vars;
523523
if ($pagenow == 'edit.php' && isset($qv['landing_page_category']) && is_numeric($qv['landing_page_category'])) {

core/landing-pages/landing-pages.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Landing Pages
44
Plugin URI: http://www.inboundnow.com/landing-pages/
55
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.6
6+
Version: 2.7.7
77
Author: Inbound Now
88
Author URI: https://www.inboundnow.com/?innercity=true
99
Text Domain: inbound-pro
@@ -42,7 +42,7 @@ public function __construct() {
4242
*/
4343
private static function load_constants() {
4444

45-
define('LANDINGPAGES_CURRENT_VERSION', '2.7.6' );
45+
define('LANDINGPAGES_CURRENT_VERSION', '2.7.7' );
4646
define('LANDINGPAGES_URLPATH', plugins_url( '/' , __FILE__ ) );
4747
define('LANDINGPAGES_PATH', WP_PLUGIN_DIR.'/'.plugin_basename( dirname(__FILE__) ).'/' );
4848
define('LANDINGPAGES_PLUGIN_SLUG', 'landing-pages' );

core/leads/assets/css/wpl.admin.css

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,8 @@ h2 .nav-tab {
672672

673673

674674
#lead_image {
675-
max-width: 160px;
675+
width: 100%;
676+
max-width: 94%;
676677
display: inline-block;
677678
margin-right: 10px;
678679
background: #FCFDFE;
@@ -684,6 +685,11 @@ h2 .nav-tab {
684685
overflow: hidden;
685686
position: relative;
686687
z-index: 99;
688+
text-align:center;
689+
}
690+
691+
#lead_image_container {
692+
padding:10px;
687693
}
688694

689695
#lead_name_overlay {

inbound-pro.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin URI: http://www.inboundnow.com/
55
Description: Professional Inbound Marketing Suite for WordPress
66
Author: InboundWP LLC
7-
Version: 1.9.9.7.3
7+
Version: 1.9.9.7.4
88
Author URI: http://www.inboundnow.com/
99
Text Domain: inbound-pro
1010
*/
@@ -95,8 +95,8 @@ public function __construct() {
9595
*/
9696
private static function define_constants() {
9797

98-
define('INBOUND_PRO_CURRENT_VERSION', '1.9.9.7.3' );
99-
define('INBOUND_PRO_STABLE_VERSION', '1.9.9.7.1' );
98+
define('INBOUND_PRO_CURRENT_VERSION', '1.9.9.7.4' );
99+
define('INBOUND_PRO_STABLE_VERSION', '1.9.9.7.3' );
100100
define('INBOUND_PRO_TRANSLATIONS_VERSION', '1.30.22' );
101101
define('INBOUND_PRO_URLPATH', plugin_dir_url( __FILE__ ));
102102
define('INBOUND_PRO_PATH', plugin_dir_path( __FILE__ ) );

0 commit comments

Comments
 (0)