Skip to content

Instantly share code, notes, and snippets.

{% for post in site.posts limit:1 %}
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.content | strip_html | truncatehtml | truncatewords: 40 }}
{% endfor %}
{% for post in site.posts offset:1 limit:4 %}
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
{% comment %}{% for option in product.options %}
{% if option == 'Weight' %}
{% assign index = forloop.index0 %}
{% for variant in product.variants %}
{{ variant.options[index] }}
{% endfor %}
{% endif %}
{% endfor %}{% endcomment %}
@keithgreer
keithgreer / shopify-homepage-settings.json
Last active December 23, 2021 10:25
First we grab and display the variables from the Settings section of the JSON - https://keithgreer.dev/setting-up-a-multipurpose-cmsed-liquid-homepage-section-for-shopify
{
"name": "Video & Testimonial",
"max_blocks": 5,
"settings": [
{
"id": "video_title",
"type": "text",
"label": "Heading",
"default": "Learn 'How to' with our video"
},
<div class="medium-6 columns">
<div class="content-wrap">
<h3><span class="subheading">Learn 'How to' with our</span>{{ section.settings.video_title }}</h3>
<p>{{ section.settings.video_sub }}</p>
<a data-fancybox href="https://www.youtube.com/watch?v={{ section.settings.video_code }}" class="button">View Video</a>
</div>
</div>
<div class="medium-6 columns">
<a data-fancybox class="image-wrap" href="https://www.youtube.com/watch?v={{ section.settings.video_code }}">
<img class="play-button" src="//cdn.shopify.com/s/files/1/2602/4064/t/2/assets/play-button.png">
<section class="testimonial1 angle-bigarrow">
<div class="row">
<div class="small-12 column">
<ul class="grid-1 wow fadeInUp">
{% for block in section.blocks %}
<li {{ block.shopify_attributes }}>
<div class="testimonial-inner">
<img src="{{ block.settings.image | img_url: '150x150' }}" alt="slider" />
<h5>{{ block.settings.testimonial_author }}</h5>
<p>{{ block.settings.testimonial_desc }}</p>
@keithgreer
keithgreer / batch-sku-update.php
Last active December 23, 2021 10:24
Magento 1: Batch importer for Magento Product SKUs - https://keithgreer.dev/batch-importer-for-magento-product-skus
<?php
ini_set('error_reporting', E_ALL);
// Location of Mage.php relative to current script
include_once 'app/Mage.php';
Mage::app();
// Location of CSV relative to file system root
$updates_file="/magento/var/import/sku2sku.csv";
@keithgreer
keithgreer / import-values.php
Last active December 23, 2021 10:24
M1: Import Values to Dropdown/Multiple Select Attributes - https://keithgreer.dev/import-values-to-dropdownmultiple-select-attributes
<?php
require_once '../app/Mage.php';
umask(); Mage::app('default');
$_manufacturers = file('import.txt');
$_attribute = Mage::getModel('eav/entity_attribute')->loadByCode('catalog_product','manufacturer');
$manufacturers = array('value'=> array(),'order'=> array(),'delete'=> array());
$i = 0;
@keithgreer
keithgreer / deploy.php
Last active December 23, 2021 10:24 — forked from nichtich/README.md
How to automatically deploy from GitHub - https://keithgreer.dev/git-automatically-deploy-website-github
<?php
// Forked from https://gist.github.com/1809044
// Available from https://keithgreer.uk/git-automatically-deploy-website-github
// Check if client is allowed
$allowed_ips = array(
'207.97.227.', '50.57.128.', '108.171.174.', '50.57.231.', '204.232.175.', '192.30.252.', // GitHub
'123.123.123.123' // Your own IP address
);
.eucookie-pop-up { display:none; position:fixed; z-index:9999; bottom:0; left:0; right:0; background:#dc143c; color:#fff; margin:1em; padding:0.5em; text-align:center; }
.eucookie-pop-up .dismiss { float:right; width:7% text-align:center; padding-top:1em; }
.eucookie-pop-up .dismiss a { color:#fff; cursor:pointer; font-weight:bold; font-size:150%; padding:1em; }
.eucookie-pop-up .content { float:left; width:92%; text-align:center; }
.eucookie-pop-up .content a { text-decoration: underline;color:#fff }
@keithgreer
keithgreer / functions.php
Last active December 23, 2021 10:24
WordPress: Rename "Posts" to something else in Admin - https://keithgreer.dev/rename-wordpress-posts-admin
<?php
// Rename posts in the admin menu
function update_post_label() {
global $menu;
global $submenu;
$submenu['edit.php'][5][0] = 'Story';
$submenu['edit.php'][10][0] = 'Add Story';
$submenu['edit.php'][16][0] = 'Story Tags';
$menu[5][0] = 'Stories';