Normalize CSS (The New Normal)
https://github.com/sarahschopick/the-new-normal.css.git https://github.com/sarahschopick/normalize-wordpress.git
GA
G-LM0128MWJC
https://fragrance-renaissance-lab.lovable.app/
https://fragrance-renaissance-lab.lovable.app/
FluentCommunity Auto-Delete Diagnostics
This diagnostic snippet monitors and logs how the FluentCommunity auto-delete system behaves, without needing debug.log. It…
Code for Call Tracking
In order to track click to calls.
Allow Subscriptions Product on BOGO and Add Product Search Field
add_filter( 'acfw_product_search_allowed_types' , 'acfw_search_add_support_for_subscription_products' ); function acfw_search_add_support_for_subscription_products( $product_types ) { $product_types[] = 'subscription'; $product_types[] = 'variable-subscription';…
Restrict Dashboard Summary Widget
Prevent specific users (by user ID) from seeing the Easy Digital Downloads Sales Summary widget.
Non-required Card State
Makes the cart state a non-required field when present
Change label of CSV header, and removing others(Export Totals to CSV)
This snippet will change the label of CSV header, and remove the others(Export Totals to CSV)
Remove Post Title from Yoast Breadcrumb
/* Remove Post Title from Yoast Breadcrumb */ add_filter('wpseo_breadcrumb_single_link', 'remove_breadcrumb_title' ); function remove_breadcrumb_title( $link_output) { if(strpos(…
Change Method Label
add_filter( 'woocommerce_cart_shipping_method_full_label', 'wcv_override_vendor_shipping_label', 10, 2 ); function wcv_override_vendor_shipping_label( $label, $method ){ $label = 'Flat-rate'; // cost;…