| | |

Add custom field product single page

To add custom meta field in the product single page and save the field data then get value, Need to add this following code You can add this code in your function.php file // Adding a custom Meta container to admin products pages add_action(‘add_meta_boxes’, ‘create_custom_meta_box’); if (!function_exists(‘create_custom_meta_box’)) { function create_custom_meta_box() { add_meta_box( ‘custom_product_meta_box’, __(‘ Product…

| | |

Add registration custom field Tutor LMS

If you want to add any custom field in your registration page, then you need to follow the following four steps: First, need to add a function in your function.php file Then, Need to override the registration page and need to add following code, here the file path location : plugins/tutor/templates/dashboard/registration.php Then, add a field…