Instantly share code, notes, and snippets.
🍺
IPA Time
WordPress theme designer, WordPress plugin author. Built to order WordPress themes. SaaS WordPress business solutions. Contact me for more information.
-
Benjamin Kaminski Consulting
- Delaware, USA
- https://benkaminski.com
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 | |
$profile_tabs = apply_filters( 'wpsc_user_profile_tabs', array( | |
'purchase_history' => __( 'Purchase History', 'wpsc' ), | |
'edit_profile' => __( 'Your Details', 'wpsc' ), | |
'downloads' => __( 'Your Downloads', 'wpsc' ) | |
)); |
bkaminski
/ collapse-wp-bs2-sidebar10.css
Last active
September 2, 2017 14:49
Collapse WP Sidebar BS2
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
@media (max-width: 767px) { | |
.mobile-menu { | |
display: inherit !important; | |
margin-top:10px !important; | |
font-size:26px !important; | |
font-weight:bold !important; | |
color:#fff !important; | |
text-shadow:2px 2px 4px #000 !important; | |
}} | |
@media screen and (min-width:768px) and (max-width:980px) { |
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="navbar"> | |
<div class="navbar-inner"> | |
<div class="button-killer"> | |
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target="#secondary-nav"> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
<span class="icon-bar"></span> | |
</button> | |
</div> | |
<div class="mobile-menu">Menu</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
<div class="nav-collapse collapse" id="primary-nav"> | |
... | |
</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
<div class="nav-collapse collapse"> | |
... | |
</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
<a class="btn btn-navbar" data-toggle="collapse" data-target="#primary-nav"> | |
... | |
</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
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> | |
... | |
</a> |
bkaminski
/ collapse-wp-bs2-sidebar04.css
Last active
September 2, 2017 14:37
Collapse WP Sidebar BS2
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
#primary-nav { | |
background: none; | |
} | |
#secondary-nav { | |
background: none; | |
} | |
.button-killer { | |
width: auto; | |
height: auto; | |
} |
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 ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> | |
<?php endif; ?> |
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 ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> | |
<?php endif; ?> | |
<!-- | |
<div class="navbar navbar-fixed-top"> | |
<div class="navbar-inner"> |