Hey,
I’m just wondering if there is anyway to be able to re arrange the request form order on hive press? Because everything is out of order when trying to input the information to post a listing.
Cheers
Hi,
Yes, it’s possible, but it will require a PHP snippet. You can use this sample (How to add custom code snippets - HivePress Help Center) it changes the order for the title field:
add_filter(
'hivepress/v1/forms/request_update',
function( $form ) {
$form['fields']['title']['_order'] = 123;
return $form;
},
1000
);
I hope this is helpful to you.
Sorry, But this still doesnt work on my site.
Hi,
Please make sure you add this PHP snippet using this doc How to add custom code snippets - HivePress Help Center. Please note that the snippet provided to you changes the order for the title field in the request form. Also, please disable third-party plugins and customizations (if there are any) and check if this issue persists. If you use a caching plugin, make sure that caching is disabled for logged-in users. If this issue exists, please send more details; we will do our best to help you.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.