1) Thank you for reporting it. We are already working on it and it will be fixed in the next extension update. As a temporary fix, you can try this PHP snippet
add_filter(
'hivepress/v1/forms/vendor_update',
function( $form ) {
if(isset($form['fields']['location'])){
$form['fields']['location']['_order'] = 35;
}
return $form;
},
1000
);
2) Please try this PHP snippet
add_filter(
'hivepress/v1/forms/listing_update',
function( $form ) {
// Set description for Title field.
if(isset($form['fields']['title'])){
$form['fields']['title']['description'] = 'custom text here';
}
// Set description for Price field.
if(isset($form['fields']['price'])){
$form['fields']['price']['description'] = 'custom text here';
}
return $form;
},
1000
);