Gravitar Fix
add_filter('get_avatar', function($avatar_html, $id_or_email, $size) { // Force width/height attributes to match the requested avatar size $size…
GravityForms_DIR_AB_ACF - Gravity Forms & Feeds ACF Fields
* Description: Registers ACF fields for form and feed data + notification/confirmation content * Location: Run…
reunik1
increase limit
Property Type Conditional Search Fields
jQuery(document).ready(function($) { // ============================================ // FIELD VISIBILITY BASED ON PROPERTY TYPE // ============================================ // All conditional…
Remove "mail.readwrite" Scope for the Outlook Mailer (copy)
This snippet removes the `mail.readwrite` scope from the WP Mail SMTP plugin Outlook provider.
change from the address
change email and name posted
Add Tax ID to Shipping Label
/** * Add the Tax ID Field to the settings page * * In this example…
Including product tax to commission calculation
add_filter( 'wcvendors_commission_rate', 'wcv_calculate_commission_include_product_tax', 10, 5 ); function wcv_calculate_commission_include_product_tax( $commission, $product_id, $product_price, $order, $qty ) { $product…
Basic WP escaping functions
// ❌ Don't use _e(), __(), _x() etc. to output data // ✅ Use the escaped…
Tweak Price Display (Appends Text) | Display Eventbrite Events
The Display Eventbrite plugin premium version can display prices. If you want to tweak to display…
Tasty Roundups - Change Heading from h2 to h3
Change all your Tasty Roundup headings from h2 tags to h3 tags
om-nextjs14-layout.tsx
import '@/app/ui/global.css'; import {RouteChangeListener} from '@/app/route-change-listener.tsx'; export default function RootLayout({ children, }: { children: React.ReactNode; })…