Stop Lazy Load

add_filter( 'wp_lazy_loading_enabled', '__return_false' );

<10

Ensure Webfont is Loaded

add_filter( 'elementor_pro/custom_fonts/font_display', function( $current_value, $font_family, $data ) { return 'swap'; }, 10, 3 );

<10

Remove Google Fonts

add_filter( 'elementor/frontend/print_google_fonts', '__return_false' );

<10

login redirect changed from default my account page to home page

/** * WooCommerce My Account Page login Redirect */ add_action( 'wp_login', 'owp_redirect_after_logout' ); function owp_redirect_after_logout() {…

Hide SALE! Badges

/*Hide WooCommerce SALES Badges*/ .woocommerce span.onsale { display: none; } /*Hide SALES Badges in home page…

cart preview image stretch fix in oceanWP theme

/*Menu cart hover dropdown box image stretch fix*/ .woocommerce ul.product_list_widget li img { float: unset !important;…

disable joinchat whatsapp plugin on mobile biew

@media only screen and (max-width: 567px) { .joinchat{ position: absolute; bottom:70px; --s: 36px; margin-right:px; display:none }…

custom order status wpadmin

/* * Register a custom order status * * @author Misha Rudrastyh * @url https://rudrastyh.com/woocommerce/order-statuses.html */…

Bulk Change Custom Order Status wpadmin

add_filter( 'bulk_actions-edit-shop_order', 'misha_register_bulk_action' ); // edit-shop_order is the screen ID of the orders page function misha_register_bulk_action(…

wpadmin add phone number with address in orders page

add_action( 'manage_shop_order_posts_custom_column' , 'custom_orders_list_column_content', 50, 2 ); function custom_orders_list_column_content( $column, $post_id ) { global $the_order, $post;…

custom footer chatgpt html

About Us "Ilavanam is a farm in Tiruppur. Ilavanam is trying to lead sustainable living. The…

custom footer chatgpt css

/* Style the footer container */ #custom-footer { background-color: #fff; /* White background */ padding: 1px;…

mobile sticky menu chatgpt css

/* Reset some default styles */ body, h1, ul { margin: 0; padding: 0; } /*…

1 139 140 141 142 143 209