How to edit the Title attribute in List a Property section?

Hello,

I need to change the word “Title” in the List a Property section. I can add attributes, but I can’t find a wat to customize other attributes in there.

Ant help highly appreciated. Thank you.

Hi @pawsbooking,

Check out this documentation.

Essentially, use Loco Translate to replace the text with your preferred wording.

I hope this helps!

Cheers,
Chris :victory_hand:

Hello, thank you for your response.

I did try Loco Translate, however I cannot find the word “Title” in order to change it.

Hi @pawsbooking,

add_filter(
	'hivepress/v1/forms/listing_update',
	function( $form ) {
		$form['fields']['title']['label'] = 'custom label';

		return $form;
	},
	1000
);

The code snippet above should work as an alternative.

Cheers,
Chris :victory_hand:

Hi,

This text can be changed by using Loco Translate > Plugins > HivePress > Title [please see examples #1, #2].

Hope I helped with your request.

Hello ksentia thank you,

I tried Loco Translate > Plugins > HivePress > but it doesn’t seem to change in the frontend.

What am I doing wrong?

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.

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