Skip to content

Instantly share code, notes, and snippets.

@slaffko1
slaffko1 / jquery-scroll-bottom.js
Created October 24, 2019 15:16 — forked from toshimaru/jquery-scroll-bottom.js
Detect the scrolling to bottom of the page using jQuery.
$(window).on("scroll", function() {
var scrollHeight = $(document).height();
var scrollPosition = $(window).height() + $(window).scrollTop();
if ((scrollHeight - scrollPosition) / scrollHeight === 0) {
// when scroll to bottom of the page
}
});
.helper-mob {
display: none;
-ms-flex-direction: row;
flex-direction: row;
position: fixed;
left: 0;
bottom: 0;
right: 0;
width: 100%;
z-index: 10;
@slaffko1
slaffko1 / function.php
Created November 28, 2019 11:02
Woocommerce categories before products
function woocommerce_product_category( $args = array() ) {
$woocommerce_category_id = get_queried_object_id();
$args = array(
'parent' => $woocommerce_category_id
);
$terms = get_terms( 'product_cat', $args );
if ( $terms ) {
echo '<ul class="woocommerce-categories">';
foreach ( $terms as $term ) {
echo '<li class="woocommerce-product-category-page">';
@slaffko1
slaffko1 / WP Customizer - Dropdown-pages
Created December 2, 2019 19:08 — forked from ajskelton/WP Customizer - Dropdown-pages
Add a Dropdown-pages field to the WordPress Customizer.
$wp_customize->add_setting( 'themeslug_dropdownpages_setting_id', array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'themeslug_sanitize_dropdown_pages',
) );
$wp_customize->add_control( 'themeslug_dropdownpages_setting_id', array(
'type' => 'dropdown-pages',
'section' => 'custom_section', // Add a default or your own section
'label' => __( 'Custom Dropdown Pages' ),
'description' => __( 'This is a custom dropdown pages option.' ),
@slaffko1
slaffko1 / function.php
Created March 11, 2020 14:14
Remove "Category:" from title
function prefix_category_title( $title ) {
if ( is_category() ) {
$title = single_cat_title( '', false );
} elseif(is_product_category()) {
$term = get_queried_object();
$title = $term->name;
}
return $title;
}
add_filter( 'get_the_archive_title', 'prefix_category_title' );
@slaffko1
slaffko1 / icons.css
Created June 5, 2020 18:54
Social icons, no classes
.social a {
display: inline-block;
font-size: 16px;
width: 1em;
height: 1em;
background-repeat: no-repeat;
background-size: contain;
background-position: 50%;
color: transparent;
overflow: hidden;
@slaffko1
slaffko1 / wp-query-with-meta-query-and-taxonomy.php
Created September 8, 2020 18:41 — forked from navnit-viradiya/wp-query-with-meta-query-and-taxonomy.php
WooCommerce search products between price range using WP_Query
<?php
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'posts_per_page' => -1,
'tax_query' => array(
'relation' => 'AND',
array (
'taxonomy' => 'product_cat',
'field' => 'slug',
@slaffko1
slaffko1 / gist:ffa4faa401665b371bc8ffc9a42528b9
Created September 21, 2020 19:03 — forked from joshuabaker/gist:313648
Get all images in a HTML string
<?php
/**
* Returns all img tags in a HTML string with the option to include img tag attributes
*
* @author Joshua Baker
*
* @example $post_images[0]->html = <img src="example.jpg">
* $post_images[0]->attr->width = 500
*
@slaffko1
slaffko1 / font-stacks.css
Created September 24, 2020 08:01 — forked from don1138/font-stacks.css
CSS Modern Font Stacks
/* Modern Font Stacks */
/* System */
font-family: system, -apple-system, ".SFNSText-Regular", "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande", sans-serif;
/* Times New Roman-based serif */
font-family: Cambria, "Hoefler Text", Utopia, "Liberation Serif", "Nimbus Roman No9 L Regular", Times, "Times New Roman", serif;
/* A modern Georgia-based serif */
font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
<?php // don't copy this line in your code.
/**
* Remove uncategorized from the WooCommerce breadcrumb.
*
* @param Array $crumbs Breadcrumb crumbs for WooCommerce breadcrumb.
* @return Array WooCommerce Breadcrumb crumbs with default category removed.
*/
function your_prefix_wc_remove_uncategorized_from_breadcrumb( $crumbs ) {
$category = get_option( 'default_product_cat' );
$caregory_link = get_category_link( $category );