Disable default WordPress image sizes

// Disable default WordPress image sizes add_filter('intermediate_image_sizes', '__return_empty_array'); // Disable large scaled image size add_filter('big_image_size_threshold', '__return_false');…

Display the stock availability for all product types in WooCommerce archive pages

Learn how to add Availability label ? in your WooCommerce website. This will help to notify…

paypal

adam holt
<10

Convert Customers to Users

Adds a tool to create user accounts for customers that don't already have them, and update…

Custom Terms Page

Use the custom page for "agree to terms" and link to it instead of opening terms…

WP Simple Pay: Add User Meta After Payment

Use the payment email address to look up a WordPress user and add custom meta information.

Remove Gutenberg Blocks CSS

add_action( 'wp_enqueue_scripts', function () { wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style( 'wp-block-library-theme' ); // Remove WooCommerce block CSS…

Body on Scroll

;(function ($) { $(window).scroll(function() { var scroll = $(window).scrollTop(); if (scroll >= 5) { $("body").addClass("scroll-500"); $(".tm-header").removeClass("uk-blend-difference");…

Google Webmaster SEO Issue | Fix Duplicate without user-selected canonical

This snippet hooks into Rank Math’s rank_math/frontend/robots filter to modify how WordPress handles robots meta tags…

MemberPress: Remove State Text Field

Removes the state text field from the registration and account pages if the country does not…

1 48 49 50 51 52 149