Skip to content

Instantly share code, notes, and snippets.

View UbaldoRosas's full-sized avatar
🛍️
Focusing on Shopify Development

Balo UbaldoRosas

🛍️
Focusing on Shopify Development
View GitHub Profile
@UbaldoRosas
UbaldoRosas / boost-pfs-instant-search.js
Created November 9, 2021 23:01
Add conditionals for Products, Collections or Pages at search suggestions
var instantSearchTemplate = InstantSearchResultBlock.prototype.getTemplate;
InstantSearchResultBlock.prototype.getTemplate = function(tempType) {
if (['products', 'collections'].indexOf(tempType) === -1) return instantSearchTemplate.call(this, tempType);
return '<li class="{{class.searchSuggestionGroup}} ' + tempType + '" data-group="{{type}}" aria-label="{{label}}">' +
'<ul class="default">' +
'<li class="{{class.searchSuggestionHeader}}-{{type}} {{class.searchSuggestionHeader}}" aria-label="{{label}}">{{label}}</li>' +
'{{resultItems}}' +
'</ul>' +
@UbaldoRosas
UbaldoRosas / my-snippets.json
Created September 12, 2021 23:32
My VSCode snippets for CSS and Liquid
{
"Responsive Font Post CSS": {
"scope": "css, scss, postcss",
"prefix" : ["responsive-font"],
"body": ["font-size: responsive ${1:min}px ${2:max}px;\nfont-range: 320px 1024px;"],
"description": "Responsive font Post CSS"
},
"Media Query Max Width": {
"scope": "css, scss, postcss",
"prefix" : ["media-max-width"],
@UbaldoRosas
UbaldoRosas / order-confirmation-line-items.liquid
Last active May 4, 2021 21:25
Shopify - Order Confirmation: add line items
{% for p in line.properties %}{% unless p.last == blank %} - {{ p.first }}: {{ p.last }}{% endunless %}<br>{% endfor %}
@UbaldoRosas
UbaldoRosas / webpack.config.js
Created March 22, 2021 19:29
Getmore Workflow: single entry configuration for CSS & JS
module.exports = {
mode: 'development',
entry: {
js: path.resolve('zrc/main.js'),
"css-base": path.resolve('zrc/styles/_bundles/base.css'),
},
stats: 'minimal',
watchOptions: {
ignored: /node_modules/,
},
@UbaldoRosas
UbaldoRosas / klaviyo-newsletter.css
Last active June 23, 2020 17:36
Klaviyo newsletter & pop-up fix
/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 6 version
*/
.klaviyo-newsletter {
max-width: 205px;
}
{% capture email_title %}Gracias por tu compra! {% endcapture %}
{% capture email_body %}
{% if requires_shipping %}
Hola {{ customer.first_name }}, vamos a preparar tu pedido de acuerdo a tus especificaciones. Deberás recibir tus anteojos en un lapso no mayor a 10 días hábiles. Por este medio, te notificaremos el servicio de paquetería que utilizaremos y el número de rastreo..
{% endif %}
{% endcapture %}
<!DOCTYPE html>
<html lang="en">
<head>
@UbaldoRosas
UbaldoRosas / JS get today date.js
Last active February 20, 2020 15:57
JS Script to get today date
function today() {
var todaysDate = new Date(); // Gets today's date
var year = todaysDate.getFullYear(); // YYYY
var month = ("0" + (todaysDate.getMonth() + 1)).slice(-2); // MM
var day = ("0" + todaysDate.getDate()).slice(-2); // DD
var today = (year +"-"+ month +"-"+ day); // Results in "YYYY-MM-DD" for today's date
return today;
@UbaldoRosas
UbaldoRosas / random-number-animator.js
Created November 19, 2019 17:36
Random number animator
(function($){
$.fn.extend({
numAnim: function(options) {
if ( ! this.length)
return false;
this.defaults = {
endAt: 2560,
numClass: 'autogen-num',
duration: 5, // seconds
@UbaldoRosas
UbaldoRosas / jquery_validation_extension_method.js
Created November 6, 2019 15:42
Jquery Validation Plugin - Extension custom method
jQuery.validator.addMethod("extension", function (value, element, param) {
param = typeof param === "string" ? param.replace(/,/g, '|') : "png|jpe?g|gif";
return this.optional(element) || value.match(new RegExp(".(" + param + ")$", "i"));
}, "Please enter a value with a valid extension.")
@UbaldoRosas
UbaldoRosas / codeigniter_rename_file_while_upload.php
Last active November 6, 2019 15:42
Codeigniter - Rename file while upload
<?php
/*
Author: Mukesh Jakhar
Description: Rename file while uploading in codeigniter (Controller)
*/
defined('BASEPATH') OR exit('No direct script access allowed');
class Image extends CI_Controller {
function __construct() {
parent::__construct();
}