Skip to content

Instantly share code, notes, and snippets.

@TsiartasM
Forked from kimcoleman/redwolfcy_pmprorh_init.php
Created December 12, 2018 13:37
Show Gist options
  • Select an option

  • Save TsiartasM/6fa80acea4cb01fab5517a68bf3d41c3 to your computer and use it in GitHub Desktop.

Select an option

Save TsiartasM/6fa80acea4cb01fab5517a68bf3d41c3 to your computer and use it in GitHub Desktop.
Register Helper "Phone" Field for RedWolfCY
<?php
/**
* Register Helper "Phone" Field for RedWolfCY
*/
function redwolfcy_pmprorh_init() {
//don't break if Register Helper is not loaded
if ( ! function_exists( 'pmprorh_add_registration_field' ) ) {
return false;
}
//define the fields
$fields = array();
$fields[] = new PMProRH_Field(
'phone',
'text',
array(
'label' => 'Phone',
'profile' => true,
'required' => true
)
);
//add the fields into a new checkout_boxes are of the checkout page
foreach ( $fields as $field ) {
pmprorh_add_registration_field(
'checkout_boxes',
$field
);
}
}
add_action( 'init', 'redwolfcy_pmprorh_init' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment