This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** Enqueue Child Theme JavaScript | |
* Function adds JS after other plugins | |
@created for a child theme named Mowtown Ecommerce | |
@parent is Shopical Pro from AF Themes | |
*/ | |
function enqueue_after_wc() { | |
// vars |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Theme Includes | |
* | |
* The $theme_includes array determines the code library included in your theme. | |
* Add or remove files to the array as needed. Supports child theme overrides. | |
* @parent shopical pro from AF Themes | |
* | |
* Please note that missing files will produce a fatal error. | |
* | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .gitignore file for WordPress. Ignores everything except theme and plugins. | |
# Located in the root folder | |
# based on https://gist.github.com/jdbartlett/444295 | |
# Broad capture | |
/* | |
# Host and php files | |
*wp-*.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* This script adds the jquery effects to the front page of the Digital Pro Theme. | |
* | |
* @package Digital\JS | |
* @author StudioPress | |
* @license GPL-2.0+ | |
*/ | |
jQuery(function( $ ){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
var gulp = require('gulp'), | |
sass = require('gulp-sass'), | |
autoprefixer = require('gulp-autoprefixer'), | |
newer = require('gulp-newer'), | |
sourcemaps = require('gulp-sourcemaps'), | |
imagemin = require('gulp-imagemin'), | |
browserSync = require('browser-sync').create(), | |
reload = browserSync.reload, |