Skip to content

Instantly share code, notes, and snippets.

@TimbreDesign
TimbreDesign / WooCommerce: Display Custom Product Text Field Data on Product Page
Created December 29, 2018 17:49
WooCommerce: Display Custom Product Text Field Data on Product Page
add_action( 'woocommerce_single_product_summary', 'bdev_woo_product_field_delivery_display', 25 );
function bdev_woo_product_field_delivery_display() {
// make sure this is woocommerce
global $product;
// tell the hook what field we want to fetch
$product_shipping_field = $product->get_meta('_shipping_field', true );
// make sure we do not show anything if the shipping field has no data in it
<?php
/**
* Plugin Name: Woocommerce Vendors Bookings Management
* Description: Allows vendors to manage their bookings in the frontend
* Version: 1.0.0
* Author: Liam Bailey
* Author URI: http://webbyscots.com/
* License: GNU General Public License v3.0
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/