GravityView
2.17
The best, easiest way to display Gravity Forms entries on your website.
includes
extensions
entry-notes
partials
note-detail.php
Go to the documentation of this file.
1
<?php
2
/**
3
* Display note details, in both editing and non-editing modes
4
*
5
* @since 1.17
6
*/
7
?>
8
<div itemscope itemtype=
"https://schema.org/Comment"
>
9
<div
class
=
"gv-note-author-details"
itemscope itemtype=
"https://schema.org/Person"
>
10
<div
class
=
"gv-note-avatar"
itemprop=
"image"
>{avatar}</div>
11
<h6
class
=
"gv-note-author"
itemprop=
"name"
>{user_name}</h6>
12
</div>
13
<span
class
=
"gv-note-added-on"
itemprop=
"dateCreated"
datetime=
"{date_created}"
>{added_on}</span>
14
<div
class
=
"gv-note-content"
itemprop=
"comment"
>{value}</div>
15
</div>