Field Value

Developer

Laisvunas

3rd Party (Free)


EE Version Support

  • ExpressionEngine 1.x
  • ExpressionEngine 2

Compatibility

If an item is crossed out, it might be untested, not applicable or incompatible. Contact the developer to be sure.

  • Updater
  • Multi Site Manager
  • Stand Alone Entry Form
  • Low Variables
  • Content Elements
  • Better Workflow
  • Matrix
  • Grid
  • Webservice
  • Publisher

Requirements

  • jQuery for the Control Panel

Add-On Type(s)

Plugin

Tags

Field Value allows you to output values of fields of a certain entry without using exp:weblog:entries or exp:channel:entries tag.

PARAMETERS:

1) entry_id - Optional. Allows you to specify entry id number.

2) weblog (for EE1.x) - Optional. Allows you to specify weblog short name.

3) channel (for EE2.0 plus) - Optional. Allows you to specify channel name.

4) url_title - Optional. Allows you to specify url_title.

Either “entry_id” or “weblog/channel” and “url_title” parameters must be defined.

5) field_format - Optional. Allows you to specify how field data should be
formatted. Possible values: “html”, “br”, “none”, “lite”, “raw”.
In case this parameter is left undefined, format info
will be retrieved from database. In case parameter’s value is “raw”,
data will be outputted without any format applied.

6) site - Optional. Allows you to specify site id number. Default is “1”.

7) invalid_input - Optional. Accepts two values: “alert” and “silence”.
Default value is “silence”. If the value is “alert”, then in cases when
the plugin has some problem with parameters,  PHP alert is being shown;
if the value is “silence”, then in cases when the plugin has
some problem with parameters, it finishes its work without any alert being shown.
Set this parameter to “alert” for development, and to “silence” - for deployment.

8) allow_img_url - Optional. Allow inline images? Possible values: “yes” and “no”.
If the value is not specified, then the value from weblog/channel preferences will be used.

9) auto_links - Optional. Auto-link URLs and email addresses? Possible values: “yes” and “no”.
(Note that auto-linking does not ever occur if parameter “html_format” is set to “none”.)
If the value is not specified, then the value from weblog/channel preferences will be used.

10) encode_email - Optional. Whether or not email addresses are encoded. Possible values: “yes” and “no”. Default is “yes”.

11) encode_type - Optional. Type of encoding applied to email addresses
if email address encoding is enabled. Possible values: “javascript ” and “noscript”.
“noscript” renders in a human readable format (e.g. “name at example dot com)”,
suitable for use where JavaScript is inappropriate, such as in a feed.

12) html_format - Optional. Controls how HTML is handled in text. Possible values: “safe”, “all”, “none”.
If the value is not specified, then the value from weblog/channel preferences will be used.

13) parse_smileys - Optional. Replace text smileys with smiley images? Possible values: “yes” and “no”. Default is “yes”.

VARIABLES:

As a single variable can be used any field name of the entry
with “field_value_” added at the beginning. For example if entry
has such fields as “article_body” and “formatted_title” we can
use such single variables as {field_value_article_body} and {field_value_formatted_title}.

Conditionals are supported.

EXAMPLE OF USAGE:

{exp:field_value entry_id="251"}
<h1>{field_value_formatted_title}</h1>
{field_value_article_body}
{/exp:field_value}

This entry was created July 13, 2009, 1:10 pm.
This entry was last updated October 31, 2012, 11:58 am.

Disclaimer: Information about ExpressionEngine add-ons is provided as a service to you, the user, and every member of the ExpressionEngine community. devot:ee is not responsible if you hose, mangle, wreck, or otherwise destroy your EE website by installing an add-on that you found out about at this site, regardless of its rating, Favorites status, commercial or free status, or general popularity. Caveat EEmptor!

Returns: devot:ee has a 30-day return policy on all commercial add-ons sold through devot-ee.com. If you need to return an add-on, do not go to the developer or the developer's site, but rather visit our returns page at https://devot-ee.com/returns to initiate your return. If you have questions, email support@devot-ee.com.

1 Review:

Chris Arnold 09.22.11

Chris Arnold
Rating - {addon_rating_average}

Super helpful for me when using Child Categories and needing to pull a custom field out of the entries that were being rendered. This is a simple way to grab “a little extra” out of your entries without needing a full loop, especially for instances when you can’t apply a full entries tag pair.