Enough people loved this gist, so it's now a Github repository!
⭐ Please use the "The Events Calendar Reset" on Github going forward. ⭐
Enough people loved this gist, so it's now a Github repository!
⭐ Please use the "The Events Calendar Reset" on Github going forward. ⭐
.block-container > *, /* [1] */ | |
.wp-block-group__inner-container > * { /* [2] */ | |
max-width: 46.25rem; | |
margin-left: 1.25rem; | |
margin-right: 1.25rem; | |
@media (min-width: 48.75em) { /* [3] */ | |
margin-left: auto; | |
margin-right: auto; | |
} |
// we load the other CSS styles into the block editor and then override some of them here | |
// at present, the color overlay is not knocked out in the block editor | |
.is-style-knockout-text { | |
.wp-block-cover__inner-container { | |
z-index: 1; | |
} | |
.wp-block > * { | |
font-size: 160px !important; | |
font-weight: 900 !important; | |
color: transparent !important; |
<?php | |
add_filter( 'woocommerce_product_is_visible', 'prefix_show_hidden_product_crosssells', 10, 2 ); | |
function prefix_show_hidden_product_crosssells( $is_visible, $id ) { | |
if( is_cart() ) { | |
$is_visible = true; | |
} | |
return $is_visible; | |
} |
<div id="session-1" class="session session-1 track-1" style="grid-column: track-1; grid-row: time-0800 / time-0900;"> | |
<h3 class="session_title">Talk Title</h3> | |
<span class="session_time"> | |
<span class="session_time_start">8:00</span> | |
<span class="session_time_sep"> - </span> | |
<span class="session_time_end">9:00</span> | |
</span> | |
<span class="session_track">Track: 1</span> | |
<span class="session_author"><span class="session_author_gravatar"><img src="..."></span>Mike Rofone</span> | |
</div> |
<?php | |
/* | |
Plugin Name: Clear Aligned Content Shortcode | |
Description: A way to ensure floated images in page content don't wrap. Use [clear] in editor to push following content below any aligned images. | |
Author: Mark Root-Wiley | |
Version: 1.0 | |
Author URI: https://MRWweb.com | |
Plugin URI: https://gist.githubusercontent.com/mrwweb/f627f3fe407a64293f6a99d701526b94/raw/c0e23d2f5b0252332e4f7c549a2990b4c944cfe1/mrw-clear-shortcode.php | |
USAGE: |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='utf-8' /> | |
<title></title> | |
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.0/mapbox-gl.js'></script> | |
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.0/mapbox-gl.css' rel='stylesheet' /> | |
<style> | |
body { margin:0; padding:0; } |
<?php | |
/* | |
Plugin Name: Truncate Feature a Page Widget Excerpt | |
Description: Limits excerpt to 30 words. Ends cut-off excerpts with "..." | |
Version: 1.0 | |
Author: Mark Root-Wiley | |
Author URI: https://mrwweb.com | |
*/ | |
add_filter( 'fpw_excerpt', 'wp8887975_trim_fpw_excerpt' ); | |
function wp8887975_trim_fpw_excerpt( $excerpt ) { |
<img src="/your-image.jpg" alt="The alt text describing that image" /> |