Skip to content

Instantly share code, notes, and snippets.

View apisklov's full-sized avatar

Alexandr Pisklov apisklov

View GitHub Profile
<?php # -*- coding: utf-8 -*-
/**
* Create a nav menu with very basic markup.
*
* @author Thomas Scholz http://toscho.de
* @version 1.0
*/
class T5_Nav_Menu_Walker_Simple extends Walker_Nav_Menu
{
/**
@apisklov
apisklov / goal.js
Last active March 31, 2019 17:14
Function Goal Yandex Metrika
// Function Goal Yandex Metrika
function checkGoal(nameGoal){
setTimeout(function(){
var id = Ya.Metrika.counters()[0].id;
window['yaCounter'+ id].reachGoal(nameGoal);
// console.log(id);
}, 100)
}
@apisklov
apisklov / ajax.js
Created October 1, 2018 10:18
Ajax Add to cart Woo
// Ajax добавление товара в корзину
function addToCartAjax(){
$('.single_add_to_cart_button').click(function(e){
e.preventDefault();
var product_id = $(this).val();
var variation_id = $('input[name="variation_id"]').val();
var quantity = $('input[name="quantity"]').val();
var ajax_url = "/wp-admin/admin-ajax.php";
$.ajax({
url: ajax_url,
@apisklov
apisklov / Select.scss
Created September 19, 2018 08:43
Select appearance before and after
&__select{
position: relative;
select{
font-family: $reg;
color: $black;
border: 1px solid #ccc;
padding: 6px 11px;
appearance: none;
padding-right: 28px;
}
@apisklov
apisklov / gist:fd99603afaac65a52efdfe7255da28b7
Created August 10, 2018 06:48
Move variation description woocommerce
// Move Variation Description
// Paste in functions.php
add_action('wp_footer', 'ec_child_modify_wc_variation_desc_position');
function ec_child_modify_wc_variation_desc_position() {
?>
<script>
(function($) {
$(document).on('found_variation', function() {
var desc = $('.woocommerce-variation.single_variation').find(
'.woocommerce-variation-description').html();
@apisklov
apisklov / gist:1687f495f51df06a95b07104bcf51e72
Created June 4, 2018 13:31 — forked from mikejolley/gist:e73f9d061aaebd25ccdc
WooCommerce - Remove subtotal row.
add_filter( 'woocommerce_get_order_item_totals', 'adjust_woocommerce_get_order_item_totals' );
function adjust_woocommerce_get_order_item_totals( $totals ) {
unset($totals['cart_subtotal'] );
return $totals;
}
@apisklov
apisklov / functions.php
Created June 3, 2018 16:48 — forked from claudiosanches/functions.php
WooCommerce - Change ajax variation threshold
function custom_wc_ajax_variation_threshold( $qty, $product ) {
return 10;
}
add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 10, 2 );
@apisklov
apisklov / reset.scss
Created April 29, 2018 16:28 — forked from HamptonMakes/reset.scss
Reset SCSS
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;

Font Face

A mixin for writing @font-face rules in SASS.

Usage

Create a font face rule. Embedded OpenType, WOFF2, WOFF, TrueType, and SVG files are automatically sourced.

@include font-face(Samplino, fonts/Samplino);
@apisklov
apisklov / gulpfile.js
Created April 27, 2018 11:32 — forked from iiiBird/gulpfile.js
gulp + open server
var gulp = require('gulp');
var browserSync = require('browser-sync');
var concat = require('gulp-concat');
var rename = require('gulp-rename');
var uglify = require('gulp-uglify');
var minifyCSS = require('gulp-minify-css');
var htmlreplace = require('gulp-html-replace');
var clean = require('gulp-clean');
var imagemin = require('gulp-imagemin');
var cache = require('gulp-cache');