WWQ - Allow quoting out-of-stock products

add_action( 'woocommerce_single_product_summary', 'wwq_show_quote_button_for_out_of_stock', 31 ); function wwq_show_quote_button_for_out_of_stock() { global $product; if ( ! $product instanceof WC_Product…

Add Tax ID to Shipping Label

/** * Add the Tax ID Field to the settings page * * In this example…

Including product tax to commission calculation

add_filter( 'wcvendors_commission_rate', 'wcv_calculate_commission_include_product_tax', 10, 5 ); function wcv_calculate_commission_include_product_tax( $commission, $product_id, $product_price, $order, $qty ) { $product…

test

echo 'test';

Change the action's string in the refund section - "View Details"

Change the action's string in the refund section - "View Details"

Untitled Snippet

HTML5

Marketing Manager
<10

Update the author name on published recipes

This code snippet will update the author name for all existing recipes. Just replace New Name…

<10

Remove Emojis

/** * Disable the emojis in WordPress. */ add_action( 'init', function () { remove_action( 'wp_head', 'print_emoji_detection_script',…

Fix the InvalidInternetMessageHeader Error in Outlook

This snippet will modify specific headers in your emails, which can help resolve this ‘InvalidInternetMessageHeader’ error…

MemberPress: Free-Views-Used Counter

This code will add the counter notification showing users how many free views of the paywall…

1 110 111 112 113 114 221