Skip to main content

Has someone has filled out the "profile_content_editable" field in their personal settings

I see this field in the signups_edit page: 

{% text_area "profile_content_editable", class:"textarea-tinymce" %}

I'm wondering if I can call this to another page (i.e. for supporter in random_supporters show profile content) and whether I can tell if a current user has filled out this field in their settings?

Official response from

Hi Amy,

Yes. You can see this code in action in the profiles_show.html template. For example, what displays that like this:

{% if profile.profile_content.size > 0 %}
<div id="intro">
<div class="text-content">
{{ profile.profile_content }}
</div>
</div>

The user is able to edit this under their account settings.

Share this post

Showing 3 reactions

How would you tag this suggestion?
Please check your e-mail for a link to activate your account.