floating-monsterlink-1.css
/* --- Floating MonsterLink Style 1 CSS --- ------------------------------------------ */ .floating-monsterlink.style1.show { right: 30px; } .floating-monsterlink.style1…
Google Search Console
google-site-verification=2cD88PiH77SW3-7_W4NAENAER1K0yKAoxVdNAd_DVqs
Dynamic logo sizing
Fix the issue where changing the logo size in the block editor breaks it. Dynamically adjust…
Test
var letme = 55
How to Change CSV Export Delimiter
This snippet will modify the CSV separator symbol to be a semicolon instead of a comma.
Untitled Snippet
5CX9RLRZI0VP0MTK0
Replace Menu Icon
Replace the standard menu icon in Easy Digital Downloads with an icon from Dashicons
Force Minimum Password Length at Checkout
Force a minimum password length when a customer creates an account at checkout
Add a document file upload
// Add the document field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_doc_uploader'); function wcv_doc_uploader( ){ if…
Enable product images in vendor order email notifications
add_filter( 'wcvendors_vendor_order_items_args', 'wcv_enable_product_image_vendor_order_email' ); function wcv_enable_product_image_vendor_order_email( $order_item_args ){ $order_item_args['show_image'] = true; return $order_item_args; }
Whitelist Callback Functions for use in Theme Elements
Various elements in the Total theme allow you to select a callback function for the output…