How to Change CSV Export Delimiter

This snippet will modify the CSV separator symbol to be a semicolon instead of a comma.

<10

Ensure Webfont is Loaded (non-Elementor)

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

Pardot

Becca Nevarez
<10

Milestone Sales Alert

Emails the admin when a specific download has been sold X times.

Disable Renewals for Specific Products

Prevents license keys for certain downloads from being renewed or extended.

Show Sticky Posts on Top of the Archive Templates - WPX Tetris Theme

## Sticky Posts on Archive Pages - WPX Tetris Theme **Description:** Display sticky posts first on…

Move Points Message Below Content

Move Single Product Page Message below content

Untitled Snippet

add_filter( 'woocommerce_product_single_add_to_cart_text', 'saphie_custom_add_to_cart_text' ); add_filter( 'woocommerce_product_add_to_cart_text', 'saphie_custom_add_to_cart_text' ); function saphie_custom_add_to_cart_text() { return 'ADD TO BAG'; }

Joana Hranova
<10

Ajax snippet

Jeremy Setters PRO
<10

Add a custom column to Commission table

/** * Add custom columns label * * @param Array $columns array stored column names *…

1 143 144 145 146 147 218