Skip to content

Instantly share code, notes, and snippets.

@dotMastaz
dotMastaz / .htaccess
Created November 22, 2013 15:18
WordPress 406 Error Fix
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
//WP, Admin Bar, Disable
add_filter('show_admin_bar', '__return_false');
@dotMastaz
dotMastaz / dom-routing.js
Created May 7, 2014 22:19
DOM-Based Routing
/* ========================================================================
* DOM-based Routing
* Based on http://goo.gl/EUTi53 by Paul Irish
*
* Only fires on body classes that match. If a body class contains a dash,
* replace the dash with an underscore when adding it to the object below.
*
* .noConflict()
* The routing is enclosed within an anonymous function so that you can
/* example 1 */
/* In controller */
global $cookie;
global $smarty;
$cms = new CMS(1, intval($cookie->id_lang));
if (Validate::isLoadedObject($cms))
$smarty->assign('content', $cms->content);
/* In .tpl */
@dotMastaz
dotMastaz / jQuery Find Text and Replace.js
Created February 17, 2015 07:48
jQuery Find Text and Replace
//Find Text and Replace
$("selector").text(function () {
return $(this).text().replace("search", "replace");
})
@dotMastaz
dotMastaz / wp_post_title_require
Created May 5, 2015 13:40
WordPress Post Title Require
function post_title_require($title='') {
if ( '' == $title )
die('Post Title Require');
return $title;
}
add_filter('title_save_pre', 'post_title_require', 0);
@dotMastaz
dotMastaz / dabblet.css
Created November 10, 2016 09:09 — forked from chriscoyier/dabblet.css
Checkbox Hack
/* Checkbox Hack */
input[type=checkbox] {
position: absolute;
top: -9999px;
left: -9999px;
}
label {
-webkit-appearance: push-button;
-moz-appearance: button;
@dotMastaz
dotMastaz / CSS
Created November 10, 2016 09:26
Image Carousel for Email
<style>
input{
display: none;
}
@media screen and (max-width:9999px){
.cboxcheck:checked + * .thumb-carousel,
* [summary=cboxcheck]:checked + * [summary^=thumb-carousel] {
height: auto !important;
max-height: none !important;
line-height:0;
@dotMastaz
dotMastaz / CSS to HEAD TAG
Created November 10, 2016 09:30
Rollover Image for Email
<style>
.rollover:hover > img,
* [summary=rollover]:hover > img { max-height: 0px !important; }
.rollover:hover > div img,
* [summary=rollover]:hover > div img{ max-height: none !important; }
</style>
@dotMastaz
dotMastaz / Adding Support for Gmail
Created November 10, 2016 09:35
Responsive Rollover Images for Email
<!DOCTYPE>
<html>
<head>
<style>
.rollover:hover > img,
* [summary=rollover]:hover > img{
max-height: 0px !important;
}
.rollover:hover > div img,
* [summary=rollover]:hover > div img{