Change Tag Position in add listing

Hi, how to position the tags below the description in the submit-listing page? Thanks

Same kind of snippet like Change the listing description position (order) on a page #hivepress #listings · GitHub

Hi,

Please use this PHP snippet:

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		$form['fields']['tags']['_order'] = 210;

		return $form;
	},
	1000
);
1 Like

Thanks it works but what is the order number of the description because currently, my tag order displays on top of attributes which have a lower order number as shown below.

  • description order = ?
  • tag = 200
  • attribute #1 = 101
  • attribute #2 = 102

Now tags are nicely positioned below description but i just don’t understand the order numbers. Thanks

If I remember correctly the Description field has order set to 200, please try adjusting the order number in the snippet above.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.