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
.bottom_nav_wrap .large-9 { | |
padding-top: 5em; | |
} |
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
.bottom_nav_wrap { | |
padding: 2em 0; | |
} |
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
/** | |
* Filters wp_title to print a neat <title> tag based on what is being viewed. | |
* | |
* @param string $title Default title text for current view. | |
* @param string $sep Optional separator. | |
* @return string The filtered title. | |
*/ | |
function rescue_wp_title( $title, $sep ) { | |
if ( is_feed() ) { | |
return $title; |
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
.single-tribe_events #tribe-events-content div.cart, .single-tribe_events #tribe-events-content form.cart { | |
background: #272727; | |
border: 1px solid #eee; | |
clear: both; | |
margin: 30px 0; | |
padding: 0 4% 3%; | |
} |
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
.tribe_events .woocommerce button.button.alt, .tribe_events .woocommerce input.button.alt { | |
background-color: #efefef; | |
} |
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 if ( is_category() || is_archive() ) { | |
the_excerpt(); | |
} else { | |
the_content( __( 'Continue Reading', 'rescue' ) ); | |
} ?> |
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 the_content( __( 'Continue Reading', 'rescue' ) ); ?> |
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
[rescue_button color="blue" url="http://rescuethemes.com" title="Visit Site" target="blank" class="right" border_radius=""]Sample Content[/rescue_button] | |
[rescue_clear_floats] | |
[rescue_googlemap title="Rescue Themes Offices" location="5046 S Greenwood Ave, Chicago, IL 60615" zoom="14" height=250] |
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
$events_query = tribe_get_events( | |
array( | |
'eventDisplay' => 'upcoming', | |
'posts_per_page'=> 3, | |
'tax_query' => array( | |
array( | |
'taxonomy' => 'tribe_events_cat', | |
'field' => 'slug', | |
'terms' => 'your-category-here' | |
) |
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 load_custom_event_admin_style() { | |
wp_enqueue_style( 'custom_wp_admin_css', get_stylesheet_directory_uri() . '/admin-events.css', false, '1.0.0' ); | |
} | |
add_action( 'admin_enqueue_scripts', 'load_custom_event_admin_style' ); |