Search results for: admin
product data tabs
/** * Rename product data tabs */ add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 ); function woo_rename_tabs( $tabs )…
Continue Shopping Button
/** * Add Continue Shopping Button on Cart Page * Add to theme functions.php file or…
Buy Now Button - Variation
add_filter( 'gettext', 'customizing_product_variation_message', 10, 3 ); function customizing_product_variation_message( $translated_text, $untranslated_text, $domain ) { if ($untranslated_text ==…
Button - Add to cart to Buy Now
add_filter( 'woocommerce_product_add_to_cart_text', function( $text ) { if ( 'Add to cart' == $text ) { $text…
Auto register guests that purchase
function wc_register_guests( $order_id ) { // get all the order data $order = new WC_Order($order_id); //get…
Allow Webp, SVG, ICO
A Pro Snippet
Add Payment ID to Sales API
If sequential order numbers are on, those numbers are returned in the sales API instead of…
Google AD
Google AD Snippet
Talkwithkallie.com
talkwithkallie.com
Add PDF to purchase receipt
Attaches a PDF to the email customers receive when they purchase
Billing Address Email Tag - Actual Country Name
Replace the default {billing_address} email tag to use the full State/Country names on purchase receipts.
Verify Email Domain
During the banned email checks, see if the domain being checked has DNS configured, if not…
Vendor Email Tag
Show the Shop Vendor's email for each download purchased
Force account creation by cart total
Force account creation at checkout if the cart total is a certain amount and the quantity…
Remove Last Name at Checkout
Removes the Last Name field from the checkout page. Note: This worked with checkout shortcode only