AI Verified

Name

WooCommerce Custom Radio Button Field For Product Editor

About

This guide shows you how to create custom radio buttons in the product editor of WooCommerce. This is perfect if you need to be able to select a pre-defined series of options in the backend and display the selected option on the front-end (yes, this guide shows you how you can output the option selected too).

Language

PHP

Rating

Voted: 0 by 0 user(s)

How to Setup Snippet

Simply copy the pre-coded solution to your active child theme’s functions.php or preferably the Code Snippets Plugin.

Link for further information:

The author has provided the following URL that may be helpful to setting up or using this snippet:

https://www.ecommercehints.com/woocommerce-custom-radio-button-field-for-product-editor

Codevault

ecommercehints

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.1

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

Website/ Profile URL:

https://www.ecommercehints.com/

History

Last modified:

14/11/2022

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

WooCommerce Custom Radio Button Field For Product Editor

 
                    
1/**
2 * Snippet Name: WooCommerce Custom Product Radio Button Field
3 * Snippet Author: ecommercehints.com
4*/
5 
6// Create the custom radio metabox
7add_action ('woocommerce_product_options_advanced', 'ecommercehints_custom_product_radio_metabox');
8function ecommercehints_custom_product_radio_metabox() {
9 echo '<div class="options_group">';
10 woocommerce_wp_radio(array ( // A radio type field
11 'id' => 'custom_product_radio_metabox',
12 'value' => get_post_meta (get_the_ID(), 'custom_product_radio_metabox', true),
13 'label' => 'Radio Buttons Label',
14 'description' => 'This is the description',
15 'desc_tip' => true, // If true, place description in question mark tooltip.
16 'options' => array(
17 'option_1' => 'Option 1',
18 'option_2' => 'Option 2',
19 'option_3' => 'Option 3'
20 ),
21 ));
22 echo '</div>';
23}
24 
25// Save radio option on update
26add_action ('woocommerce_process_product_meta', 'ecommercehints_save_field_on_update', 10, 2);
27function ecommercehints_save_field_on_update ($id, $post) {
28 update_post_meta ($id, 'custom_product_radio_metabox', $_POST['custom_product_radio_metabox']);
29}

0

Related Snippets

Please see some snippets below related to this snippet..

WooCommerce

AI Verified

0

Change the arrangement of fields in the checkout area or delete fields

Added: 2 years ago

Last Updated: 1 year ago

Customize the fields in the checkout. You can change the fields in the checkout area, sort them differently or delete individual fields.

WooCommerce

AI Verified

0

Shipping by Weight

Added: 2 years ago

Last Updated: 1 year ago

WooCommerce

AI Verified

1

WooCommerce Product Time Picker

Added: 1 year ago

Last Updated: 2 months ago

This snippet adds a product time picker to the single product template above the add to cart button and save the time picked against the product as meta data. Once a time is picked against the product...

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WooCommerce

AI Verified

7

WooCommerce Show Number Of People Viewing Product

Added: 1 year ago

Last Updated: 1 month ago

We want to make this solution absolutely clear from the outset. This snippet does NOT generate the actual number of people viewing the product. It shows a randomly generated number in the range of two...

WooCommerce

AI Verified

5

WooCommerce Show Number Of Units Sold On Product Page

Added: 1 year ago

Last Updated: 2 months ago

Showing the number of product units sold on the single product page is a great way to introduce Fear Of Missing Out (FOMO). You can highlight how many products are sold to let customers know a product...

WooCommerce

AI Verified

3

WooCommerce Add Content Under The Proceed To Checkout Button On The Cart Page

Added: 1 year ago

Last Updated: 2 months ago

How many times have you bought something online and seen trust symbols near the proceed to checkout button on the cart page? “30 Day Money Back Guarantee” or “Secure Checkout” are popular examples. By...