Skip to content

Instantly share code, notes, and snippets.

@akther80
akther80 / functions.php
Created March 4, 2024 12:46
Bookworm - Change OffCanvas title
add_filter( 'bookworm_offcanvas_header_title', 'bookworm_ch_change_offcanvas_title' );
function bookworm_ch_change_offcanvas_title() {
$title = "Enter Your Tile Here";
return $title;
}
@akther80
akther80 / style.css
Created March 4, 2024 07:15
Geeks - Tutor textarea border color not displayed
.tutor-form-control {
border: 1px solid #eae7f5 !important;
}
@akther80
akther80 / style.css
Created February 14, 2024 11:17
Uneno - SIngle product gallery image not displayed
.single-product .product-images-wrapper .woocommerce-product-gallery__image {
flex: none !important;
}
@akther80
akther80 / style.css
Created January 16, 2024 05:14
Tokoo - Flaticon list
.flaticon-place:before { content: "\f100"; }
.flaticon-social-2:before { content: "\f101"; }
.flaticon-twitter-social-logotype:before { content: "\f102"; }
.flaticon-social-1:before { content: "\f103"; }
.flaticon-question:before { content: "\f104"; }
.flaticon-checkmark:before { content: "\f105"; }
.flaticon-close:before { content: "\f106"; }
.flaticon-round:before { content: "\f107"; }
.flaticon-delete:before { content: "\f108"; }
.flaticon-wallet:before { content: "\f109"; }
@akther80
akther80 / style.css
Created January 8, 2024 11:07
Tokoo - Make flash sale block products in full width
.section-flash-sale-block .products-carousel-wrap {
max-width: 100%;
flex: 0 0 100%;
}
@akther80
akther80 / functions.php
Created December 12, 2023 07:58
Tokoo - Remove manual copyright year
add_action('init', 'tokoo_child_remove_manual_copyright');
function tokoo_child_remove_manual_copyright() {
remove_filter( 'copyright_info', 'redux_apply_footer_copyright_text', 10 );
}
@akther80
akther80 / style.css
Created December 11, 2023 12:49
Electro -Brands list
.brand-thumbnails.columns-5 {
display: flex;
flex-wrap: wrap;
}
.brand-thumbnails .thumbnail {
flex: 0 0 auto;
width: 100%;
padding: 25px !important;
}
@akther80
akther80 / functions.php
Created December 8, 2023 11:36
Cartzilla- Dokan live chat duplicate checkbox issue
function cartzilla_live_chat_setting() {
if( class_exists( 'Dokan_Pro' ) ) {
if( class_exists( 'WeDevs\DokanPro\Modules\LiveChat\VendorSettings' ) ) {
cartzilla_remove_class_action( 'dokan_settings_form_bottom', 'WeDevs\DokanPro\Modules\LiveChat\VendorSettings', 'dokan_live_chat_seller_settings', 15 );
}
}
}
add_action('init', 'cartzilla_live_chat_setting');
@akther80
akther80 / style.css
Last active December 12, 2023 12:36
Tokoo - Parent menu and submenu should display in same level
.primary-nav .primary-nav-menu .primary-vertical-nav > ul.sub-menu > li,
.departments-menu li.menu-item-has-children {
position: relative !important;
}
@akther80
akther80 / style.css
Created November 27, 2023 04:29
Tokoo - Top part of the submenu on the right is aligned with the menu voice
.vertical-nav.yamm .menu-item-has-children {
position: relative !important;
}