Skip to content

Instantly share code, notes, and snippets.

View valeriu's full-sized avatar
🎯
Focusing

Valeriu Tihai valeriu

🎯
Focusing
View GitHub Profile
@valeriu
valeriu / class-wp-bootstrap-navwalker.php
Last active November 28, 2020 05:18 — forked from imuhammadshoaib/class-wp-bootstrap-navwalker.php
Make parent link clickable in Bootstrap for Desktop with WordPress NavWalker
if (wp_is_mobile()){
$atts['href'] = '#';
$atts['data-toggle'] = 'dropdown';
$atts['aria-haspopup'] = 'true';
$atts['aria-expanded'] = 'false';
$atts['class'] = 'dropdown-toggle nav-link';
$atts['id'] = 'menu-item-dropdown-' . $item->ID;
} else {
$atts['href'] = ! empty( $item->url ) ? $item->url : '';
$atts['aria-haspopup'] = 'true';
// Foundation for Sites Settings
// -----------------------------
//
// Table of Contents:
//
// 1. Global
// 2. Breakpoints
// 3. The Grid
// 4. Base Typography
// 5. Typography Helpers
<?php
/* -------------------------------------------------------------
* Custom Logo add this in "after_setup_theme" hook
* ============================================================*/
add_theme_support( 'custom-logo' );
/* -------------------------------------------------------------
* Enable svg support
* ============================================================*/
<style type="text/css">
.dropdown-menu {
border-bottom:1px solid red;
}
.current-nav-parent > .dropdown-menu{
border: 4px solid red;
}
.current-nav-parent > .dropdown-menu{border-bottom:0}
</style>
@valeriu
valeriu / wp-htaccess.sh
Created July 6, 2017 00:58
http to https
# Redirect http to https .htaccess
RewriteEngine On
RewriteBase /
RewriteCond %{ENV:HTTPS} !=on
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI} [R,L]
# Redirect http to https apache
<VirtualHost *:80>
ServerName www.example.com
.btn-new-color {
background-image: linear-gradient(#DCA, #DDB);
border-color: #B5A0A0;
color: #4C3D3D !important;
&:hover {
background-color: #DDD8B6;
}
}
/*------------------------------------------------------------
* Get Attachment ID from image src
* Author: http://stylishwp.com/
============================================================*/
if ( ! function_exists( 'swp_get_attachment_id_from_src' ) ) :
function swp_get_attachment_id_from_src ( $image_src ) {
global $wpdb;
$id = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid = %s", $image_src) );
return $id;
}
@valeriu
valeriu / builder_custom_post_gallery.php
Last active August 29, 2015 14:20
builder_custom_post_gallery in wp
function builder_custom_post_gallery( $output, $attr ) {
global $post;
static $instance = 0;
$instance++;
if ( ! empty( $attr['ids'] ) ) {
// 'ids' is explicitly ordered, unless you specify otherwise.
if ( empty( $attr['orderby'] ) ) {
@valeriu
valeriu / scss
Created September 7, 2014 14:54
@for $i from 1 through 99 {
span:nth-child(#{$i}) {
color: lighten(#000000, $i);
}
}
@valeriu
valeriu / user-agent.php
Created July 30, 2014 16:50
add user-agent to <body> for wordpress projects
<?php
// author : Clervens Volcy - http://goo.gl/G1hRPS
// add conditional statements for mobile devices
function is_ipad() {
$is_ipad = (bool) strpos($_SERVER['HTTP_USER_AGENT'],'iPad');
if ($is_ipad)
return true;
else return false;