This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="col span_12 first"> | |
[select menu-439 "Tell me more about this property" "Request a showing"] | |
</div> | |
<div class="col span_12 first"> | |
[text* your-name placeholder "Your Name"] | |
</div> | |
<div class="col span_12 first"> | |
[email* your-email placeholder "Email"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*-----------------------------------------------------------------------------------*/ | |
/* Admin CSS */ | |
/*-----------------------------------------------------------------------------------*/ | |
if(!function_exists('ct_admin_css')) { | |
function ct_admin_css() { | |
echo '<style>'; | |
echo 'tr[data-slug="slider-revolution"] + .plugin-update-tr, .vc_license-activation-notice, .rs-update-notice-wrap, tr.plugin-update-tr.active#js_composer-update { display: none !important;}'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function custom_admin_css() { | |
echo '<style>'; | |
echo 'td.status a.for-sale { background: #34495e;}'; | |
echo '</style>'; | |
} | |
add_action('admin_head', 'custom_admin_css'); | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* Curry currency conversion jQuery Plugin v0.8.1 | |
* https://bitbucket.org/netyou/curry-currency-ddm | |
* | |
* Copyright 2015, NetYou | |
* Dual licensed under the MIT or GPL Version 2 licenses. | |
* http://www.opensource.org/licenses/mit-license.php | |
* http://www.opensource.org/licenses/GPL-2.0 | |
*/ | |
(function($) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*-----------------------------------------------------------------------------------*/ | |
/* Property Type Icon */ | |
/*-----------------------------------------------------------------------------------*/ | |
function ct_property_type_icon() { | |
global $post; | |
if(ct_has_type('commercial')) { | |
// Changed to solid building icon instead of outline | |
echo '<span class="prop-type-icon"><i class="fa fa-building"></i></span>'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ct_dequeue_styles_scripts() { | |
wp_dequeue_script( 'tooltipMenu' ); // Remove theme default navigation JS | |
wp_dequeue_style('dropdowns'); // Remove theme default navigation CSS | |
} | |
add_action( 'wp_print_scripts', 'ct_dequeue_styles_scripts', 100 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Latest Posts | |
* | |
* @package WP Pro Real Estate 7 | |
* @subpackage Widget | |
*/ | |
class ct_Latest extends WP_Widget { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** A simple text block **/ | |
if(!class_exists('AQ_Portfolio_Block')) { | |
class AQ_Portfolio_Block extends AQ_Block { | |
//set and create block | |
function __construct() { | |
$block_options = array( | |
'name' => 'Portfolio', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Advanced Search Template | |
* | |
* @package WP Pro Real Estate 7 | |
* @subpackage Template | |
*/ | |
global $ct_options; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Testimonials | |
* | |
* @package WP Pro Real Estate 7 | |
* @subpackage Include | |
*/ | |
global $ct_options; |