Untitled Snippet

function remove_my_action() { remove_action('wp_head', 'et_add_viewport_meta'); } function custom_et_add_viewport_meta(){ echo ''; } add_action( 'init', 'remove_my_action'); add_action( 'wp_head',…

Hide Campaign Meta (Author, Date, Comments)

Automatically hides theme-generated meta information from campaign pages (only for Charitable Pro 1.8.13).

Untitled Snippet

Gordon Ikner
<10

Sample Email Template Tag

This is an example of how to register a new email template tag for EDD.

Move Points Message Below Content

Move Single Product Page Message below content

Use Full Store Address in Ships From

By default the Ships From metadata displayed under the add to cart button only shows the…

Remove table from dashboard

if ( ! function_exists( 'wcv_remove_recent_order_table_columns' ) ) { /** * Remove columns from Recent Orders table…

Buy Now

...

Amilee Selfridge
<10

Stop Lazy Load

add_filter( 'wp_lazy_loading_enabled', '__return_false' );

<10

Switching between ftp_put and ftp_fput FTP upload methods in Store Exporter Deluxe

function custom_woo_ce_cron_export_ftp_switch() { // ftp_put or ftp_fput return 'ftp_fput'; } add_filter( 'woo_ce_cron_export_ftp_switch', 'custom_woo_ce_cron_export_ftp_switch' );

<10

Allow CSS Files Upload

Allowing to upload CSS file into media folder for custom special integration such as booking search…

1 47 48 49 50 51 125