Skip to content

Instantly share code, notes, and snippets.

View mharis's full-sized avatar

Haris Zulfiqar mharis

View GitHub Profile
// Common social media colors
// More at http://brandcolors.net/
$dribbble-color:#ea4c89;
$facebook-color:#3b5998;
$github-color:#007bb6;
$google-color:#dd4b39;
$linkedin-color:#171515;
$rss-color:#ee802f;
$twitter-color:#00aced;
/** Break html5 cart caching */
add_action('wp_enqueue_scripts', 'cartcache_enqueue_scripts', 100);
function cartcache_enqueue_scripts()
{
wp_deregister_script('wc-cart-fragments');
wp_enqueue_script( 'wc-cart-fragments', get_template_directory_uri() . '/cart-fragments.js', array( 'jquery', 'jquery-cookie' ), '1.0', true );
}
<?php
require_once dirname( __FILE__ ) . '/makepot.php';
if ( !defined( 'STDERR' ) ) {
define( 'STDERR', fopen( 'php://stderr', 'w' ) );
}
/**
* Extend to add text domain check
@mharis
mharis / test
Last active December 24, 2015 14:09
<!-- this is the tagline box -->
[tagline_box link="http://themeforest.net/user/ThemeFusion" button="Purchase Now" title="Avada is incredibly responsive, with a refreshingly clean design" description="And it has some awesome features, premium sliders, unlimited colors, advanced theme options and so much more!"]
[/tagline_box]
<!-- these are the content boxes -->
[content_boxes]
[content_box title="Responsive Design" image="" icon="tablet" link="http://themeforest.net/user/ThemeFusionhttp://themeforest.net/user/ThemeFusion" linktext="Learn More"]Avada is fully responsive and can adapt to any screen size. Try resizing your browser window to see it happen.[/content_box]
@mharis
mharis / gist:6968473
Created October 13, 2013 23:20
How to set WordPress Menus to Theme Locations
$locations = get_theme_mod( 'nav_menu_locations' ); // registered menu locations in theme
$menus = wp_get_nav_menus(); // registered menus
if($menus) {
foreach($menus as $menu) { // assign menus to theme locations
if( $menu->name == 'Main' ) {
$locations['main_navigation'] = $menu->term_id;
} else if( $menu->name == '404' ) {
$locations['404_pages'] = $menu->term_id;
} else if( $menu->name == 'Top' ) {
<?php
/**
* Plugin installation and activation for WordPress themes.
*
* @package TGM-Plugin-Activation
* @version 2.3.6
* @author Thomas Griffin <thomas@thomasgriffinmedia.com>
* @author Gary Jones <gamajo@gamajo.com>
* @copyright Copyright (c) 2012, Thomas Griffin
* @license http://opensource.org/licenses/gpl-2.0.php GPL v2 or later
<?php
define( 'THEMENAME', 'Kallyas' );
require_once dirname( __FILE__ ) . '/framework/class-tgm-plugin-activation.php';
add_action( 'tgmpa_register', 'kallyas_register_required_plugins' );
function kallyas_register_required_plugins() {
/**
function generate_options_css($newdata) {
/** Define some vars **/
$data = $newdata;
$uploads = wp_upload_dir();
$css_dir = get_template_directory() . '/css/'; // Shorten code, save 1 call
/** Save on different directory if on multisite **/
if(is_multisite()) {
$aq_uploads_dir = trailingslashit($uploads['basedir']);
} else {
function SMOFtoRedux() {
global $of_options;
$options = $of_options;
$sections = array();
$section = array();
$fields = array();
foreach($options as $key=>$value) {
foreach ($value as $k=>$v) {
if (empty($v)) {
unset($value[$k]);
<?php
if( is_page( 'Home' ) ) {
echo 'This is a homepage';
} else if( is_page( 'About' ) ) {
echo 'About Me';
}