Skip to content

Instantly share code, notes, and snippets.

View davidperezgar's full-sized avatar

David Perez davidperezgar

View GitHub Profile
@davidperezgar
davidperezgar / script-fb-track.js
Created April 23, 2019 11:55
Facebook Track Script
<script>fbq('track', 'Lead');</script>
@davidperezgar
davidperezgar / wc-update-weight.php
Created April 16, 2019 08:54
WooCommerce rutine for update weights products
<?php
ini_set( 'memory_limit', '1024M' );
ini_set( 'max_execution_time', 600 );
define( 'WP_USE_THEMES', false );
require_once 'wp-load.php';
echo 'iniciado proceso.' . date( 'H:i:s', time() ) . '<br />';
$weight_final = '1000';
@davidperezgar
davidperezgar / script-fb-pageview.js
Created April 9, 2019 11:57
Facebook Script Page View for Google Tag Manager
<script>fbq('track', 'PageView');</script>
@davidperezgar
davidperezgar / gist-orders.sh
Created April 5, 2019 22:08
Site ground Installation for Git
ssh-keyscan -t rsa itm20.siteground.biz >> ~/.ssh/known_hosts
cd ~/.ssh/
nano [your-private-key]
chmod 600 [your-private-key]
ssh-add -K ~/.ssh/[your-private-key]
# Poner la frase privada que da SG-Git
git clone ssh://[url]
@davidperezgar
davidperezgar / .gitignore
Created March 10, 2019 22:37
Gitignore recommended for WordPress Site repository
#Wordpress
htaccess.txt
index.php
licencia.txt
license.txt
readme.html
robots.txt
wp-activate.php
wp-blog-header.php
wp-comments-post.php
@davidperezgar
davidperezgar / .git-ftp-ignore
Created March 6, 2019 10:30
GIT FTP Ignore
.ftpquota
.gitignore
@davidperezgar
davidperezgar / git-ftp-config
Last active March 6, 2019 10:29
GIT FTP Config lines
[git-ftp]
      url = ftp://ftp.url.com:21/www/
      user = username
      password = "pass"
@davidperezgar
davidperezgar / fixed-header-wordpress.css
Created March 21, 2017 10:47 — forked from robneu/fixed-header-wordpress.css
Assign the fixed position to your header and set the width to 100%. You'll also need to set a high z-index to make sure your header doesn't get overlapped by embeded objects and other similar items. The second part will make your site look normal when you're logged in and the admin bar is showing.
/*
Site Header
---------------------------------------------------------------------------------------------------- */
/* This is where the magic happens. You need
* to assign a fixed position in order for
* everything else to work correctly.
--------------------------------------------- */
.site-header {
position: fixed;
top: 0;
@davidperezgar
davidperezgar / functions.php
Created November 11, 2016 21:31
Remove Woocommerce admin notice
// Remove WooCommerce Updater
remove_action('admin_notices', 'woothemes_updater_notice');
@davidperezgar
davidperezgar / functions.php
Created November 11, 2016 12:20
Genesis Revolution slider in home page, featured rest
//* Adds featured image in home
add_image_size( 'destacada_pagina', 1440, 470, true );
add_action('genesis_after_header','cmk_home_img');
function cmk_home_img() {
if ( has_post_thumbnail() && !is_singular() && !is_home() && !is_front_page()) {
echo '<div class="miniatura text-center">';
the_post_thumbnail('destacada_pagina');
echo '</div>';
} elseif (is_home() || is_front_page()) {
echo '<section id="slider">';