Test Redirect Data WPForms

function wpf_snipTest_process_complete( $fields, $entry, $form_data, $entry_id ) { // Optional, you can limit to specific forms. Below, we restrict output to // form #5. //if ( absint( $form_data[‘id’] ) !== 12759 ) { if ( absint( $form_data[‘id’] ) !== 12330…Continue reading

Register Redirect Data WPForms Kuidales

function wpf_sniperRegister_process_complete( $fields, $entry, $form_data, $entry_id ) { // Optional, you can limit to specific forms. Below, we restrict output to // form #5. if ( absint( $form_data[‘id’] ) !== 12330 ) { error_log(“Id form no encontrado”); return; } //…Continue reading

Register New User WPForms Kuidales

function wpf_snipTest_process_complete( $fields, $entry, $form_data, $entry_id ) { // Optional, you can limit to specific forms. Below, we restrict output to // form #5. if ( absint( $form_data[‘id’] ) !== 12330 ) { error_log(“Id form no encontrado”); return; } //…Continue reading

Add Custom Taxonomy – Single Vendor Taxonomy

/** * Add the custom taxonomy to the WC Vendors Pro dashboard. * */ function wcv_add_brands_field( $object_id ){ WCVendors_Pro_Form_helper::select2( array( ‘post_id’ => $object_id, ‘id’ => ‘_wcv_custom_taxonomy_wcv_brands[]’, ‘class’ => ‘select2’, ‘custom_tax’ => true, ‘label’ => __( ‘Brand’, ‘wcvendors-pro’ ), ‘taxonomy’ =>…Continue reading