Gform_field_value adding double quotes to URL parameters in Paragraph Text field

Hi, I’m populating a Paragraph Text field dynamically with a link element, this way:

add_filter( 'gform_field_value_post_test', 'populate_my_field' ) );

function populate_my_field( $value ) {
	return '<a href="#">Test</a>';
}

However, it’s adding the link to the field like this:

<a href="”#”" data-mce-href="”#”">Test</a>

As you can see, it’s wrapping my href value in another couple of double-quotes.

It worked fine a while ago but I was just testing this today and found this issue, can you help me finding what’s going on and how I can fix this issue?

Thanks.

Hi Nelson. The product development team is aware of the issue and it will be fixed in an upcoming release. Thank you.

Thanks! Looking forward to this fix as it’s impacting all my production sites.

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