Hi,
#1. In the topic you mentioned, I have fully guided the custom code that you need to add as I instructed in step 2.
#2. Extra guest:
Remove custom code from plugin:
remove_filter('babe_checkout_after_contact_fields', array('BABE_html', 'extended_guest_fields' ), 10, 2);
Then add_filter your custom code to this filter hook:
add_filter('babe_checkout_after_contact_fields','prefix_fnc_extended_guest_fields' , 10, 2);
function prefix_fnc_extended_guest_fields($output, $args){
// Your code
return $output;
}
As I said, these are just guidelines and solutions for you to follow if you are someone who can understand and handle the code.
I can’t give you more detailed instructions, it takes quite a while and this is not the free support we can help you with.
We hope you understand and sympathize!
-
This reply was modified 2 years, 4 months ago by Billy Nguyen.