Skip to content

Instantly share code, notes, and snippets.

View ibndawood's full-sized avatar
💭
I may be slow to respond.

Kader Ibrahim S ibndawood

💭
I may be slow to respond.
View GitHub Profile
@ibndawood
ibndawood / NEW-Table.html
Created August 26, 2017 06:21 — forked from anastransvelo/NEW-Table.html
Techmarket Specification table : OLD and NEW
<h2>Technical Specs</h2>
<table class="shop_attributes">
<tbody>
<tr>
<th>Screen Size</th>
<td><p>40"</p></td>
</tr>
<tr>
<th>Aspect Ratio</th>
@ibndawood
ibndawood / function.php
Created August 29, 2017 13:06 — forked from anastransvelo/function.php
Shoesmarket Custom header changes
function tm_header_v8_search() {
?>
<div class="dropdown shoesmarket-search search">
<button class="btn btn-block" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fa fa-search" aria-hidden="true"></i></button>
<div class="dropdown-menu search-dropdown fadeIn animated">
<?php techmarket_navbar_search(); ?>
</div>
</div>
<?php
}
@ibndawood
ibndawood / style.css
Created September 6, 2017 08:04 — forked from anastransvelo/style.css
Techmarket - Show 2 products in mobile view
@media (max-width: 700px) {
.products:not(.slick-initialized) {
display: flex;
flex-wrap: wrap;
}
.products:not(.slick-initialized) .product {
width: 50%;
}
@ibndawood
ibndawood / style.css
Created September 12, 2017 06:03 — forked from anastransvelo/style.css
Techmarket - Secondary Menu visible in all view
@media (max-width: 1699px) and (min-width: 1200px) {
.site-header.header-v1 .secondary-navigation {
display: block;
}
.site-header .primary-navigation, .site-header .secondary-navigation,.site-header.header-v1 .primary-navigation {
flex: 0 0 37.5%;
max-width: 37.5%;
}
}
@ibndawood
ibndawood / style-rtl.css
Created September 14, 2017 08:49 — forked from anastransvelo/LTR-style.css
Techmarket - My account - Address Edit issue
.woocommerce-MyAccount-content .woocommerce-Address-title {
display: flex;
margin-bottom: 10px;
flex-wrap: nowrap;
}
.woocommerce-MyAccount-content .woocommerce-Address-title h3 {
margin-bottom: 0;
}
@ibndawood
ibndawood / style.css
Created September 14, 2017 08:55 — forked from anastransvelo/style.css
Techmarket - Header Logo Align center
.site-header .desktop-only .row:first-child,
.site-header .desktop-only .techmarket-sticky-wrap .row{
align-items: center;
}
@ibndawood
ibndawood / functions.php
Created October 20, 2017 07:07 — forked from farookibrahim/functions.php
Pizzaro - YITH Product Add ons compatibility issue with WC 3.2.x
if ( class_exists( 'YITH_WAPO' ) ) {
function pz_child_yith_pa_comp_fix() {
wp_register_script( 'select2', WC()->plugin_url() . '/assets/js/select2/select2.full.min.js', array( 'jquery' ) );
wp_enqueue_script( 'select2' );
wp_register_script( 'selectWoo', WC()->plugin_url() . '/assets/js/selectWoo/selectWoo.full.min.js', array( 'jquery' ) );
wp_enqueue_script( 'selectWoo' );
wp_register_script( 'wc-enhanced-select', WC()->plugin_url() . '/assets/js/admin/wc-enhanced-select.min.js', array( 'jquery', 'selectWoo' ) );
@ibndawood
ibndawood / functions.php
Created October 20, 2017 07:07 — forked from farookibrahim/functions.php
Pizzaro - YITH Product Add ons compatibility issue with WC 3.2.x
if ( class_exists( 'YITH_WAPO' ) ) {
function pz_child_yith_pa_comp_fix() {
wp_register_script( 'select2', WC()->plugin_url() . '/assets/js/select2/select2.full.min.js', array( 'jquery' ) );
wp_enqueue_script( 'select2' );
wp_register_script( 'selectWoo', WC()->plugin_url() . '/assets/js/selectWoo/selectWoo.full.min.js', array( 'jquery' ) );
wp_enqueue_script( 'selectWoo' );
wp_register_script( 'wc-enhanced-select', WC()->plugin_url() . '/assets/js/admin/wc-enhanced-select.min.js', array( 'jquery', 'selectWoo' ) );
@ibndawood
ibndawood / functions.php
Created October 30, 2017 07:34 — forked from farookibrahim/functions.php
Techmarket - Header v1 display top bar left and right
function tm_child_header_v1_top_bar_location( $top_bar_location ) {
return '';
}
add_filter( 'techmarket_header_top_bar_location', 'tm_child_header_v1_top_bar_location' );
@ibndawood
ibndawood / style.css
Created November 20, 2017 06:45 — forked from anastransvelo/style.css
Techmarket : Reivew avatar enable
.commentlist li .comment_container>img, .pings-list li .comment_container>img {
display: block;
width: 50px;
}