Skip to content

Instantly share code, notes, and snippets.

@keithmancuso
keithmancuso / gist:3907899
Created October 17, 2012 20:20
Through Control Panel
<script type="text/javascript">var ChannelImages=ChannelImages?ChannelImages:new Object();ChannelImages.Fields=ChannelImages.Fields?ChannelImages.Fields:new Object();ChannelImages.Fields.Field_85={"key":1350501036,"field_name":"field_id_85","field_label":"Images","settings":{"no_sizes":"no","keep_original":"yes","upload_location":"s3","show_stored_images":"no","stored_images_by_author":"no","stored_images_search_type":"entry","show_import_files":"no","jeditable_event":"click","image_limit":"100","hybrid_upload":"yes","progressive_jpeg":"no","wysiwyg_original":"yes","save_data_in_field":"yes","show_image_edit":"no","allow_per_image_action":"no","locked_url_fieldtype":"no","disable_cover":"no","action_groups":{"1":{"group_name":"small_square","wysiwyg":"yes","actions":{"resize_adaptive":{"width":"160","height":"160","quality":"100","upsizing":"no"}},"final_size":{"width":"160","height":"160","quality":"100","upsizing":"no"},"editable":"no"},"2":{"group_name":"small","wysiwyg":"yes","actions":{"resize":{"width":
@keithmancuso
keithmancuso / gist:3907904
Created October 17, 2012 20:20
Safecracker
<script type="text/javascript">var ChannelImages=ChannelImages?ChannelImages:new Object();ChannelImages.Fields=ChannelImages.Fields?ChannelImages.Fields:new Object();ChannelImages.Fields.Field_85={"key":1350503412,"field_name":"member_images","field_label":"Images","settings":{"no_sizes":"no","keep_original":"yes","upload_location":"s3","show_stored_images":"no","stored_images_by_author":"no","stored_images_search_type":"entry","show_import_files":"no","jeditable_event":"click","image_limit":"100","hybrid_upload":"yes","progressive_jpeg":"no","wysiwyg_original":"yes","save_data_in_field":"yes","show_image_edit":"no","allow_per_image_action":"no","locked_url_fieldtype":"no","disable_cover":"no","action_groups":{"1":{"group_name":"small_square","wysiwyg":"yes","actions":{"resize_adaptive":{"width":"160","height":"160","quality":"100","upsizing":"no"}},"final_size":{"width":"160","height":"160","quality":"100","upsizing":"no"},"editable":"no"},"2":{"group_name":"small","wysiwyg":"yes","actions":{"resize":{"width
this is code
@keithmancuso
keithmancuso / gist:6982300
Last active December 25, 2015 13:19
Craft Multiple site Config
return array(
'devMode' => false,
'environmentVariables' => array(
'siteUrl' => 'http://economicexperts.eu/'
),
'.dev' => array(
@keithmancuso
keithmancuso / 0_reuse_code.js
Created December 18, 2013 20:28
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@keithmancuso
keithmancuso / gist:8363408
Last active January 10, 2018 11:00
Split list in half twig
{% set half = ceil(entry.kickstarter|length/2) %}
{% set leftHalf = entry.kickstarter|slice(0,half) %}
{% set rightHalf = entry.kickstarter|slice(half) %}
<div class="row">
<div class="col-sm-6">
{% for block in leftHalf %}
<div class="row">
@keithmancuso
keithmancuso / gist:9065506
Last active August 29, 2015 13:56
Options for CraftCMS Menus
{#
normal craft structure menu
-------------
works well in enough most of the time but limited in that it combines the content sturctures with the menu structures into a single section, making more complex navigations more complicated.
#}
{% set pages = craft.entries.section('pages') %}
@keithmancuso
keithmancuso / gist:9948037
Created April 3, 2014 03:53
Entrys as Json
{% set workshops = craft.entries.section('workshops').find() %}
{% spaceless %}
{{ workshops|json_encode }}
{% endspaceless %}
@keithmancuso
keithmancuso / Add a job form
Created May 18, 2014 20:22
Add a job form
<form method="post" action="" accept-charset="UTF-8">
<input type="hidden" name="action" value="entries/saveEntry">
<input type="hidden" name="redirect" value="account/jobs?added={id}">
<input type="hidden" name="sectionId" value="9">
<input type="hidden" name="enabled" value="0">
<div class="form-group">
<label for="title">Job Title</label>
<input id="title" type="text" class="form-control" name="title">
</div>
@keithmancuso
keithmancuso / gist:17619fc405a621b4a11e
Last active July 28, 2020 01:03
Craft Ajax Paging
{% if craft.request.isAjax %}
{% set layout = "_ajaxLayout" %}
{% else %}
{% set layout = "_layout" %}
{% endif %}
{% extends layout %}
{% set limit = 10 %}
{% set params = { section: 'news', limit: limit} %}