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 / wp-pass-reset.php
Last active March 22, 2018 16:49 — forked from ivandoric/gist:e4e46294c4d35eac0ec8
wordpress: create custom reset password page
// With some Bootstrap 4 love. Of course, create a custom template for this.
<?php
/* do template stuff */
get_header(); ?>
<div class="card-body">
<?php
global $wpdb;
@bkaminski
bkaminski / bootstrap-carousel-v4.php
Last active January 17, 2019 09:08
WordPress Loop Inside Bootstrap 4.0.0 Carousel -- No Inline Styles
@bkaminski
bkaminski / contactform7-form.php
Last active February 20, 2018 16:22 — forked from iMazed/contactform7-form.php
Great for when you want to use FontAwesome in a submit button in Contact Form 7 (Revision)
//add instead of [submit] in Contact Form 7 (With Bootstrap 4 added)
<button type="submit" class="btn btn-lg btn-info btn-rounded">Send Message<i class="far fa-paper-plane fa-fw ml-3"></i></button>
// i class rather than <img src=""> with inline styles.
<i class="fas fa-spinner ajax-loader fa-pulse fa-4x"></i>