Skip to content

Instantly share code, notes, and snippets.

How I work

I mostly work from home, cafeterias or hotels. It all depends on which point of the world you find me that day.

When I work

My working hours are from 9am till 6pm Monday to Friday.

What I do

I'm a Web Engineer but first of all a good partner, so if you have any question I'll be more than happy to help, just send me a DM in Slack.

Communication

@maugelves
maugelves / responsive-grid.css
Last active October 7, 2020 09:43
Responsive Gird for elements in a grid.
.containter { // Change this selector with your specific container.
display: grid;
grid-template-columns: repeat( auto-fit, minmax( 150px, 1fr ) ); // Change the width to suite your design.
}
@maugelves
maugelves / wp-media-regenerate-batch.sh
Last active December 17, 2021 09:54
Shell process for WordPress media regeneration in batches
# ============================================================
# Shell process to regenerate WordPress thumbnails in batches
# Author: Mauricio Gelves <mg@maugelves.com>
# Twitter: @maugelves
# Website: maugelves.com
# Version: 0.1
# Syntax: wp-media-regenerate-batch.sh <options>
#
# Options: -u Database username.
# -d Database name.
@maugelves
maugelves / mg-dashboard-redirection.php
Last active October 30, 2017 13:58
Función para no permitir que un determinado rol acceda al escritorio de WordPress.
<?php
/**
* Función para que un determinado rol de usuario
* no pueda acceder al administrador de WordPress.
*
* @author Mauricio Gelves <mg@maugelves.com>
*
*/
function mg_dashboard_redirect(){
@maugelves
maugelves / email-con-preguntas-para-presupuesto-web.txt
Last active March 31, 2023 22:39
Correo electrónico con preguntas básicas para la elaboración del presupuesto de un proyecto web.
Hola <nombre del cliente>:
Ante todo muchas gracias por ponerte en contacto y por confiar en nuestros servicios para el desarrollo de tu web.
Necesitaría que por favor respondas las siguientes preguntas para realizar un presupuesto acorde a las necesidades de tu proyecto.
====================
Sobre su negocio:
- ¿A qué se dedica tu empresa/proyecto/emprendimiento?
@maugelves
maugelves / polylang.php
Last active June 11, 2021 05:56
This functions returns a WordPress page permalink for the current language by its slug.
<?php
/**
* This function returns a page permalink
* for the current website language.
*
* @author Mauricio Gelves <mg@maugelves.com>
* @param $page_slug string WordPress page slug
* @return string|false Page Permalink or false if the page is not found
*/
<?php
// 1. Declaro el include a la librería TGM Plugin Activation
include_once __DIR__ . "/inc/lib/class-tgm-plugin-activation.php";
/**
* 2. En la acción 'tgmpa_register' declaro las dependencias del plugin
* siguiendo las pautas de la documentación oficial:
* http://tgmpluginactivation.com/configuration/
*/
<?php
// 1. Declaro el include a la librería TGM Plugin Activation
include_once __DIR__ . "/inc/lib/class-tgm-plugin-activation.php";
/**
* 2. En la acción 'tgmpa_register' declaro las dependencias del plugin
* siguiendo las pautas de la documentación oficial:
* http://tgmpluginactivation.com/configuration/
*/
<?php
// 1. Configurar el PATH hacia la nueva carpeta de ACF
function configurar_path_a_acf( $path ) {
// actualizar el path
$path = get_stylesheet_directory() . '/acf/';
return $path;
@maugelves
maugelves / mg_acf_rimage.php
Last active August 5, 2017 19:47
Create an HTML responsive image tag from an ACF Image array.
<?php
/**
* ACF Responsive Image function
* Set your image field to return a WordPress array and call this function
* to generate a responsive <img> tag with srcset attributes
* You can also override the 'alt', 'class', 'size' and 'style' attributes.
*
*
* Example of use:
*