Increase the title length for display format

Guys, in the options there is a limit on the number of characters for Settings / Title, which does not allow you to enter the entire formula from tokens.

I added a snippet that sets the length of the Title

When I enter this formula in the HivePress settings, the formula is cut off by about 2/3 of its length.

The snippet has a length of 400 characters - but this is the number of characters for the title, not for the formula from tokens

I have a formula that consists of 325 characters.

As a result, I can’t set the header formation.

I either need to shorten the formula - that is, make short names for Field Name very short, but this still limits their number. Or I have to refuse tokens that I want to use in the formula.

Please try using this code snippet:

add_filter(
	'hivepress/v1/settings',
	function( $settings ) {
		if ( isset( $settings['listings']['sections']['display']['fields']['listing_title_format'] ) ) {
			$settings['listings']['sections']['display']['fields']['listing_title_format']['max_length'] = 1000;
		}

		return $settings;
	}
);

We’ll also increase the limit in the next HivePress update.

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