Skip to content

Instantly share code, notes, and snippets.

@nadeem-khan
nadeem-khan / Create-Custom-Fields-in-Woocommerce-Checkout-Page.md
Last active July 21, 2022 19:16
Create Custom Fields in Woocommerce Checkout Page and Display them in Orders Details Page in Admin Area

Create Custom Fields in Woocommerce Checkout Page and Display them in Orders Details Page in Admin Area with this WordPress plugin:

<?php


/**
 * Plugin Name: Flowershop - WooCommerceCustomOverrides
 * Plugin URI: http://chillopedia.com
 * Description: Overrides WooCommerce Checkout Form Fields
  • Version: 1.0
@BFTrick
BFTrick / disable-search-redirect-to-single-product-page-woocommerce.php
Last active December 1, 2018 08:53
A filter to disable the default functionality where WooCommerce redirects a product search with only one result to the product page.
<?php
add_filter( 'woocommerce_redirect_single_search_result', '__return_false' );