1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443: 444: 445: 446: 447: 448: 449: 450: 451: 452: 453: 454: 455: 456: 457: 458: 459: 460: 461: 462: 463: 464: 465: 466: 467: 468: 469: 470: 471: 472: 473: 474: 475: 476: 477: 478: 479: 480: 481: 482: 483: 484: 485: 486: 487: 488: 489: 490: 491: 492: 493: 494: 495: 496: 497: 498: 499: 500: 501: 502: 503: 504: 505: 506: 507: 508: 509: 510: 511: 512: 513: 514: 515: 516: 517: 518: 519: 520: 521: 522: 523: 524: 525: 526: 527: 528: 529: 530: 531: 532: 533: 534: 535: 536: 537: 538: 539: 540: 541: 542: 543: 544: 545: 546: 547: 548: 549: 550: 551: 552: 553: 554: 555: 556: 557: 558: 559: 560: 561: 562: 563: 564: 565: 566: 567: 568: 569: 570: 571: 572: 573: 574: 575: 576: 577: 578: 579: 580: 581: 582: 583: 584: 585: 586: 587: 588: 589: 590: 591: 592: 593: 594: 595: 596: 597: 598: 599: 600: 601: 602: 603: 604: 605: 606: 607: 608: 609: 610: 611: 612: 613: 614: 615: 616: 617: 618: 619: 620: 621: 622: 623: 624: 625: 626: 627: 628: 629: 630: 631: 632: 633: 634: 635: 636: 637: 638: 639: 640: 641: 642: 643: 644: 645: 646: 647: 648: 649: 650: 651: 652: 653: 654: 655: 656: 657: 658: 659: 660: 661: 662: 663: 664: 665: 666: 667: 668: 669: 670: 671: 672: 673: 674: 675: 676: 677: 678: 679: 680: 681: 682: 683: 684: 685: 686: 687: 688: 689: 690: 691: 692: 693: 694: 695: 696: 697: 698: 699: 700: 701: 702: 703: 704: 705: 706: 707: 708: 709: 710: 711: 712: 713: 714: 715: 716: 717: 718: 719: 720: 721: 722: 723:
<?php
class Landing_Pages_Template_Switcher {
public function __construct() {
self::add_hooks();
}
public static function add_hooks() {
add_filter('wp_title', array( __CLASS__ , 'display_landing_page_title' ), 9, 2);
add_filter('the_title', array( __CLASS__ , 'display_landing_page_title' ) , 10, 2);
add_filter('get_the_title', array( __CLASS__ , 'display_landing_page_title' ), 10, 2);
add_filter('the_content', array( __CLASS__ , 'display_landing_page_content' ) , 10, 2);
add_filter('get_the_content', array( __CLASS__ , 'display_landing_page_content' ) , 10, 2);
add_filter('the_content', array( __CLASS__ , 'display_conversion_area' ) , 20);
add_filter('get_the_content', array( __CLASS__ , 'display_conversion_area' ), 20);
add_filter('template_include', array( __CLASS__ , 'switch_template' ), 13);
add_action('wp_head', array( __CLASS__ , 'load_custom_js_css' ) );
add_shortcode('lp_conversion_area', array( __CLASS__ , 'process_conversion_area_shortcode') );
add_shortcode('landing-page-conversion', array( __CLASS__ , 'process_conversion_shortcode') );
add_action( 'init' , array( __CLASS__ , 'process_postback_conversion' ));
add_filter('wp_nav_menu_args', array( __CLASS__ , 'hide_nav_menu' ) );
add_action('wp_print_styles', array( __CLASS__ , 'strip_styles' ), 100);
}
public static function display_landing_page_title( $content, $id = null ) {
global $post;
if (!isset($post)) {
return $content;
}
if ( ($post->post_type != 'landing-page' || is_admin()) || $id != $post->ID ) {
return $content;
}
return lp_main_headline($post, null, true);
}
public static function display_landing_page_content($content) {
global $post;
if (!isset($post) || $post->post_type != 'landing-page') {
return $content;
}
$content = Landing_Pages_Variations::get_post_content( $post->ID );
$content = do_shortcode( $content );
if (!defined('LANDING_PAGES_WPAUTOP') || LANDING_PAGES_WPAUTOP === TRUE) {
$content = wpautop($content);
}
return $content;
}
public static function display_conversion_area($content) {
if ('landing-page' != get_post_type() || is_admin()) {
return $content;
}
global $post;
remove_action('the_content', array( __CLASS__ , 'display_conversion_area' ) , 20 );
$template = Landing_Pages_Variations::get_current_template( $post->ID );
$my_theme = wp_get_theme($template);
if ( !$my_theme->exists() && $template != 'default') {
return $content;
}
$wrapper_class = "";
$position = Landing_Pages_Variations::get_conversion_area_placement( $post->ID );
$conversion_area = lp_conversion_area(null, null, true, true);
$conversion_area = "<div id='lp_container' class='$wrapper_class'>" . $conversion_area . "</div>";
if ($position == 'top') {
$content = $conversion_area . $content;
} else if ($position == 'bottom') {
$content = $content . $conversion_area;
} else if ($position == 'widget') {
$content = $content;
} else {
$conversion_area = str_replace("id='lp_container'", "id='lp_container' class='lp_form_$position' style='float:$position'", $conversion_area);
$content = $conversion_area . $content;
}
return $content;
}
public static function switch_template( $template ) {
global $wp_query, $post, $query_string;
if (!isset($post) || $post->post_type != "landing-page" || !is_singular("landing-page")) {
return $template;
}
if (post_password_required()) {
$password = apply_filters('landing-pages/password-template' , get_the_password_form());
if (file_exists($password)) {
return $password;
} else {
echo $password;
exit;
}
}
if (!defined('NGG_DISABLE_FILTER_THE_CONTENT')) {
define( 'NGG_DISABLE_FILTER_THE_CONTENT' , true );
}
$selected_template = Landing_Pages_Variations::get_current_template( $post->ID );
if (!isset($selected_template) || $selected_template === 'default' ) {
return $template;
}
$my_theme = wp_get_theme( $selected_template );
if ($my_theme->exists()) {
return $template;
}
if (file_exists(LANDINGPAGES_PATH . 'templates/' . $selected_template . '/index.php')) {
return LANDINGPAGES_PATH . 'templates/' . $selected_template . '/index.php';
}
else if (file_exists(LANDINGPAGES_UPLOADS_PATH . $selected_template . '/index.php')) {
return LANDINGPAGES_UPLOADS_PATH . $selected_template . '/index.php';
}
else if (file_exists(LANDINGPAGES_THEME_TEMPLATES_PATH . $selected_template . '/index.php')) {
return LANDINGPAGES_THEME_TEMPLATES_PATH . $selected_template . '/index.php';
}
return $template;
}
public static function load_custom_js_css() {
global $post;
if ( !isset($post) || 'landing-page' != $post->post_type) {
return;
}
$custom_css_name = Landing_Pages_Variations::prepare_input_id('lp-custom-css');
$custom_js_name =Landing_Pages_Variations::prepare_input_id('lp-custom-js');
$custom_css = Landing_Pages_Variations::get_custom_css( $post->ID );
$custom_js = Landing_Pages_Variations::get_custom_js( $post->ID );
echo "<!-- This site landing page was built with the WordPress Landing Pages plugin - https://www.inboundnow.com/landing-pages/ -->";
if (!stristr($custom_css, '<style')) {
echo '<style type="text/css" id="lp_css_custom">' . $custom_css . '</style>';
} else {
echo $custom_css;
}
if (!stristr($custom_js, '<script') && ( stristr($custom_js, '$.') || stristr($custom_js, 'jQuery') ) ) {
echo '<script type="text/javascript" id="lp_js_custom">jQuery(document).ready(function($) {
' . $custom_js . ' });</script>';
} else if (!stristr($custom_js, '<script')) {
echo '<script type="text/javascript" id="lp_js_custom">' . $custom_js . '</script>';
} else {
echo $custom_js;
}
}
public static function process_conversion_area_shortcode($atts, $content = null) {
extract(shortcode_atts(array('id' => '', 'align' => ''
), $atts));
$conversion_area = lp_conversion_area($post = null, $content = null, $return = true, $doshortcode = true, $rebuild_attributes = true);
return $conversion_area;
}
public static function process_conversion_shortcode($atts, $content = null) {
extract(shortcode_atts(array(
'id' => '',
'vid' => '0'
), $atts));
$do_not_track = apply_filters('inbound_analytics_stop_track' , false );
if ( $do_not_track || isset($_SESSION['landing_page_conversions']) && in_array( $id , $_SESSION['landing_page_conversions'] ) ) {
return;
}
Landing_Pages_Variations::record_conversion($id , $vid);
$_SESSION['landing_page_conversions'][] = $id;
}
public static function process_postback_conversion($atts, $content = null) {
if ( !isset($_GET['postback']) ) {
return;
}
if ( !isset($_GET['event']) || $_GET['event'] != 'lp_conversion' ) {
return;
}
$id = $_GET['id'];
$vid = $_GET['vid'];
$salt = md5( $id . AUTH_KEY );
if ( $_GET['salt'] != $salt ) {
return;
}
Landing_Pages_Variations::record_conversion($id , $vid);
_e('success','landing-pages');
exit;
}
public static function hide_nav_menu($args = '') {
global $post;
if ( !isset($post) || $post->post_type != 'landing-page') {
return $args;
}
$template_name = Landing_Pages_Variations::get_current_template( $post->ID );
if ($template_name != 'default') {
return $args;
}
$nav_status = get_post_meta($post->ID, 'default-lp_hide_nav', true);
if ($nav_status != 'off' ) {
return $args;
}
if (isset($args['container_class'])) {
$current_class = " " . $args['container_class'];
}
$args['container_class'] = "custom_landing_page_nav{$current_class}";
$args['echo'] = false;
return $args;
}
public static function load_misc_plugin_support() {
if (class_exists('WP_Featherlight_Scripts')) {
$wpfl = new WP_Featherlight_Scripts(plugin_dir_url( 'wp-featherlight' ) , '');
$wpfl->load_css();
}
do_action('load_misc_plugin_support');
}
public static function strip_styles() {
if (is_admin() || 'landing-page' != get_post_type() || !is_singular('landing-page')) {
return;
}
global $post;
$template = Landing_Pages_Variations::get_current_template( $post->ID );
$my_theme = wp_get_theme($template);
if ($my_theme->exists() || $template == 'default') {
return;
}
global $wp_styles;
$registered_scripts = $wp_styles->registered;
$inbound_white_list = array();
foreach ($registered_scripts as $handle) {
if (preg_match("/\/plugins\/leads\//", $handle->src)) {
$inbound_white_list[] = $handle->handle;
}
if (preg_match("/\/plugins\/cta\//", $handle->src)) {
$inbound_white_list[] = $handle->handle;
}
if (preg_match("/\/plugins\/landing-pages\//", $handle->src)) {
$inbound_white_list[] = $handle->handle;
}
}
$wp_styles->queue = $inbound_white_list;
wp_enqueue_style('admin-bar');
}
}
new Landing_Pages_Template_Switcher;
function lp_main_headline($post = null, $headline = null, $return = false) {
if (!isset($post)) {
global $post;
}
$main_headline = Landing_Pages_Variations::get_main_headline( $post->ID );
if (!$return) {
echo $main_headline;
} else {
return $main_headline;
}
}
function lp_conversion_area($post = null, $content = null, $return = false, $doshortcode = true) {
if (!isset($post)) {
global $post;
}
$content = Landing_Pages_Variations::get_conversion_area( $post->ID );
$wrapper_class = lp_discover_important_wrappers($content);
if ($doshortcode) {
$content = do_shortcode($content);
}
$content = apply_filters('lp_conversion_area_post', $content, $post);
if (!$return) {
$content = str_replace('<p><div id="inbound-form-wrapper"', '<div id="inbound-form-wrapper"', $content);
$content = preg_replace('/<p[^>]*><\/p[^>]*>/', '', $content);
$content = preg_replace('/<\/p>/', '', $content);
echo do_shortcode($content);
} else {
return $content;
}
}
function lp_content_area($post = null, $content = null, $return = false) {
if (!isset($post)) {
global $post;
}
if (!isset($post) && isset($_REQUEST['post'])) {
$post = get_post(intval($_REQUEST['post']));
} else if (!isset($post) && isset($_REQUEST['lp_id'])) {
$post = get_post(intval($_REQUEST['lp_id']));
}
$content_area = Landing_Pages_Variations::get_post_content( $post->ID );
if (!is_admin()) {
$content_area = apply_filters('the_content', $content_area);
}
if (!$return) {
echo $content_area;
} else {
return $content_area;
}
}
function lp_get_parent_directory($path) {
return basename($path);
}
function lp_body_class() {
global $post;
global $lp_data;
$template = Landing_Pages_Variations::get_current_template( $post->ID );
if ($template) {
$lp_body_class = "template-" . $template;
$postid = "page-id-" . get_the_ID();
echo 'class="';
echo $lp_body_class . " " . $postid . " wordpress-landing-page";
echo '"';
}
return $lp_body_class;
}
function lp_get_value($post, $key, $field_id) {
if (!isset($post)) {
return '';
}
$return = Landing_Pages_Variations::get_setting_value( $key . '-'. $field_id , $post->ID );
return do_shortcode($return);
}
function lp_generate_drowndown($select_id, $post_type, $selected = 0, $width = 400, $height = 230, $font_size = 13, $multiple = true) {
$post_type_object = get_post_type_object($post_type);
$label = $post_type_object->label;
if ($multiple == true) {
$multiple = "multiple='multiple'";
} else {
$multiple = "";
}
$posts = get_posts(array('post_type' => $post_type, 'post_status' => 'publish', 'suppress_filters' => false, 'posts_per_page' => -1));
echo '<select name="' . $select_id . '" id="' . $select_id . '" class="lp-multiple-select" style="width:' . $width . 'px;height:' . $height . 'px;font-size:' . $font_size . 'px;" ' . $multiple . '>';
foreach ($posts as $post) {
echo '<option value="', $post->ID, '"', $selected == $post->ID ? ' selected="selected"' : '', '>', $post->post_title, '</option>';
}
echo '</select>';
}
function lp_in_admin_header() {
global $post, $wp_meta_boxes;
if ( !isset($post) || $post->post_type != 'landing-page') {
return;
}
unset($wp_meta_boxes[get_current_screen()->id]['normal']['core']['postcustom']);
}
add_action('in_admin_header', 'lp_in_admin_header');
function lp_discover_important_wrappers($content) {
$wrapper_class = "";
if (strstr($content, 'gform_wrapper')) {
$wrapper_class = 'gform_wrapper';
}
return $wrapper_class;
}
function lp_rebuild_attributes($content = null, $wrapper_class = null) {
if (strstr($content, '<form')) {
return $content;
}
$inputs = preg_match_all('/\<a(.*?)\>/s', $content, $matches);
if (!empty($matches[0])) {
foreach ($matches[0] as $key => $value) {
if ($key == 0) {
$new_value = $value;
$new_value = preg_replace('/ class=(["\'])(.*?)(["\'])/', 'class="$2 inbound-track-link"', $new_value);
$content = str_replace($value, $new_value, $content);
break;
}
}
}
$check_wrap = preg_match_all('/lp_container_noform/s', $content, $check);
if (empty($check[0])) {
$content = "<div id='lp_container_noform' class='$wrapper_class link-click-tracking'>{$content}</div>";
}
return $content;
}
function lp_add_option($key, $type, $id, $default = null, $label = null, $description = null, $options = null) {
switch ($type) {
case "colorpicker":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'colorpicker', 'default' => $default);
break;
case "text":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'text', 'default' => $default);
break;
case "license-key":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'inbound-license-key', 'default' => $default, 'slug' => $id);
break;
case "textarea":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'textarea', 'default' => $default);
break;
case "wysiwyg":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'wysiwyg', 'default' => $default);
break;
case "media":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'media', 'default' => $default);
break;
case "checkbox":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'checkbox', 'default' => $default, 'options' => $options);
break;
case "radio":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'radio', 'default' => $default, 'options' => $options);
break;
case "dropdown":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'dropdown', 'default' => $default, 'options' => $options);
break;
case "datepicker":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'datepicker', 'default' => $default);
break;
case "html":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'html', 'default' => $default);
break;
case "custom-css":
return array('label' => $label, 'description' => $description, 'id' => $id, 'type' => 'turn-off-editor', 'default' => $default
);
break;
case "description-block":
return array('label' => $label, 'description' => $description, 'id' => $key . '-' . $id, 'type' => 'description-block', 'default' => $default);
break;
}
}
function lp_ab_testing_get_current_variation_id() {
if (isset($_GET['ab-action']) && is_admin()) {
return $_SESSION['lp_ab_test_open_variation'];
}
if (!isset($_SESSION['lp_ab_test_open_variation']) && !isset($_REQUEST['lp-variation-id'])) {
$current_variation_id = 0;
}
if (isset($_REQUEST['lp-variation-id'])) {
$_SESSION['lp_ab_test_open_variation'] = intval($_REQUEST['lp-variation-id']);
$current_variation_id = intval($_REQUEST['lp-variation-id']);
}
if (isset($_GET['message']) && $_GET['message'] == 1 && isset($_SESSION['lp_ab_test_open_variation'])) {
$current_variation_id = $_SESSION['lp_ab_test_open_variation'];
}
if (isset($_GET['ab-action']) && $_GET['ab-action'] == 'delete-variation') {
$current_variation_id = 0;
$_SESSION['lp_ab_test_open_variation'] = 0;
}
if (!isset($current_variation_id)) $current_variation_id = 0;
return $current_variation_id;
}
function lp_list_feature() {
return null;
}
function lp_global_config() {
do_action('lp_global_config');
}
if (!function_exists('lp_init')) {
function lp_init() {
do_action('lp_init');
}
}
function lp_head() {
do_action('lp_head');
}
function lp_footer() {
do_action('lp_footer');
}