How to Change CSV Export Delimiter
This snippet will modify the CSV separator symbol to be a semicolon instead of a comma.
CWP - MailChimp RSS email ID
Adds MailChimp email ID to RSS feeds for better conversion tracking
Delete Double Logo At Checkout
/** * ============================================================ * Hide Duplicate Astra Header on Checkout * ============================================================ * * PURPOSE: Hides…
Hide payment icons for trials
Hides the payment icons on checkout when the item in the card is a free trial
Yootheme Consent - Scroll block
/* When the consent banner is present, lock the viewport */ html:has(.tm-consent), body:has(.tm-consent) { overflow: hidden…
WWQ - Hide Add to Quote button from regular customers
add_filter( 'wws_wq_quote_button_html', 'wwq_restrict_quote_button_to_wholesale' ); add_filter( 'wws_wq_quote_button_cart_html', 'wwq_restrict_quote_button_to_wholesale' ); add_filter( 'wws_wq_quote_button_checkout_html', 'wwq_restrict_quote_button_to_wholesale' ); function wwq_restrict_quote_button_to_wholesale( $button_html )…
CSS Hide regular price
.original-computed-price ins:first-of-type{ display:none; }
ACFW - Fix for fatal error on Add products tab with permanently deleted products
$guard = function( $add_products ) { if ( ! is_array( $add_products ) ) { return $add_products;…
Allow HTML in the product description
function wcv_wpkses_post_html_tags( $tags, $context ) { if ( 'post' === $context ) { $tags['iframe'] = array(…
Add custom page to the vendor dashboard - custom menu link
add_filter( 'wcv_pro_dashboard_urls', 'custom_menu_link' ); function custom_menu_link( $pages ) { $pages[ 'custom_link' ] = array( 'slug' =>…