Skip to content

Instantly share code, notes, and snippets.

View bkaminski's full-sized avatar
🍺
IPA Time

Ben Kaminski bkaminski

🍺
IPA Time
View GitHub Profile
@bkaminski
bkaminski / pgspecific01.php
Created September 2, 2017 15:42
WP Comments Page Specific
<?php comments_template( '', true ); ?>
@bkaminski
bkaminski / bs2tooltip05.html
Created September 2, 2017 15:38
BS2tooltip
<a href="#" data-toggle="tooltip" title="Web Solutions Services">WSS</a>
@bkaminski
bkaminski / bs2tooltip04.html
Created September 2, 2017 15:37
BS2tooltip
<script type="text/javascript">
$(function () {
$("[data-toggle='tooltip']").tooltip();
});
</script>
@bkaminski
bkaminski / bs2tooltip03.html
Created September 2, 2017 15:34
BS2tooltip
<a href="#" data-toggle="tooltip" title="first tooltip">hover over me</a>
@bkaminski
bkaminski / bs2tooltip01.html
Created September 2, 2017 15:32
BS2tooltip
<a href="#" rel="tooltip" title="Hover text here">linked text here</a>
@bkaminski
bkaminski / bs2tooltip01.html
Created September 2, 2017 15:30
BS2tooltip
<script type="text/javascript">
$(function () {
$("[rel='tooltip']").tooltip();
});
</script>
@bkaminski
bkaminski / csshtmlvid03.html
Created September 2, 2017 15:09
CSS3HTML5Video
<div class="header-unit">
<div id="video-container">
<video autoplay loop class="fillWidth">
<source src="http://yourwebsite.com/your-video-file.mp4" type="video/mp4"/>
<source src="http://yourwebsite.com/your-video-file.ogg" type="video/ogg"/>
<source src="http://yourwebsite.com/your-video-file.webm" type="video/webm"/>
Your browser does not support the video tag. I suggest you upgrade your browser.
</video>
</div><!-- end video-container -->
</div><!-- end .header-unit -->
@bkaminski
bkaminski / csshtmlvid02.css
Last active September 2, 2017 15:04
CSS3HTML5Video
.header-unit {
height: 150px;
border: 2px solid #000;
border-right:none;
border-left: none;
position: relative;
padding: 20px;
}
#video-container {
position: absolute;
@bkaminski
bkaminski / csshtmlvid01.html
Created September 2, 2017 15:01
CSS3HTML5Video
<div>
...
</div>
@bkaminski
bkaminski / remove-dlwpec02.php
Last active September 2, 2017 14:56
Remove Your Downloads WPEC
<?php
$profile_tabs = apply_filters( 'wpsc_user_profile_tabs', array(
'purchase_history' => __( 'Purchase History', 'wpsc' ),
'edit_profile' => __( 'Your Details', 'wpsc' ),
//'downloads' => __( 'Your Downloads', 'wpsc' ),
));