View remove_Open_Sans_from_Wordpress.php
This file contains 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
function remove_open_sans() { | |
wp_deregister_style( 'open-sans' ); | |
wp_register_style( 'open-sans', false ); | |
} | |
add_action( 'wp_print_styles', 'remove_open_sans' ); |
View div-extended.php
This file contains 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 | |
/** | |
* Divi modifications to the new Divi PageBuilder | |
*/ | |
function my_cutom_et_modules() { | |
if( class_exists("ET_Builder_Module") ){ | |
class ET_Builder_Module_Image_2 extends ET_Builder_Module { | |
View adwords_ajax_form_success.js
This file contains 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
<!-- Google Code for Contact Page Conversion Page --> | |
<script type="text/javascript"> | |
/* <![CDATA[ */ | |
var google_conversion_id = XXXXXXXXXXXX; | |
var google_conversion_language = "en"; | |
var google_conversion_format = "3"; | |
var google_conversion_color = "ffffff"; | |
var google_conversion_label = " XXXXXXXXXXXX"; | |
var google_conversion_value = 0; | |
/* ]]> */ |
View pdfcachebust.js
This file contains 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
<script type="text/javascript"> | |
jQuery(document).ready(function($){ | |
// All pdf documents will have a cache busting | |
// string added to its url | |
$("a[href $='.pdf']").click(function(){ | |
var now = new Date().getTime(); | |
View queryBrowser.js
This file contains 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
<script type="text/javascript"> | |
<!--//--><![CDATA[//><!-- | |
jQuery(document).ready(function($){ | |
queryBrowser( "#idOfTextareaElement" ); | |
function queryBrowser(element) | |
{ | |
var target = $(element); | |
if( target.length > 0 ) |
View assetmanage
This file contains 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
<files *.js.gz> | |
ForceType text/javascript | |
Header set Content-Encoding: gzip | |
</files> | |
RewriteEngine On | |
RewriteCond %{HTTP_USER_AGENT} !".*Safari.*" | |
RewriteCond %{HTTP_USER_AGENT} !".*MSIE.*" | |
RewriteCond %{HTTP:Accept-Encoding} gzip |
View Taco-v5.php
This file contains 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 | |
/** | |
* ---------------------------------------------------------------------------- | |
* | |
* The Software shall be used for Good, not Evil... bad eval | |
* | |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |