Skip to content

Instantly share code, notes, and snippets.

@robhob
robhob / functions.php
Created January 11, 2017 11:19
TGM Plugin Activation Step 1
/* TGM Plugin activation */
require_once get_stylesheet_directory() . '/inc/tgm_pa.php';
@robhob
robhob / h1.css
Created January 10, 2017 12:05
Adding Google Fonts to a Divi Website
h1 {
font-family: 'Fjalla One', sans-serif;
}
@robhob
robhob / tiledbackground.css
Last active January 10, 2017 12:03
Tile the background of a Divi Section
background-repeat: repeat;
background-size: initial;
background-image:url(http://yoursite.com/wp-content/uploads/thetile.png);
@robhob
robhob / newtab.js
Last active January 10, 2017 11:58
Open the Divi Fullwidth Header module’s first button (Button #1) in a new tab.
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery(".et_pb_more_button.et_pb_button.et_pb_button_one").attr('target', '_blank');});
</script>