Skip to content

Instantly share code, notes, and snippets.

View croxton's full-sized avatar
💭
Up to my elbows, as usual

Mark Croxton croxton

💭
Up to my elbows, as usual
View GitHub Profile
@croxton
croxton / gist:7773beb5fe44d9f9a66a
Last active April 8, 2018 02:24
Previews with Resource Router

###Secure previews of draft entries with Resource Router

  1. Make a copy of index.php and call it preview.php. Add any custom config values in preview.php that you might like when previewing entries, such as disabling caching.

  2. Create a rule for Resource Router that looks something like this:

    $config['resource_router'] = array(
    
    	// match any url
@croxton
croxton / cloudinary_reponsive_background_cover_img
Last active November 1, 2019 10:36
Responsive background cover images with Cloudinary & jQuery, fetched on the fly
HTML:
<header id="js-cover" class="cover">
<!-- Optionally specify image width stoppoints to reduce the maximum possible no of transforms per image -->
<!-- The appropriate image resolution will automatically be loaded -->
<img
data-stoppoints="480,768,1200"
data-src="http://res.cloudinary.com/<your account name>/image/fetch/w_auto,dpr_auto/http://<your full img url>"
class="cld-responsive cover-img" id="js-cover-img">
@croxton
croxton / .htacess
Last active April 8, 2018 02:24
htacess static caching with Stash / Mustash + Apache web performance
# ######################################################################
# # REWRITE RULES #
# ######################################################################
<IfModule mod_rewrite.c>
RewriteEngine On
#################################################################################
# Redirect to canonical domain
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
if( ! defined('PATH_THIRD')) { define('PATH_THIRD', APPPATH . 'third_party'); };
/**
* Zenbu Transcribe support extension
* =========================================
* Enables display of Transcribe language for the entry in Zenbu
* @version 1.0.0
* @author Koen Veestraeten (@StudioKong)
* Based on the examples Zenbu MX Cloner and Zenbu Tag Formatting provided by Nicolas Bottari
* Zenbu MX Cloner: https://github.com/nicolasbottari/zenbu_mx_cloner.zenbu_addon.ee2_addon
protected $hooks = array(
'@all' => array(
'member_id',
'screen_name',
'username',
'group_id',
'group_title'
),
@croxton
croxton / calendar.html
Last active April 8, 2018 02:23
Solspace Calendar availability
{!--
These vars are used as a workaround for a bug in Solspace Calendar that causes
whitespace around if/else conditionals inside {events}...{/events} to be removed.
--}
{exp:stash:first_day_ph}first_day first_day{/exp:stash:first_day_ph}
{exp:stash:last_day_ph}last_day last_day{/exp:stash:last_day_ph}
{exp:stash:open}open {/exp:stash:open}
{exp:stash:Provisional}provisional {/exp:stash:Provisional}
{!-- Availability calendar --}
<?php
/**
* Routes
*
* Defines rules for routing requests to templates
*
*/
$env_config['resource_router'] = array(
/* ---------------------------------------------------------
@croxton
croxton / gist:a5f953dc5da3bfee9a8e
Last active April 8, 2018 02:23
Wrapper with block

/stash_templates/layouts/page.html (wrapper)

<!doctype html>
<html>
<head>
    {snippet:html-head}
</head>
<body>
    <div class="body-container">
@croxton
croxton / gist:3d4f217a9de3041fcf81
Last active April 8, 2018 02:23
Wires + resistor simple example
{!-- set a list of expertise --}
{exp:stash:set_list name="global:expertise" parse_tags="yes" save="yes" scope="site" replace="no" refresh="0"}	
	{exp:channel:entries
		channel="services|sectors"
		disable="member_data|pagination|categories|custom_fields"
		dynamic="no"
	}
		{stash:title}{title}{/stash:title}
		{stash:id}{entry_id}{/stash:id}

{stash:url_title}{url_title}{/stash:url_title}

@croxton
croxton / ee_multilanguage_with_resource_router.md
Last active April 5, 2022 19:11
Using Resource Router for roll-your-own multi-language ExpressionEngine sites

Multi-language routing with Resource Router

The idea is to set up ISO 639-1 language code prefixes for urls (e.g. en/, de/, fr/), and set global variables {global:lang} and {global:lang_dir} for use in your templates.

In the control panel create a category group "languages" and populate it with your languages, setting the category url title to the appropriate 2-letter language code. Assign the category group to the channels you want to translate.

For example:

Category Name Category URL Title