Skip to content

Instantly share code, notes, and snippets.

View akramulhasan's full-sized avatar
🎯
Focusing

Akramul Hasan akramulhasan

🎯
Focusing
View GitHub Profile
@akramulhasan
akramulhasan / gist:a2d65c0a7681cac41629f68fb2105229
Created August 26, 2026 00:35
Linkedin Lead Nurturing System
/**************************************************************
* LINKEDIN OUTREACH ROLLING PIPELINE
*
* Existing lead data: A:H
* Tracker columns: I:AI
*
* Flow:
* Visit + Like → Comment → Connection Request
* → Re-engage → DM
**************************************************************/
jQuery(document).ready(function($){
var offset = 700;
var speed = 250;
var duration = 500;
$(window).scroll(function(){
if ($(this).scrollTop() < offset) {
$('.topbutton') .fadeOut(duration);
} else {
$('.topbutton') .fadeIn(duration);
}
add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );
function custom_pre_get_posts_query( $query ) {
$query->set( 'meta_query', array( array(
'key' => '_thumbnail_id',
'value' => '0',
'compare' => '>'
)));
}