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 content( $num, $no_more = false ) { | |
global $post; | |
$options = get_option( 'second-touch' ); | |
if ( $options['read_more_style'] == '0' ) { | |
$read_more_link = '<a href="' . get_permalink( $post->ID ) . '" class="link-read-more"> </a>'; | |
} else { | |
$read_more_link = '<a href="' . get_permalink( $post->ID ) . '"> ' . __( 'Read more', 'crum' ) . '</a>'; | |
} |
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
add_action('init','crum_remove_standard_logo'); | |
function crum_remove_standard_logo(){ | |
remove_action( 'reactor_header_inside', 'reactor_do_title_logo', 1 ); | |
} | |
function reactor_do_title_custom_logo() { | |
echo '<div class="logo large-2 medium-2 small-12 columns">'; | |
reactor_do_custom_logo(false); |
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="contacts-widget"> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> | |
<p class="adr"> | |
<span class="street-address">Company LTD Street nr 100, 4536534</span>, | |
<span class="locality"> Chicago</span>, | |
</p> | |
<p class="phone">(212) 555 55 00 or (212) 555 55 00</p> | |
<p class="mail">E-Mail: <a class="email" href="mailto:[email protected]">[email protected]</a></p> | |
<p class="twitter">Twitter: <a class="fn org url" href="somewebadress.com">somewebadress.com</a></p> |
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
<script type="text/javascript"> | |
jQuery('.soc-icons a').click(function() { | |
jQuery(this).attr('target', '_blank'); | |
}); | |
</script> |
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="row service-box"> | |
<div class="twelve columns"> | |
<div class="service-icon"> | |
<img src="http://www.wydajksiazke.com.pl/wp-content/uploads/[email protected]" alt="Wspieramy"> | |
</div> |
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
<script> | |
jQuery('a[href*=#]:not([href=#])').click(function() { | |
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') || location.hostname == this.hostname) { | |
var target = jQuery(this.hash); | |
target = target.length ? target : jQuery('[name=' + this.hash.slice(1) +']'); | |
if (target.length) { | |
var top_offset = '100'; | |
jQuery('html,body').animate({ | |
scrollTop: target.offset().top - top_offset |
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
.menu-primary-navigation ul li { | |
position: static !important; | |
} | |
.menu-primary-navigation a { | |
position: relative !important;} | |
.menu-primary-navigation ul.dropdown li ul.dropdown { | |
top: 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
/** | |
* Custom shortcode on all pages | |
* in header.php | |
* | |
* @since 1.0.0 | |
*/ | |
function shortcode_after_header () | |
{ |
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
/** | |
* Stunning header | |
* in header.php | |
* | |
* @since 1.0.0 | |
*/ | |
function frontpage_st_header () | |
{ | |
if (is_page_template('page-templates/fullwidth-page.php') ): |
NewerOlder