diff --git a/source/_static/images/import_documentation/framework-basic-use/store-use.png b/source/_static/images/import_documentation/framework-basic-use/store-use.png
index e823900948a1ac3910d846ec164246b739f9a317..4fd02dc800f442603305237fa29a309d50aa7f98 100644
Binary files a/source/_static/images/import_documentation/framework-basic-use/store-use.png and b/source/_static/images/import_documentation/framework-basic-use/store-use.png differ
diff --git a/source/import_documentation/framework_guide/how-to-use-SIB.rst b/source/import_documentation/framework_guide/how-to-use-SIB.rst
index 133eab556af985a5938dd68569c3721dfa15f0e4..43cf6cbd1268b3f17b3fb6680f5e401b1dd5b9b6 100644
--- a/source/import_documentation/framework_guide/how-to-use-SIB.rst
+++ b/source/import_documentation/framework_guide/how-to-use-SIB.rst
@@ -406,7 +406,26 @@ store://...
 ~~~~~~~~~~~
 It allows to fetch and display values from the :ref:`store <store-mixin>`.
 
-*Here, without it, the field's name would be displayed by default ("full_name" instead of each user's full name).*
+*Here, without it, the field's name is displayed by default.*
+
+.. code-block:: html
+
+   <solid-display
+      data-src="data/documentation/users.jsonld"
+      fields="full_name"
+      action-full_name="user-details"
+   ></solid-display>
+
+   <solid-display
+      data-src="data/documentation/users.jsonld"
+      fields="full_name"
+      action-full_name="user-details"
+      link-text-full_name="store://resource.full_name"
+   ></solid-display>
+
+.. figure:: ../../_static/images/import_documentation/framework-basic-use/store-use.png
+   :alt: Example of store://... value use
+
 
 bind-resources
 ~~~~~~~~~~~~~~
@@ -445,9 +464,6 @@ It allows to keep and pass the resource data-src between views when a :ref:`soli
       ></solid-display>
    </div>
 
-.. figure:: ../../_static/images/import_documentation/framework-basic-use/store-use.png
-   :alt: Example of store://... value use
-
 .. figure:: ../../_static/images/import_documentation/framework-basic-use/bind-resources.png
    :alt: Example of bind-resources use